From 0f844b278d1a30725cd72d82f5d4463b1016596b Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Sun, 27 Feb 2022 11:56:44 +0700 Subject: [PATCH] services/unbound: open port 853 --- modules/services/unbound.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/unbound.nix b/modules/services/unbound.nix index 1e865a9..459b7ab 100644 --- a/modules/services/unbound.nix +++ b/modules/services/unbound.nix @@ -3,8 +3,8 @@ let dir = "/persist/unbound"; in { networking.firewall.interfaces.wlan0 = { - allowedUDPPorts = [ 53 ]; - allowedTCPPorts = [ 53 ]; + allowedUDPPorts = [ 53 853 ]; + allowedTCPPorts = [ 53 853 ]; }; systemd.tmpfiles.rules = [ "d ${dir} 700 unbound unbound" ];