From 89669299e96f17fa52cbd141e2ff8e94acc6028d Mon Sep 17 00:00:00 2001 From: Daniel Winzen Date: Fri, 1 Oct 2021 22:37:42 +0200 Subject: [PATCH] Add bind onion zone config --- etc/bind/named.conf.local | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 etc/bind/named.conf.local diff --git a/etc/bind/named.conf.local b/etc/bind/named.conf.local new file mode 100644 index 0000000..ffb053c --- /dev/null +++ b/etc/bind/named.conf.local @@ -0,0 +1,13 @@ +// +// Do any local configuration here +// + +// Consider adding the 1918 zones here, if they are not used in your +// organization +//include "/etc/bind/zones.rfc1918"; + +zone "onion" { + type forward; + forward only; + forwarders port 54 {127.0.0.1;}; +};