From 127fc040a591a0404b57d91c94b3aea6a1d523a3 Mon Sep 17 00:00:00 2001 From: Zuma Date: Thu, 6 Nov 2025 21:22:42 +0100 Subject: [PATCH] Fix iptables rule --- configuration.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.nix b/configuration.nix index 579f1ab..5efeb0c 100755 --- a/configuration.nix +++ b/configuration.nix @@ -190,11 +190,11 @@ extraCommands = '' # Allow other nodes on VPN to access all ports - iptables -A INPUT -s 19720 -j ACCEPT + iptables -A INPUT -s 10.0.0.0/16 -j ACCEPT ''; extraStopCommands = '' - iptables -D INPUT -s 19720 -j ACCEPT + iptables -D INPUT -s 10.0.0.0/16 -j ACCEPT ''; }; # Garbage collection to remove old NixOs iterations