Skip to content

Instantly share code, notes, and snippets.

@zipme
Created April 16, 2010 03:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zipme/367982 to your computer and use it in GitHub Desktop.
Save zipme/367982 to your computer and use it in GitHub Desktop.
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