„nftables.conf“ hinzufügen

This commit is contained in:
Julia Logan 2022-04-21 11:01:32 +00:00
parent e83917aadb
commit 151bd38baa

9
nftables.conf Normal file
View file

@ -0,0 +1,9 @@
#!/usr/sbin/nft -f
table ip nat {
chain POSTROUTING {
type nat hook postrouting priority srcnat; policy accept;
# Change the port here if you wish
tcp dport 25565 snat to 169.254.0.0/16
}
}