123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- options {
- listen-on port 53 { any; };
- listen-on-v6 port 53 { ::1; };
- directory "/var/bind";
- dump-file "/var/bind/data/cache_dump.db";
- statistics-file "/var/bind/data/named_stats.txt";
- memstatistics-file "/var/bind/data/named_mem_stats.txt";
- allow-query { any; };
-
- recursion yes;
- dnssec-enable yes;
- dnssec-validation yes;
-
- bindkeys-file "/etc/bind/bind.keys";
- pid-file "/run/named/named.pid";
- session-keyfile "/run/named/session.key";
- };
- logging {
- channel default_debug {
- stderr;
- severity dynamic;
- };
- };
- zone "." IN {
- type hint;
- file "named.ca";
- };
- zone "infoclinica.lan" {
- type master;
- file "infoclinica/infoclinica.lan.zone";
- notify yes;
- allow-transfer { any; };
- };
- zone "201.168.192.in-addr.arpa" {
- type master;
- notify yes;
- file "infoclinica/201.168.192.in-addr.arpa.zone";
- allow-transfer { any; };
- };
- zone "204.168.192.in-addr.arpa" {
- type master;
- notify yes;
- file "infoclinica/204.168.192.in-addr.arpa.zone";
- allow-transfer { any; };
- };
- zone "205.168.192.in-addr.arpa" {
- type master;
- notify yes;
- file "infoclinica/205.168.192.in-addr.arpa.zone";
- allow-transfer { any; };
- };
|