options {
...
allow-query { localnets; };
allow-transfer { none; };
allow-recursion { localnets; };
...
}
zone "." {
type hint;
file "named.root";
};
zone "0.0.127.IN-ADDR.ARPA" {
type master;
file "localhost.rev";
};
This allows machines on your local network to query this
bind and will look up queries for them (which is
what allow-recursion means). It also provides the
normal basic root servers list (necessary for bind
to do full DNS queries for its clients) and the reverse lookup for
127.0.0.1/localhost.
If you need to run your own DNS server, you'll want
to configure bind to be authoritative for your
domain or domains. An example is beyond the scope of this book,
though; refer to the bind documentation or to
O'Reilly's DNS and
Bind.