diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-01-22 17:25:45 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-01-22 17:25:45 +0000 |
commit | b37b44d5deb73967f7ccd376c4f314718d2ce861 (patch) | |
tree | c96b57cf64722e15c22fbd702faf27332cc05214 | |
parent | Allow xfer of ipv6 zone (diff) | |
download | config-b37b44d5deb73967f7ccd376c4f314718d2ce861.tar.bz2 config-b37b44d5deb73967f7ccd376c4f314718d2ce861.tar.xz config-b37b44d5deb73967f7ccd376c4f314718d2ce861.zip |
Fix mask on 127 net
-rw-r--r-- | etc/dns/primary.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/dns/primary.conf b/etc/dns/primary.conf index bbf469b..e92fc93 100644 --- a/etc/dns/primary.conf +++ b/etc/dns/primary.conf @@ -82,7 +82,7 @@ logging { include "/etc/bind/rndc.key"; controls { - inet 127.0.0.1 port 953 allow { 127.0.0.1/32; 10.10.0.0/16; fdc7:602:e9c5:b8f0::0/64; ::1/128; } keys { "rndc-key"; }; + inet 127.0.0.1 port 953 allow { 127.0.0.0/8; 10.10.0.0/16; fdc7:602:e9c5:b8f0::0/64; ::1/128; } keys { "rndc-key"; }; }; |