ports/net/isc-bind/files/named.conf

22 lines
483 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
// 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; };
};