aboutsummaryrefslogtreecommitdiff
path: root/bind/conf/named.conf
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2020-12-29 02:03:58 +0000
committerMike Crute <mike@crute.us>2020-12-29 02:03:58 +0000
commit588947985f05c7b5e7b5cd5d33268cf04620ea22 (patch)
tree3e3dfb04aa61f71f0a5b1ab649cef123eeca2ee1 /bind/conf/named.conf
parent6e6943451dd2216411fe3aa940d9a6d1fc60583f (diff)
downloaddockerfiles-588947985f05c7b5e7b5cd5d33268cf04620ea22.tar.bz2
dockerfiles-588947985f05c7b5e7b5cd5d33268cf04620ea22.tar.xz
dockerfiles-588947985f05c7b5e7b5cd5d33268cf04620ea22.zip
bind: commit checkpoint
Diffstat (limited to 'bind/conf/named.conf')
-rw-r--r--bind/conf/named.conf30
1 files changed, 21 insertions, 9 deletions
diff --git a/bind/conf/named.conf b/bind/conf/named.conf
index b79af07..dcf0cf3 100644
--- a/bind/conf/named.conf
+++ b/bind/conf/named.conf
@@ -18,18 +18,25 @@ options {
18 zone-statistics full; 18 zone-statistics full;
19 19
20 auth-nxdomain no; # conform to RFC1035 20 auth-nxdomain no; # conform to RFC1035
21 notify master-only; # don't send NOTIFY from slaves 21 notify master-only; # don't send NOTIFY from secondaries
22
23 listen-on { any; };
24 listen-on-v6 { any; };
25 22
26 version none; 23 version none;
27 hostname none; 24 hostname none;
28 25
29 allow-update-forwarding { any; }; 26 listen-on {
27 any;
28 };
29
30 listen-on-v6 {
31 any;
32 };
33
34 allow-update-forwarding {
35 any;
36 };
30 37
31 allow-notify { 38 allow-notify {
32 all-masters; 39 all-dns-servers;
33 }; 40 };
34 41
35 allow-recursion { 42 allow-recursion {
@@ -42,9 +49,14 @@ options {
42 localhost; 49 localhost;
43 }; 50 };
44 51
45 // Allow more transfers at once to improve slave convergence 52 // Force TCP if response would be larger than IPv6 fragment size
46 transfers-in 30; 53 // see: https://blog.apnic.net/2020/09/17/dns-flag-day-2020-what-you-need-to-know/
47 transfers-out 30; 54 max-udp-size 1220;
55 edns-udp-size 1220;
56
57 // Allow more transfers at once to improve secondary convergence
58 transfers-in 50;
59 transfers-out 50;
48}; 60};
49 61
50statistics-channels { 62statistics-channels {