diff options
author | Jean Cyr <jcyr@dillobits.com> | 2014-12-04 13:07:22 -0500 |
---|---|---|
committer | Jean Cyr <jcyr@dillobits.com> | 2014-12-04 13:07:22 -0500 |
commit | ad62d077a3933989a0ea2f99fee23051d63be3f0 (patch) | |
tree | 805f960153de08fc650dfe7d293d81d37980d3a9 /usr/local/www | |
parent | 9fc7e40dbefb146efe03458c1d8cbdb91b136441 (diff) | |
download | pfsense-ad62d077a3933989a0ea2f99fee23051d63be3f0.zip pfsense-ad62d077a3933989a0ea2f99fee23051d63be3f0.tar.gz |
Don't include link-locals as unbound interface candidates
Unbound does not presently support link-local interfaces.
Diffstat (limited to 'usr/local/www')
-rw-r--r-- | usr/local/www/services_unbound.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/services_unbound.php b/usr/local/www/services_unbound.php index ed99061..e6d4d23 100644 --- a/usr/local/www/services_unbound.php +++ b/usr/local/www/services_unbound.php @@ -272,7 +272,7 @@ function show_advanced_dns() { <td width="22%" valign="top" class="vncellreq"><?=gettext("Network Interfaces"); ?></td> <td width="78%" class="vtable"> <?php - $interface_addresses = get_possible_listen_ips(true); + $interface_addresses = get_possible_listen_ips(false); $size=count($interface_addresses)+1; ?> <?=gettext("Interface IPs used by the DNS Resolver for responding to queries from clients. If an interface has both IPv4 and IPv6 IPs, both are used. Queries to other interface IPs not selected below are discarded. The default behavior is to respond to queries on every available IPv4 and IPv6 address.");?> @@ -297,7 +297,7 @@ function show_advanced_dns() { <td width="22%" valign="top" class="vncellreq"><?=gettext("Outgoing Network Interfaces"); ?></td> <td width="78%" class="vtable"> <?php - $interface_addresses = get_possible_listen_ips(true); + $interface_addresses = get_possible_listen_ips(false); $size=count($interface_addresses)+1; ?> <?=gettext("Utilize different network interface(s) that the DNS Resolver will use to send queries to authoritative servers and receive their replies. By default all interfaces are used.");?> |