// /etc/named.conf options { /* make named use port 53 for the source of all queries, to allow * firewalls to block all ports except 53: query-source port 53; query-source-v6 port 53; */ // Put files that named is allowed to write in the data/ directory: directory "/var/named"; // the default dump-file "data/cache_dump.db"; statistics-file "data/named_stats.txt"; memstatistics-file "data/named_mem_stats.txt"; }; // named.rfc1912.zones: // // ISC BIND named zone configuration for zones recommended by // RFC 1912 section 4.1 : localhost TLDs and address zones // zone "the-playground.de" IN { type master; file "the-playground.zone"; //allow-update { none; }; allow-transfer {192.168.30.2;}; }; zone "30.168.192.in-addr.arpa" IN { type master; file "the-playground.reverse"; //allow-update { none; }; allow-transfer {192.168.30.2;}; }; zone "31.168.192.in-addr.arpa" IN { type master; file "the-playground-priv.reverse"; //allow-update { none; }; }; zone "prodcluster.the-playground.de" IN { type slave; file "slave/prodcluster.the-playground.zone"; masters { 192.168.30.2 ; }; }; # the following is recommended and not my stuff zone "localdomain" IN { type master; file "localdomain.zone"; allow-update { none; }; }; zone "localhost" IN { type master; file "localhost.zone"; allow-update { none; }; }; zone "0.0.127.in-addr.arpa" IN { type master; file "named.local"; allow-update { none; }; }; zone "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 "named.ip6.local"; allow-update { none; }; }; zone "255.in-addr.arpa" IN { type master; file "named.broadcast"; allow-update { none; }; }; zone "0.in-addr.arpa" IN { type master; file "named.zero"; allow-update { none; }; };