From f9232d32b20e1b98e33b918b5b7dbb8fb0db5c56 Mon Sep 17 00:00:00 2001 From: LinuxSquare Date: Mon, 18 Nov 2024 20:51:46 +0100 Subject: [PATCH] Allow connections to wings --- network/files/firewall_pterodactyl-rules.j2 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/network/files/firewall_pterodactyl-rules.j2 b/network/files/firewall_pterodactyl-rules.j2 index c586799..023f173 100644 --- a/network/files/firewall_pterodactyl-rules.j2 +++ b/network/files/firewall_pterodactyl-rules.j2 @@ -1,6 +1,13 @@ ## This file is managed by Ansible #!/usr/sbin/nft +table inet filter { + chain input { + iifname eth0 tcp dport 8080 accept \ + comment "Accept local connection to wings" + } +} + table ip nat { chain DOCKER {} }