// $Id: named.conf,v 1.2 2001/01/10 21:28:36 root Exp $ // // 4/18/02 // // named.conf for rob.nocat. et al. // // --RJF // options { directory "/var/named"; pid-file "/var/run/named.pid"; statistics-file "/var/named/named.stats"; // allow-transfer { 10.42.1.1; 10.42.2.1; 10.42.3.1; }; }; logging { channel default_out { file "/var/log/named.log"; }; category default { default_out; }; category config { default_out; }; category xfer-in { default_out; }; category xfer-out { default_out; }; category lame-servers { null; }; }; zone "0.0.127.in-addr.arpa" in { type master; file "data/localhost.rev"; }; zone "rob.nocat" { type master; file "data/rob.nocat"; // notify yes; // also-notify { 10.42.3.1; }; }; zone "4.42.10.in-addr.arpa" { type master; file "data/4.42.10.rev"; }; // // This sets up a caching server that gets all of its data // from one upstream DNS server. Necessary for me, since I'm // behind Rich's NoCat gateway. // zone "." { type forward; forward only; forwarders { 208.201.224.11; }; } // // Use this traditional caching entry if you have an unrestricted net // connection. // // zone "." { // type hint; // file "named.ca"; // };