Hey all,
I'm trying to swap to CentOS and I have just about everything working except ip_forwarding.
I have FORWARD_IPV4="yes" in my /etc/sysconfig/network file but /proc/sys/net/ipv4/ip_forward does not = 1 (also tried to set it to ="true" and just =true).
All the firewall (iptable) rules are in place. Why won't ip_forward stay enabled?
I'm using the latest DL of CentOS and all updated. Any ideas?
Cheers.
-- Scott
On Sun, 2006-02-05 at 17:13 -0800, Scott Taylor wrote:
I have FORWARD_IPV4="yes" in my /etc/sysconfig/network file but /proc/sys/net/ipv4/ip_forward does not = 1 (also tried to set it to ="true" and just =true).
Put:
net.ipv4.ip_forward = 1
in /etc/sysctl.conf
and it should work.
-Steve
On Sun, February 5, 2006 17:19, Steve Bergman wrote:
On Sun, 2006-02-05 at 17:13 -0800, Scott Taylor wrote:
I have FORWARD_IPV4="yes" in my /etc/sysconfig/network file but /proc/sys/net/ipv4/ip_forward does not = 1 (also tried to set it to ="true" and just =true).
Put:
net.ipv4.ip_forward = 1
in /etc/sysctl.conf
and it should work.
Thanks. :)
-- Scott