diff options
Diffstat (limited to 'roles/bind/files/named.conf.options')
-rw-r--r-- | roles/bind/files/named.conf.options | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/roles/bind/files/named.conf.options b/roles/bind/files/named.conf.options new file mode 100644 index 0000000..0100317 --- /dev/null +++ b/roles/bind/files/named.conf.options @@ -0,0 +1,15 @@ +// vi: ft=named +options { + directory "/var/cache/bind"; + + dnssec-validation auto; + + // Disable recursion + allow-transfer {"none";}; + allow-recursion {"none";}; + recursion no; + + listen-on-v6 { any; }; + listen-on { any; }; +}; + |