22 lines
483 B
Text
22 lines
483 B
Text
|
// Example file for a simple configuration of BIND, processing only
|
||
|
// recursive queries. Consult BIND's Administration and Reference Manual
|
||
|
// for more information.
|
||
|
|
||
|
acl clients {
|
||
|
localnets;
|
||
|
::1;
|
||
|
};
|
||
|
|
||
|
options {
|
||
|
directory "/tmp"; // working directory, inside the /var/named chroot
|
||
|
// - must be writable by _bind
|
||
|
version ""; // remove this to allow version queries
|
||
|
|
||
|
listen-on { any; };
|
||
|
listen-on-v6 { any; };
|
||
|
|
||
|
empty-zones-enable yes;
|
||
|
|
||
|
allow-recursion { clients; };
|
||
|
};
|