mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
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."
This commit is contained in:
parent
221f5d17b6
commit
10e41b741b
@ -139,7 +139,7 @@
|
||||
<system>
|
||||
<optimization>normal</optimization>
|
||||
<hostname>pfSense</hostname>
|
||||
<domain>local</domain>
|
||||
<domain>localdomain</domain>
|
||||
<dnsserver></dnsserver>
|
||||
<dnsallowoverride/>
|
||||
<group>
|
||||
|
||||
@ -252,7 +252,7 @@ include("head.inc");
|
||||
<br/>
|
||||
<span class="vexpl">
|
||||
name of the firewall host, without domain part
|
||||
<br>
|
||||
<br/>
|
||||
e.g. <em>firewall</em>
|
||||
</span>
|
||||
</td>
|
||||
@ -262,6 +262,8 @@ include("head.inc");
|
||||
<td width="78%" class="vtable"> <input name="domain" type="text" class="formfld unknown" id="domain" size="40" value="<?=htmlspecialchars($pconfig['domain']);?>">
|
||||
<br/>
|
||||
<span class="vexpl">
|
||||
Do not use "local" as a domain name. It will cause local hosts running mDNS (avahi, bonjour, etc.) to be unable to resolve local hosts not running mDNS.
|
||||
<br/>
|
||||
e.g. <em>mycorp.com</em>
|
||||
</span>
|
||||
</td>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user