docker_bind/cfg/named.options.conf

16 lines
464 B
Plaintext
Raw Normal View History

2023-02-25 01:37:14 +00:00
options {
directory "/var/cache/bind";
statistics-file "/var/cache/bind/named.stats.txt";
session-keyfile "/var/cache/bind/session.key";
pid-file "/var/cache/bind/named.pid";
lock-file "/var/cache/bind/named.lock";
2023-02-25 19:48:21 +00:00
listen-on { any; };
2023-02-25 01:37:14 +00:00
listen-on-v6 { ::1; };
2023-02-25 20:28:27 +00:00
# hopefully the default docker bridge network
# is consistently in 172.17.0.0/24
allow-recursion { 127.0.0.1; ::1; 172.17.0.0/24; };
2023-02-25 01:37:14 +00:00
dnssec-validation yes;
};