Providing Bind9 Nameserver configuration steps on FreeBSD

This commit is contained in:
byteworkshosting
2013-03-12 15:06:14 +01:00
parent c7eccd6086
commit c6477f345f
4 changed files with 117 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
options {
...
[snip]
# General
directory "/etc/namedb/working";
pid-file "/var/run/named.pid";
auth-nxdomain no;
# Cache
dump-file "/var/db/named";
max-cache-size 8m;
# DNSSEC
//========================================================================
// If BIND logs error messages about the root key being expired,
// you will need to update your keys. See https://www.isc.org/bind-keys
//========================================================================
dnssec-enable yes;
dnssec-validation yes;
dnssec-lookaside auto;
random-device "/dev/urandom";
[/snip]
...
};