Enviar arquivos para "/"

This commit is contained in:
2025-10-14 00:58:44 +00:00
parent 78711a598b
commit 94aa830e27

11
nftables.conf Normal file
View File

@@ -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
}
}