From 94aa830e272614d0603a82ab789561fc84b64740 Mon Sep 17 00:00:00 2001 From: "tiago.ferreira" Date: Tue, 14 Oct 2025 00:58:44 +0000 Subject: [PATCH] Enviar arquivos para "/" --- nftables.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nftables.conf diff --git a/nftables.conf b/nftables.conf new file mode 100644 index 0000000..f74c9e8 --- /dev/null +++ b/nftables.conf @@ -0,0 +1,11 @@ +table ip nat { + chain POSTROUTING { + type nat hook postrouting priority srcnat; policy accept; + oifname "enp0s3" counter packets 2 bytes 136 masquerade + } + + chain PREROUTING { + type nat hook prerouting priority dstnat; policy accept; + ip daddr 192.168.56.205 tcp dport 3389 counter packets 2 bytes 104 dnat to 172.17.0.2:3389 + } +}