DNS/named.conf.options

59 lines
1.5 KiB
Plaintext
Raw Normal View History

2019-08-18 22:18:14 +00:00
options {
directory "/var/cache/bind";
managed-keys-directory "/var/cache/bind";
2019-08-19 10:33:54 +00:00
dump-file "/var/cache/bind/cache_dump.db";
2019-08-18 22:18:14 +00:00
statistics-file "/var/cache/bind/bind_stats.txt";
memstatistics-file "/var/cache/bind/bind_mem_stats.txt";
// If there is a firewall between you and nameservers you want
// to talk to, you may need to fix the firewall to allow multiple
// ports to talk. See http://www.kb.cert.org/vuls/id/800113
// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.
// forwarders {
// 0.0.0.0;
// };
//========================================================================
// If BIND logs error messages about the root key being expired,
2019-08-19 10:33:54 +00:00
// you will need to update your keys. See https://www.isc.org/bind-keys
2019-08-18 22:18:14 +00:00
//========================================================================
key-directory "/etc/bind/keys/";
version none;
2019-08-19 10:33:54 +00:00
auth-nxdomain no; // conform to RFC1035
2019-08-18 22:18:14 +00:00
recursive-clients 4096;
listen-on { any; };
2021-12-29 19:24:18 +00:00
listen-on-v6 { any; };
2019-08-18 22:18:14 +00:00
allow-update { none; };
2019-08-19 10:33:54 +00:00
allow-transfer { none; };
2019-08-18 22:18:14 +00:00
allow-query { any; };
2019-08-19 10:33:54 +00:00
2019-08-18 22:18:14 +00:00
allow-query-cache { internals; };
allow-recursion { internals; };
};
logging{
channel simple_log {
file "/var/log/named/bind.log" versions 3 size 5m;
severity warning;
print-time yes;
print-severity yes;
print-category yes;
};
category default{
simple_log;
};
};