From fdda4e95e89d95055e47357eaa5ad730b941e34b Mon Sep 17 00:00:00 2001 From: Alexandru Date: Thu, 9 Aug 2018 13:46:25 -0700 Subject: [PATCH] Fix bind allow-transfer on internal ipv6 --- etc/alternc/templates/bind/named.conf.options | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/alternc/templates/bind/named.conf.options b/etc/alternc/templates/bind/named.conf.options index 68845ef7..df98390a 100644 --- a/etc/alternc/templates/bind/named.conf.options +++ b/etc/alternc/templates/bind/named.conf.options @@ -18,13 +18,13 @@ options { auth-nxdomain no; # conform to RFC1035 allow-query { "internal"; }; - allow-transfer { "allslaves"; }; + allow-transfer { "allslaves"; "internal"; }; recursion no; }; acl "internal" { { - 127.0.0.1; + 127.0.0.1; ::1; }; };