iptables reroute to another IP
Sat. January 22, 2011Categories: Information, Linux
Tags: ip redirection, iptables
This is how I re-routed all traffic through port 25565 to another IP address.
echo "1" > /proc/sys/net/ipv4/ip_forward iptables -t nat -A PREROUTING -p tcp --dport 25565 -j DNAT --to-destination <IP> iptables -t nat -A POSTROUTING -j MASQUERADE
To clear what you just did:
iptables -F iptables -X iptables -t nat -F iptables -t nat -X
For more information on iptables: Linux Home Networking, debuntu.
Good luck.

Comments