diff options
Diffstat (limited to 'etc/dns/backup.conf')
-rw-r--r-- | etc/dns/backup.conf | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/etc/dns/backup.conf b/etc/dns/backup.conf new file mode 100644 index 0000000..1f58dac --- /dev/null +++ b/etc/dns/backup.conf @@ -0,0 +1,43 @@ +options { + directory "/var/bind"; + pid-file "/var/run/named/named.pid"; +}; + +zone "." IN { + type hint; + file "named.ca"; +}; + +zone "randomdan.homeip.net" IN { + type slave; + masters { 192.168.0.3; }; +}; + +zone "random.lan" IN { + type slave; + masters { 192.168.0.3; }; +}; + +zone "randomdan.lan" IN { + type slave; + masters { 192.168.0.3; }; +}; + +zone "localhost" IN { + type master; + file "pri/localhost.zone"; + allow-update { none; }; + notify no; +}; + +zone "0.168.192.in-addr.arpa" IN { + type slave; + masters { 192.168.0.3; }; +}; + +zone "127.in-addr.arpa" IN { + type master; + file "pri/127.zone"; + allow-update { none; }; + notify no; +}; |