options { directory "/var/named"; # the default is to fail, if the master file is not correct check-names master warn; pid-file "/var/run/named.pid"; #statistics-interval 720; #cleaning-interval 720; datasize default; stacksize default; coresize default; files unlimited; recursion yes; multiple-cnames no; // if yes, then a name my have more // than one CNAME RR. This use // is non-standard and is not // recommended, but it is available // because previous releases supported // it and it was used by large sites // for load balancing. # the default is to listen on port 53 on all available interfaces # you can also give a detailed list: forward first; # +++ DNS forwarders +++ forwarders { 193.231.13.232; 193.231.12.168; }; # +++ Netzwerk anfragen beantworten +++ listen-on { 127.0.0.1/32; 192.168.1.0/24; }; # +++ keine unnoetigen pakete! +++ notify no; # +++ clean up only every 12 hours +++ cleaning-interval 720; statistics-interval 720; }; zone "." IN { type hint; file "root.hint"; }; zone "localhost" IN { # +++ localhost +++ type master; file "localhost.zone"; check-names fail; allow-update { none; }; }; zone "0.0.127.in-addr.arpa" IN { type master; file "127.0.0.zone"; check-names fail; allow-update { none; }; }; zone "mynet.local" IN { # +++ mynet.local +++ notify no; type master; file "mynet.local.zone"; }; zone "1.168.192.in-addr.arpa" IN { notify no; type master; file "192.168.1.zone"; };