options { // DNS tables are located in the /var/named directory directory "/var/named"; pid-file "/var/run/named/named.pid"; // Forward any unresolved requests to our ISP's name server forwarders { __ISPNS1__; __ISPNS2__; }; /* * 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; }; zone "." { type hint; file "root.hints"; }; // All our DNS information is stored in /var/named/domain.name.db zone "__dname__" { type master; file "__dname__.db"; // some security allow-transfer { 127.0.0.1; }; }; zone "0.0.127.in-addr.arpa" { notify no; type master; file "127.0.0.rev"; allow-transfer { 127.0.0.1; }; }; zone "__revnet__.in-addr.arpa" { notify no; type master; file "__net__.rev"; allow-transfer { 127.0.0.1; }; };