How to redirect traffic to another IP using iptables

After migrating websites to a new server, you need to point domains to the new server by changing the name server or editing DNS. DNS propagation can take a few hours, during this time visitors to the website still see the website from the OLD server IP. If visitor signup or make a purchase on the OLD server after the migration, this data will be lost. To avoid this, you can use iptables to forward all traffic to the new server IP address.

The following steps need to be done on the OLD server. First, enable IP forwarding

Add

Make it active with command

If you only needed for the current session, you can run the command

For forwarding all incoming traffic on Port 80 and 443 to the new server IP, use

NEW_SERVER_IP_HERE = replace with IP address of the new server.

Now any traffic coming to the OLD server on ports 80 and 443 will be forwarded to the new server IP address. If you need to forward any port, just duplicate the command and change the port number as required.

If you want to remove the rules, you can flush iptables NAT rules with

To View iptables NAT rules

To make the iptables rules permanent on RHEL based Linux, run

To restore iptabes

See iptables

Need help with Linux Server or WordPress? We can help!

Leave a Reply

Your email address will not be published. Required fields are marked *