diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-03-09 13:24:21 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2023-03-09 13:24:21 +0000 |
commit | 46c303079b47d88bccf2a7e93095ce2b46639532 (patch) | |
tree | 5b94dfc04d0216d8bcd7f7293d88648ac745d8f5 | |
parent | Add static route for 8.8.8.8 to allow dig VPN bypass (diff) | |
download | config-46c303079b47d88bccf2a7e93095ce2b46639532.tar.bz2 config-46c303079b47d88bccf2a7e93095ce2b46639532.tar.xz config-46c303079b47d88bccf2a7e93095ce2b46639532.zip |
Explicit forward zone for dnswl to avoid bulk traffic block via ISPs
-rw-r--r-- | etc/dns/primary.conf | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/etc/dns/primary.conf b/etc/dns/primary.conf index cbfd394..73c9255 100644 --- a/etc/dns/primary.conf +++ b/etc/dns/primary.conf @@ -93,6 +93,11 @@ view "internal" in { file "/var/bind/root.cache"; }; + zone "list.dnswl.org" in { + type forward; + forwarders { }; + }; + zone "localhost" IN { type master; file "pri/localhost.zone"; |