diff options
author | Phil Davis <phil.davis@inf.org> | 2015-04-13 16:45:43 +0545 |
---|---|---|
committer | Phil Davis <phil.davis@inf.org> | 2015-04-13 16:45:43 +0545 |
commit | fc2e17f3a70b9c39fb9a8bd691d9d124b2ba11fa (patch) | |
tree | 4c3cf96f65a18d5a608950ad8525dd798ce32a69 | |
parent | 986e77a2eab30201b2820294e73f35536b00408a (diff) | |
download | pfsense-fc2e17f3a70b9c39fb9a8bd691d9d124b2ba11fa.zip pfsense-fc2e17f3a70b9c39fb9a8bd691d9d124b2ba11fa.tar.gz |
Domain override with multiple authoritative DNS servers
Tell users that this is possible in DNS Resolver and how to achieve it. The code in unbound.inc already supports it and works.
I had asked for this in Redmine feature request #4350 and when I went to look at coding to implement it I found code that already did it.
So IMHO it is worth telling users.
-rw-r--r-- | usr/local/www/services_unbound.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr/local/www/services_unbound.php b/usr/local/www/services_unbound.php index decb25d..0a123d9 100644 --- a/usr/local/www/services_unbound.php +++ b/usr/local/www/services_unbound.php @@ -498,7 +498,8 @@ function show_advanced_dns() { </tr> <tr> <td><p><?=gettext("Entries in this area override an entire domain by specifying an". - " authoritative DNS server to be queried for that domain.");?></p></td> + " authoritative DNS server to be queried for that domain.");?> + <?=gettext("If there are multiple authoritative DNS servers available for a domain then make a separate entry for each, using the same domain name.");?></p></td> </tr> </table> <table width="100%" border="0" cellpadding="0" cellspacing="0" class="tabcont sortable" summary="results"> |