all repos — nixfiles @ 10d3aaa8147a50e3b0496c560596e7f98d199ed5

System and user configuration, managed by nix and home-manager

prefect: update IPv6 ULA prefix in firewall rules
Alan Pearce alan@alanpearce.eu
Wed, 06 Jan 2021 17:42:23 +0100
commit

10d3aaa8147a50e3b0496c560596e7f98d199ed5

parent

ed5dea3285ab695f088487523a9ac0d66c3e319a

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M system/prefect.nixsystem/prefect.nix
@@ -68,10 +68,10 @@ };   networking.firewall.allowedTCPPorts = [ config.services.postgresql.port ];
 
   networking.firewall.extraCommands = ''
-    iptables  -A nixos-fw -p udp --source 172.30.44.0/24        -j nixos-fw-accept
-    iptables  -A nixos-fw -p tcp --source 172.30.44.0/24        -j nixos-fw-accept
-    ip6tables -A nixos-fw -p tcp --source fdbf:4d14:b5de:0::/64 -j nixos-fw-accept
-    ip6tables -A nixos-fw -p udp --source fdbf:4d14:b5de:0::/64 -j nixos-fw-accept
+    iptables  -A nixos-fw -p udp --source 172.30.44.0/24       -j nixos-fw-accept
+    iptables  -A nixos-fw -p tcp --source 172.30.44.0/24       -j nixos-fw-accept
+    ip6tables -A nixos-fw -p tcp --source fd12:d04f:65d:0::/64 -j nixos-fw-accept
+    ip6tables -A nixos-fw -p udp --source fd12:d04f:65d:0::/64 -j nixos-fw-accept
   '';
 
   powerManagement.cpuFreqGovernor = "schedutil";