raspbian kodi zeroconf not working
#1
Hi,

I installed kodi v14.1 stable on raspbian "2015-02-16-raspbian-wheezy"
Even though zeroconf is enabled on kodi on the raspberry pi, the kodi app on my iphone is unable to find kodi on my network.

It says no kodi instances were found.

Same raspberry pi, different micro sd, running openelec, and everything is fine. So I know it's not something on my network or my phone.

Is there something I must install on raspbian, to enable zeroconf?

I don't get any errors when I toggle enable/disable in kodi, so I'm guessing it starts.

thanks for your help.
Reply
#2
I also tried this "apt-get install libnss-mdns" but no luck either
Reply
#3
the following did the trick.

Code:
apt-get install avahi-daemon

nano /etc/avahi/services/multiple.service

<?xml version="1.0" standalone='no'?>
<!DOCTYPE service-group SYSTEM "avahi-service.dtd">
<service-group>
        <name replace-wildcards="yes">%h</name>
        <service>
                <type>_device-info._tcp</type>
                <port>0</port>
                <txt-record>model=RackMac</txt-record>
        </service>
        <service>
                <type>_ssh._tcp</type>
                <port>22</port>
        </service>
</service-group>

/etc/init.d/avahi-daemon restart
Reply

Logout Mark Read Team Forum Stats Members Help
raspbian kodi zeroconf not working0