Check if IP Forwarding is enabled ?
1 |
cat /proc/sys/net/ipv4/ip_forward |
if you see the value 0 this was Disable.
Edit from 0 to 1 for Enable with the command below
1 |
echo 1 > /proc/sys/net/ipv4/ip_forward |
Load
1 |
sysctl -f |
Restart the network service
1 |
service network restart |