From 488b4a69953f3e1a55810618f073d75892909106 Mon Sep 17 00:00:00 2001 From: David Blacka Date: Sat, 25 Feb 2023 15:28:27 -0500 Subject: [PATCH] must use IP addresses --- cfg/named.options.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cfg/named.options.conf b/cfg/named.options.conf index 971d7e9..de7c722 100644 --- a/cfg/named.options.conf +++ b/cfg/named.options.conf @@ -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; };