1# test daemon 2options { 3 directory "/home/wouter/bla"; 4 version "test BIND 24"; 5 pid-file "/home/wouter/named_24.pid"; 6 dnssec-enable yes; 7 listen-on-v6 { any; }; 8}; 9 10// logging clause 11logging { 12 channel mainlog { 13 file "named_24.log" size 10m; 14 severity info; 15 }; 16 category default { 17 mainlog; 18 }; 19}; 20 21zone "." IN { 22 type hint; 23 file "root.servers"; 24}; 25 26zone "localhost" IN { 27 type master; 28 file "localhost.zone"; 29 allow-update { none; }; 30}; 31zone "0.0.127.in-addr.arpa" IN { 32 type master; 33 file "localhost.rev"; 34 allow-update { none; }; 35}; 36