aboutsummaryrefslogtreecommitdiff
path: root/roles/bind/files
diff options
context:
space:
mode:
authorGravatar Jonas Gunz <himself@jonasgunz.de> 2021-10-06 01:18:17 +0200
committerGravatar Jonas Gunz <himself@jonasgunz.de> 2021-10-06 01:18:17 +0200
commita263e42107537a99e258998c8d5a999f13388fb1 (patch)
tree0560e6629dfaa1c9bfe1ecf343c132e03bbceb5c /roles/bind/files
parent84deda7bee5fec7472be556ce2b6028499f0103e (diff)
downloadansible_collection-a263e42107537a99e258998c8d5a999f13388fb1.tar.gz
bind: add role
Diffstat (limited to 'roles/bind/files')
-rw-r--r--roles/bind/files/named.conf.options15
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; };
+};
+