diff options
author | gnhb <gnoahb@gmail.com> | 2010-04-06 14:16:39 +0700 |
---|---|---|
committer | gnhb <gnoahb@gmail.com> | 2010-04-06 14:24:38 +0700 |
commit | 10e41b741b7db0314bec3ec931a58f202a2ed392 (patch) | |
tree | 86e7b1998cca7855ce2554f1fdffd2ce051471f4 /conf.default/config.xml | |
parent | 221f5d17b63288249e3872d72dac683a1c1206f3 (diff) | |
download | pfsense-10e41b741b7db0314bec3ec931a58f202a2ed392.zip pfsense-10e41b741b7db0314bec3ec931a58f202a2ed392.tar.gz |
Don't use "local" as a domain. It breaks DNS resolution for hosts running mDNS.
The "local" search domain signifies to local hosts that are running
mDNS (bonjour or avahi) that mDNS is to be used to look up local hosts
instead of doing a normal DNS query to the server listed in
/etc/resolv.conf on the local host.
Also, hosts running bonjour or avahi can not ping or reach *any* other
host by name if it is not running some mDNS implementation.
Essentially, if DHCP tells the local host that it's search domain is
"local" then hosts running mDNS will not query the pfsense DNS server
for any local lan DNS lookups.
See here on apple's website:
http://support.apple.com/kb/TA20999?viewlocale=en_US
Quote from above link:
"To indicate that the name should be looked up using local multicast
instead of a standard DNS query, all Bonjour host names end with the
extension ".local."
Diffstat (limited to 'conf.default/config.xml')
-rw-r--r-- | conf.default/config.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf.default/config.xml b/conf.default/config.xml index 9d6a19d..668e599 100644 --- a/conf.default/config.xml +++ b/conf.default/config.xml @@ -139,7 +139,7 @@ <system> <optimization>normal</optimization> <hostname>pfSense</hostname> - <domain>local</domain> + <domain>localdomain</domain> <dnsserver></dnsserver> <dnsallowoverride/> <group> |