From 014badfa994021f5ce250f0d160ce3e7e57a94c3 Mon Sep 17 00:00:00 2001 From: Menno van Leeuwen Date: Sat, 16 Nov 2024 02:54:30 +0100 Subject: [PATCH] updates internal network traffic rules to allow access from the 192.168.86.0/24 subnet --- config/nixos/common/server.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/nixos/common/server.nix b/config/nixos/common/server.nix index 57c64e4..58d5863 100644 --- a/config/nixos/common/server.nix +++ b/config/nixos/common/server.nix @@ -74,7 +74,7 @@ # Allow internal network traffic iptables -A INPUT -i docker0 -j ACCEPT iptables -A INPUT -i tailscale0 -j ACCEPT - iptables -A INPUT -s 192.168.0.0/16 -j ACCEPT + iptables -A INPUT -s 192.168.86.0/24 -j ACCEPT # Allow Docker inter-network communication iptables -A FORWARD -i br-* -o br-* -j ACCEPT