From b87986d6d7a49111aebb143d3eb261224d5c2f24 Mon Sep 17 00:00:00 2001 From: magic_rb Date: Sun, 11 Feb 2024 16:21:25 +0100 Subject: [PATCH] Accept blowhole minecraft port Signed-off-by: magic_rb --- nixos/systems/blowhole/firewall.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nixos/systems/blowhole/firewall.nix b/nixos/systems/blowhole/firewall.nix index 2e7aa95..f7d7c66 100644 --- a/nixos/systems/blowhole/firewall.nix +++ b/nixos/systems/blowhole/firewall.nix @@ -148,6 +148,10 @@ in # Accept WireGuard iifname "${wan}" udp dport 6666 accept; + + # Accept minecraft + iifname "${wan}" tcp dport 25560 accept; + iifname { "nomad", "ve-monitor", "ve-klipper" } oifname { "nomad", "ve-monitor", "ve-klipper" } accept comment "Allow Nomad to do whatever it wants in its interface" iifname { "${wlan}", "${lan}", "lo" } accept comment "Allow local network to access the router" iifname { "${wan}", "${doVPN}", "nomad", "docker0", "ve-monitor", "ve-klipper", "mvm0" } jump input_out