To do this:
# cat /proc/sys/net/ipv4/ip_forward
If the returned value is 0 that means IP forwarding is disabled.Then
# echo 1 > /proc/sys/net/ipv4/ip_forward
This will make IP forwarding active temporarilyTo make it permanent
# vim /etc/sysctl.conf
net.ipv4.ip_forward=1
And done.
Thanx, Big help for me...
ReplyDelete