Showing posts with label avahi. Show all posts
Showing posts with label avahi. Show all posts

Saturday, January 31, 2015

Resolving Local in Ubuntu by fixing Avahi service

http://smallbusiness.chron.com/resolving-local-ubuntu-38861.html

Open for edit:
sudo gedit /etc/avahi/avahi-daemon.conf

Uncomment and change the value:
BEFORE
#domain-name=local

AFTER
domain-name=.alocal

If this did not fix the issue, add this line at the end of the file:
AVAHI_DAEMON_DETECT_LOCAL=0 

Save the changes and exit. 

Thursday, December 11, 2014

your current network has a .local domain which is not recommended and incompatible with the avahi

http://askubuntu.com/questions/339702/network-service-discovery-disabled-what-does-this-mean-for-me

It looks like avahi-daemon is started when the network connection is established (/etc/network/if-up.d/avahi-daemon). This notification is informing you that mDNS (Avahi) has been disabled. It's only used for a small number of applications that only work on the local network, it won't adversely affect your internet connection or DNS.
The most well known use for mDNS is sharing music with Rhythmbox (or iTunes) over your LAN. It's an Apple technology, but it's largely been ignored in favour of uPNP or DLNA.
To disable it, you must edit the file /etc/default/avahi-daemon as root:

sudo -i
gedit /etc/default/avahi-daemon
and add this line (or change it if already exists to):
AVAHI_DAEMON_DETECT_LOCAL=0 
 
Source: http://ubuntuforums.org/showthread.php?t=1632952