From 5a46d7662ecff7e51278a2056b2f494beeda90dd Mon Sep 17 00:00:00 2001 From: clerie Date: Tue, 27 Sep 2022 12:04:27 +0200 Subject: [PATCH] gatekeeper: Remove unused firewall rule that blocks all IPv4 DNS traffic as a side effect --- hosts/gatekeeper/configuration.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/hosts/gatekeeper/configuration.nix b/hosts/gatekeeper/configuration.nix index 69cb625..7ef0845 100644 --- a/hosts/gatekeeper/configuration.nix +++ b/hosts/gatekeeper/configuration.nix @@ -144,9 +144,6 @@ }; networking.firewall.allowedUDPPorts = [ 53 993 995 50101 50127 50128 51820 51876 60001 ]; - networking.firewall.extraCommands = '' - iptables -t nat -I PREROUTING -p udp -m multiport --dports 53,993,995 -j REDIRECT --to-ports 51820 - ''; clerie.nginx-port-forward = { enable = true;