Created
April 16, 2010 03:56
-
-
Save zipme/367982 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo 1 > /proc/sys/net/ipv4/ip_forward | |
iptables -t nat -A PREROUTING -i eth0 -p tcp -d xx.xx.xx.xx --dport 443 -j DNAT --to-destination 168.143.162.100:443 | |
iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE | |
#====== | |
"echo 1 > /proc/sys/net/ipv4/ip_forward" is not permenant,If we want to make this configuration permanent the best way to do it is using the file /etc/sysctl.conf | |
where we can add a line containing net.ipv4.ip_forward = 1 | |
/etc/sysctl.conf: | |
net.ipv4.ip_forward = 1 | |
then | |
sysctl -p /etc/sysctl.conf | |
# ===== |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment