search for: forward_ipv4

Displaying 13 results from an estimated 13 matches for "forward_ipv4".

2008 Feb 12
7
Making FORWARD_IPV4=YES permanent / DHCP multiple routers
.../net/ipv4/ip_forward iptables -t nat -A POSTROUTING -o ${UPLINK} -j SNAT --to ${IP_NAT} This works fine, however I want this permanent so I don't have to run the script on startup. I have the firewall setup with SNAT fine, but when I write the file /etc/sysconfig/network with the line 'FORWARD_IPV4=YES' it still doesn't enable the ip forwarding after boot? cat /proc/sys/net/ipv4/ip_forward 0 So how do I do this? Second, In DHCP, you can specify multiple DNS servers: option domain-name-servers 10.0.0.1, 10.0.0.2, 10.0.0.3; can you also do this with routers? option routers 10.0.0...
2005 Jun 17
4
linux ip forwarding problem
...ping requests at its eth0, but it never forwards them to its eth1. So is the reverse direction. The forwarding node is Redhat 7.2, kernel 2.4.7-10. The two end points are FC3, 2.6.9-1.667smp. What we have done to enable IP forwarding on the RH7.2 node are: (1) In /etc/sysconfig/network, add "FORWARD_IPV4=yes" (2) "echo 1 > /proc/sys/net/ipv4/ip_forward". (3) Change "net.ipv4.ip_forward=1" in /etc/sysctl.conf. (4) "echo 0 > /proc/sys/net/ipv4/conf/eth0/rp_filter" "echo 0 > /proc/sys/net/ipv4/conf/eth1/rp_filter" (5) We tried "iptables -F&quo...
2006 Feb 06
1
ip_forwarding
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...
2004 Aug 21
0
Port forwarding from Internal LAN
...eeded and it will only load the unneeded kernel module #$IPTABLES -F -t mangle #CRITICAL: Enable IP forwarding since it is disabled by default since # # Redhat Users: you may try changing the options in # /etc/sysconfig/network from: # # FORWARD_IPV4=false # to # FORWARD_IPV4=true # echo " Enabling forwarding.." echo "1" > /proc/sys/net/ipv4/ip_forward # Flush the user chain.. if it exists if [ -n "`$IPTABLES -L | $GREP drop-and-log-it`" ]; then $IPTABLES...
2009 Dec 11
0
Shorewall dual NIC and asterisk
...0.229.10 DSL modem : 192.168.0.254 All web traffic for asterisk /shorewall server (http, ftp, dns, ...) should go through router1 10.200.229.1 via eth0 All SIP traffic (port 5060-5082 and 10000-20000) should go through dsl modem 192.168.0.254 via eth1 /etc/sysconfig/network : NETWORKING=yes FORWARD_IPV4="yes" HOSTNAME=localdomain.localhost NOZEROCONF=yes /etc/sysconfig/network-script/ifcfg-eth0 : DEVICE=eth0 BOOTPROTO=none HWADDR=00:xx:xx:xx:xx:xx ONBOOT=yes NETMASK=255.255.255.0 IPADDR=10.200.229.10 GATEWAY=10.200.229.1 TYPE=Ethernet /etc/sysconfig/network-script/ifcfg-eth1 : DEVICE=e...
2005 Jun 21
2
TEQL and Subnet problem
...9.254.0.0 0.0.0.0 255.255.0.0 U 0 0 0 eth1 0.0.0.0 16.119.144.1 0.0.0.0 UG 0 0 0 eth0 4. Enable IP Forwarding on P1 IP forwarding needs only to be enabled on P1. This part should be OK. (1) In /etc/sysconfig/network, add "FORWARD_IPV4=yes" (2) "echo 1 > /proc/sys/net/ipv4/ip_forward". The default value in Linux is 0. (3) To enable IP forwarding automatically after reboot, change "net.ipv4.ip_forward=1" in /etc/sysctl.conf. (4) Dislab packet filtering: "echo 0 > /proc/sys/net/ipv4/conf/eth0...
2003 May 20
0
win98_network_problem
...yes read only = no [printers] path = /var/spool/samba public = yes guest ok = yes printable = yes browseable = yes writable = yes read only = no ## /etc/sysconfig/network NETWORKING=yes HOSTNAME=matrix.localdomain GATEWAY="192.168.1.1" GATEWAYDEV="eth0" FORWARD_IPV4="yes" #################################################### I believe this is enogh for now. This is my latest configuration i have tried slight variations to this without luck. Now, my windows is settup properly i believe, cause the sharing of files between my win machines has no prob...
2003 May 20
0
zpet
...ublic = yes read only = no [printers] path = /var/spool/samba public = yes guest ok = yes printable = yes browseable = yes writable = yes read only = no ## /etc/sysconfig/network NETWORKING=yes HOSTNAME=matrix.localdomain GATEWAY="192.168.1.1" GATEWAYDEV="eth0" FORWARD_IPV4="yes" #################################################### I believe this is enogh for now. This is my latest configuration i have tried slight variations to this without luck. Now, my windows is settup properly i believe, cause the sharing of files between my win machines has no prob...
2003 May 20
0
zpet7310@yahoo.com.au
...yes read only = no [printers] path = /var/spool/samba public = yes guest ok = yes printable = yes browseable = yes writable = yes read only = no ## /etc/sysconfig/network NETWORKING=yes HOSTNAME=matrix.localdomain GATEWAY="192.168.1.1" GATEWAYDEV="eth0" FORWARD_IPV4="yes" #################################################### I believe this is enogh for now. This is my latest configuration i have tried slight variations to this without luck. Now, my windows is settup properly i believe, cause the sharing of files between my win machines has no prob...
2004 Mar 24
3
IP Masquerade issues
...            sender. # echo -e "   Done loading modules.\n" #CRITICAL:  Enable IP forwarding since it is disabled by default since # #           Redhat Users:  you may try changing the options in #                          /etc/sysconfig/network from: # #                       FORWARD_IPV4=false #                             to #                       FORWARD_IPV4=true # echo "   Enabling forwarding.." echo 1 > /proc/sys/net/ipv4/ip_forward # Dynamic IP users: # #   If you get your IP address dynamically from SLIP, PPP, or DHCP, #   enable this following optio...
2005 Jun 21
0
TEQL and Subnet problem (reformatted)
....0.0 255.255.0.0 U 0 0 0 eth1 0.0.0.0 16.119.144.1 0.0.0.0 UG 0 0 0 eth0 4. Enable IP Forwarding on P1 IP forwarding needs only to be enabled on P1. This part should be OK. (1) In /etc/sysconfig/network, add "FORWARD_IPV4=yes" (2) "echo 1 > /proc/sys/net/ipv4/ip_forward". The default value in Linux is 0. (3) To enable IP forwarding automatically after reboot, change "net.ipv4.ip_forward=1" in /etc/sysctl.conf. (4) Dislab packet filtering: "echo 0 > /proc/sys/net/ipv4/conf/eth0/rp_...
2006 Mar 14
1
iptables+iproute problem
...configurable ICMP packet back to the # sender. #CRITICAL: Enable IP forwarding since it is disabled by default since # # Redhat Users: you may try changing the options in # /etc/sysconfig/network from: # # FORWARD_IPV4=false # to # FORWARD_IPV4=true # echo " Enabling forwarding.." echo "1" > /proc/sys/net/ipv4/ip_forward # Dynamic IP users: # # If you get your IP address dynamically from SLIP, PPP, or DHCP, # enable the following opti...
2002 Feb 21
6
How to connect across the Internet
Hello All, Well my Samba server is up and running good, but I am now needing to be able to let some of my users connect to our server who is not located on our local network. Actually they are located some distance away and I would like to be able to allow then to connect. Has anyone had any success with this and how it might be done? Best Regards, Lonnie -- Lonnie Cumberland OutStep