/* * Globabl Options */ options { /* Directory zone files are kept in */ directory "/var/named"; }; /* * Zone to handle recursive lookups */ zone "." { type hint; file "named.ca"; }; /* * Zone to enable resolution of 127.0.0.1. BIND needs to be able * to resolve this address so it can answer queries sent to * the loopback interface. */ zone "0.0.127.in-addr.arpa" { type master; file "named.local"; }; /* * Zone to enable resolution of 192.168.192.10, the IP address this router * has on its ethernet interface. BIND needs to be able to resolve this * address so it can answer queries sent to this interface. */ zone "192.168.192.in-addr.arpa" { type master; file "192.168.192.db"; }; /* * Zone to handle the ficitious supersparrow top level domain */ zone "supersparrow" { type master; file "supersparrow.db"; };