From df1532ece0649831f23589a00920afa5c5f6aa95 Mon Sep 17 00:00:00 2001 From: Jimbo Date: Tue, 15 Oct 2024 17:58:53 -0400 Subject: [PATCH] Shift over the extra ssh port --- modules/system/devices/networking/firewall/server/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/devices/networking/firewall/server/default.nix b/modules/system/devices/networking/firewall/server/default.nix index fdf6459..295a3cb 100644 --- a/modules/system/devices/networking/firewall/server/default.nix +++ b/modules/system/devices/networking/firewall/server/default.nix @@ -25,7 +25,7 @@ chain PREROUTING { type nat hook prerouting priority dstnat; policy accept; tcp dport 2211 dnat to ${config.ips.pc}:22 comment "SSH to PC" - tcp dport 2233 dnat to ${config.ips.wgSpan}.3:22 comment "SSH to Oracle VM" + tcp dport 2222 dnat to ${config.ips.wgSpan}.3:22 comment "SSH to Oracle VM" udp dport { 27005, 27015, 7777 } dnat to ${config.ips.pc} comment "PC Hosted Games"