summaryrefslogtreecommitdiffstats
path: root/usr/local/www/services_unbound.php
diff options
context:
space:
mode:
authorJean Cyr <jcyr@dillobits.com>2014-12-04 13:07:22 -0500
committerChris Buechler <cmb@pfsense.org>2014-12-04 20:58:32 -0600
commit32a815611645f698ab8c35d7435e9041cb60960f (patch)
tree251312502a7ebc245b33ed0e0529dbc77ddaecf1 /usr/local/www/services_unbound.php
parent0af2fab6b982596e883ebe497b326d986158662e (diff)
downloadpfsense-32a815611645f698ab8c35d7435e9041cb60960f.zip
pfsense-32a815611645f698ab8c35d7435e9041cb60960f.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/services_unbound.php')
-rw-r--r--usr/local/www/services_unbound.php4
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.");?>
OpenPOWER on IntegriCloud