must use IP addresses
authorDavid Blacka <david@blacka.com>
Sat, 25 Feb 2023 20:28:27 +0000 (15:28 -0500)
committerDavid Blacka <david@blacka.com>
Sat, 25 Feb 2023 20:28:27 +0000 (15:28 -0500)
cfg/named.options.conf

index 971d7e9..de7c722 100644 (file)
@@ -7,7 +7,9 @@ options {
 
     listen-on { any; };    
     listen-on-v6 { ::1; };
-    allow-recursion { 127.0.0.1; ::1;  host.docker.internal; };
+    # 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; };
 
        dnssec-validation yes;
 };