On the road again

This short article shows how to enable port forwarding on Linux host

Enable temporarily (till reboot):

sysctl -w net.ipv4.ip_forward=1

or

echo 1 > /proc/sys/net/ipv4/ip_forward

 In order  make the setting permanent add a line below to /etc/sysctl.conf:

net.ipv4.ip_forward = 1
Add comment