summaryrefslogtreecommitdiffstats
path: root/debian/extras/etc/named.conf.default-zones
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 15:59:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 15:59:49 +0000
commit0e764bd6a393ec1a7e876e4cafbbf0665e78849c (patch)
treebd15cfb16df2d659532769e8bdfd76a16c7f7ad6 /debian/extras/etc/named.conf.default-zones
parentAdding upstream version 1:9.18.19. (diff)
downloadbind9-debian.tar.xz
bind9-debian.zip
Adding debian version 1:9.18.19-1~deb12u1.debian/1%9.18.19-1_deb12u1debian
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/extras/etc/named.conf.default-zones')
-rw-r--r--debian/extras/etc/named.conf.default-zones30
1 files changed, 30 insertions, 0 deletions
diff --git a/debian/extras/etc/named.conf.default-zones b/debian/extras/etc/named.conf.default-zones
new file mode 100644
index 0000000..1a85ad3
--- /dev/null
+++ b/debian/extras/etc/named.conf.default-zones
@@ -0,0 +1,30 @@
+// prime the server with knowledge of the root servers
+zone "." {
+ type hint;
+ file "/usr/share/dns/root.hints";
+};
+
+// be authoritative for the localhost forward and reverse zones, and for
+// broadcast zones as per RFC 1912
+
+zone "localhost" {
+ type master;
+ file "/etc/bind/db.local";
+};
+
+zone "127.in-addr.arpa" {
+ type master;
+ file "/etc/bind/db.127";
+};
+
+zone "0.in-addr.arpa" {
+ type master;
+ file "/etc/bind/db.0";
+};
+
+zone "255.in-addr.arpa" {
+ type master;
+ file "/etc/bind/db.255";
+};
+
+