From b0923384df40a2affbab47ab515e15b984ea1e2a Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Sun, 27 Feb 2022 12:00:51 +0700 Subject: [PATCH] services/unbound: allow 10.0.0.0/8 --- modules/services/unbound.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/services/unbound.nix b/modules/services/unbound.nix index 459b7ab..c312359 100644 --- a/modules/services/unbound.nix +++ b/modules/services/unbound.nix @@ -25,6 +25,7 @@ in { interface = [ "0.0.0.0" ]; access-control = [ "127.0.0.1/8 allow" + "10.0.0.0/8 allow" "192.168.100.0/24 allow" ]; };