//
// Refer to the named.conf(5) and named(8) man pages, and the documentation
// in /usr/share/doc/bind9 for more details.
//
options {
// All file and path names are relative to the chroot directory,
// if any, and should be fully qualified.
directory "/etc/namedb/working";
pid-file "/var/run/named/pid";
dump-file "/var/dump/named_dump.db";
statistics-file "/var/stats/named.stats";
listen-on { 10.0.0.50; 127.0.0.1; };
// query-source address * port NNNNN;
forwarders {
8.8.8.8;
};
};
// Internal View
view "internal" {
match-clients { 10.0.0.0/24; 127.0.0.1; }; // LOCAL NETWORK
zone "." { type hint; file "/etc/namedb/named.root"; };
zone "1.168.192.in-addr.arpa" {
type master;
file "/etc/namedb/working/internal/1.168.192.in-addr.arpa";
};
zone "splintercomm.net" {
type master;
file "/etc/namedb/working/internal/splintercomm.net";
};
};