From d614495a2c9b35bb3838836e4449a715391756e1 Mon Sep 17 00:00:00 2001 From: Martin Berg Alstad Date: Sat, 31 May 2025 15:38:42 +0000 Subject: [PATCH] :technologist: [pi4] Allow all traffic from local network --- hosts/pi4/security/firewall.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hosts/pi4/security/firewall.nix b/hosts/pi4/security/firewall.nix index 28e5773..7cd32e8 100644 --- a/hosts/pi4/security/firewall.nix +++ b/hosts/pi4/security/firewall.nix @@ -12,8 +12,7 @@ localIPv4Range = "192.168.10.0/24"; in '' - ip saddr ${localIPv4Range} tcp dport 22 accept - ip saddr ${localIPv4Range} udp dport 22 accept + ip saddr ${localIPv4Range} accept ''; }; nftables.enable = true;