summaryrefslogtreecommitdiffstats
path: root/etc/inc/unbound.inc
diff options
context:
space:
mode:
Diffstat (limited to 'etc/inc/unbound.inc')
-rw-r--r--etc/inc/unbound.inc6
1 files changed, 5 insertions, 1 deletions
diff --git a/etc/inc/unbound.inc b/etc/inc/unbound.inc
index f462e62..b36f120 100644
--- a/etc/inc/unbound.inc
+++ b/etc/inc/unbound.inc
@@ -270,6 +270,9 @@ prefetch-key: {$prefetch_key}
{$private_addr}
{$private_domains}
+# Access lists
+include: {$g['unbound_chroot_path']}/access_lists.conf
+
# Static host entries
include: {$g['unbound_chroot_path']}/host_entries.conf
@@ -607,7 +610,8 @@ EOF;
function unbound_acls_config() {
global $g, $config;
- $aclcfg = "";
+ $aclcfg = "access-control: 127.0.0.1/32 allow\n";
+ $aclcfg .= "access-control: ::1 allow\n";
// Add our networks for active interfaces including localhost
if (!empty($config['unbound']['active_interface']))
$active_interfaces = array_flip(explode(",", $config['unbound']['active_interface']));
OpenPOWER on IntegriCloud