5 kx options {
5 kx directory "/var/named";
5 kx /*
5 kx * If there is a firewall between you and nameservers you want
5 kx * to talk to, you might need to uncomment the query-source
5 kx * directive below. Previous versions of BIND always asked
5 kx * questions using port 53, but BIND 8.1 uses an unprivileged
5 kx * port by default.
5 kx */
5 kx // query-source address * port 53;
5 kx };
5 kx
5 kx //
5 kx // a caching only nameserver config
5 kx //
5 kx zone "." IN {
5 kx type hint;
5 kx file "caching-example/named.root";
5 kx };
5 kx
5 kx zone "localhost" IN {
5 kx type master;
5 kx file "caching-example/localhost.zone";
5 kx allow-update { none; };
5 kx };
5 kx
5 kx zone "0.0.127.in-addr.arpa" IN {
5 kx type master;
5 kx file "caching-example/named.local";
5 kx allow-update { none; };
5 kx };