mDNS fuckery on linux
If your having issues with .local addresses on your linux box edit your /etc/nsswitch.conf
file by removing NOTFOUND=return
and moving mdns4_minimal
after dns
on that same line
Old
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.
passwd: files systemd
group: files systemd
shadow: files
gshadow: files
hosts: files mdns4_minimal[NOTFOUND=return] dns mymachines
networks: files
protocols: db files
services: db files
ethers: db files
rpc: db files
netgroup: nis
New
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.
passwd: files systemd
group: files systemd
shadow: files
gshadow: files
hosts: files dns mdns4_minimal mymachines
networks: files
protocols: db files
services: db files
ethers: db files
rpc: db files
netgroup: nis