diff options
Diffstat (limited to 'roles/dnscommon/files/named.conf.options')
-rw-r--r-- | roles/dnscommon/files/named.conf.options | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roles/dnscommon/files/named.conf.options b/roles/dnscommon/files/named.conf.options new file mode 100644 index 0000000..c788257 --- /dev/null +++ b/roles/dnscommon/files/named.conf.options @@ -0,0 +1,12 @@ +options { + directory "/var/cache/bind"; + + recursion no; + allow-transfer { none; }; + + allow-query { any; }; + + auth-nxdomain no; # conform to RFC1035 + + listen-on-v6 { any; }; +}; |