diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 07:24:23 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 07:24:23 +0000 |
commit | 1e99b22ed2aa3bfed7ae8a7c1ca5c4bb99148a0e (patch) | |
tree | ff57125a72fceeaa526bb76fda2bcd1adfd4c20f /debian/extras/etc/named.conf.default-zones | |
parent | Adding upstream version 1:9.16.44. (diff) | |
download | bind9-1e99b22ed2aa3bfed7ae8a7c1ca5c4bb99148a0e.tar.xz bind9-1e99b22ed2aa3bfed7ae8a7c1ca5c4bb99148a0e.zip |
Adding debian version 1:9.16.44-1~deb11u1.debian/1%9.16.44-1_deb11u1debian
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-zones | 30 |
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"; +}; + + |