// // named.conf for IPv6 Workshop - Group UKW // options { directory "/var/named"; dump-file "/var/named/data/cache_dump.db"; statistics-file "/var/named/data/named_stats.txt"; auth-nxdomain no; listen-on-v6 { any; }; /* * If there is a firewall between you and nameservers you want * to talk to, you might need to uncomment the query-source * directive below. Previous versions of BIND always asked * questions using port 53, but BIND 8.1 uses an unprivileged * port by default. */ // query-source address * port 53; }; logging{ channel example_log{ file "/var/log/named/example.log" versions 3 size 2m; severity info; print-severity yes; print-time yes; print-category yes; }; category default{ example_log; }; }; controls { inet 127.0.0.1 allow { localhost; } keys { rndckey; }; }; zone "." IN { type hint; file "data/named.ca"; }; zone "localhost" IN { type master; file "data/localhost.zone"; allow-update { none; }; }; zone "0.0.127.in-addr.arpa" IN { type master; file "data/named.local"; allow-update { none; }; }; zone "255.in-addr.arpa" IN { type master; file "data/named.broadcast"; allow-update { none; }; }; zone "0.in-addr.arpa" IN { type master; file "data/named.zero"; allow-update { none; }; }; zone "1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa" IN { type master; file "data/named.ip6.local"; }; zone "ukw.6pack.org" { type master; file "data/ukw-6pack-org.db"; }; zone "147.88.148.in-addr.arpa" { type master; file "data/ukw-6pack-org-v4ptr.db"; }; zone "7.4.0.1.8.0.0.0.3.6.0.1.0.0.2.ip6.arpa" { type master; file "data/ukw-6pack-org-v6ptr.db"; }; include "/etc/rndc.key";