From 4a66f97df80e81f10108e4e667073044cbf64db3 Mon Sep 17 00:00:00 2001 From: rnhmjoj Date: Tue, 2 Mar 2021 09:29:10 +0100 Subject: [PATCH] pdns-recursor: allow IPv6 traffic --- nameserver.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nameserver.nix b/nameserver.nix index a68b19a..98682ed 100644 --- a/nameserver.nix +++ b/nameserver.nix @@ -11,7 +11,9 @@ enable = true; # Configures the bit. zone resolveNamecoin = true; - dns.allowFrom = [ "0.0.0.0/0" ]; + # Use both IPv4 and IPv6 + dns.allowFrom = [ "0.0.0.0/0" "::0/0" ]; + settings.local-address = [ "0.0.0.0" "::" ]; }; # Wrap the local recursive resolver