diff --git a/nftables.conf b/nftables.conf new file mode 100644 index 0000000..6e245a2 --- /dev/null +++ b/nftables.conf @@ -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 + } +} \ No newline at end of file