Nss-mdns: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 23: | Line 23: | ||
{{File|/etc/sysctl.conf| | {{File|/etc/sysctl.conf| | ||
</pre> | |||
net.ipv4.igmp_max_memberships = 20 | net.ipv4.igmp_max_memberships = 20 | ||
<pre> | <pre> | ||
}} | |||
and run: | and run: | ||
{{Root|sysctl -p}} or reboot your system. | {{Root|sysctl -p}} or reboot your system. | ||
Revision as of 04:24, 7 January 2017
Install the nss-mdns package and edit /etc/nsswitch.conf.
File: /etc/nsswitch.conf
Change host: line from
hosts: files dns
to
hosts: files mdns4_minimal [NOTFOUND=return] dns mdns4
If you see errors like:
Jan 07 00:43:59 cube avahi-daemon[217]: IP_ADD_MEMBERSHIP failed: No buffer space available
you may have to rise igmp_max_memberships like for example:
# echo 20 > /proc/sys/net/ipv4/igmp_max_memberships
The default value is usually 20. If you want to set this permanently you've to add
File: /etc/sysctl.conf
{{{2}}}and run:
# sysctl -p
or reboot your system.