Ubuntu Networking :: Persistent Static Route Dual NIC Firewall
Apr 3, 2010
I have a dual NIC firewall and everything works fine but only if I run the static route for the default gateway manually:route add -net 0.0.0.0 netmask 0.0.0.0 gw x.x.x.x dev eth1.Where eth1 is my WAN interface and x.x.x.x is my WAN IP. I've spent about 20 hours trying to figure out just how to get this static route to come up automatically upon reboot. I've read all the manuals and all that jazz.I've added the "up route..." or the "post-up route..." commands to the /etc/network/interfaces file but that does not work (although my other static routes work just fine from here). I've copied the relevant text and pasted it onto the command line to confirm correctness - everything with the command is fine.
I've also creates a static-routes file (and chmod +x, confirmed the correct permissions, etc) in /etc/network/interfaces/if-up.d/ and attempted to set the routes here (yes - using the "/sbin/route add -net." terms that work FINE from the command line). But that does not work either.
View 1 Replies
ADVERTISEMENT
Apr 29, 2009
I would like to add a static route, however I do not understand what is meant by the Address setting below
GATEWAY2=10.241.58.62
NETMASK2=255.255.255.224
ADDRESS2=10.241.57.32
Does this mean any addresses beginning with 10.241.57.32 are routed over the gateway 10.241.58.62 an address range
View 3 Replies
View Related
Jul 13, 2010
I'm using ubuntu server 10.04. I need to create a second network to do some testing. Here's what it looks like so far: WAN > x.x.x.x/9 > router > 192.168.1.0/24 > LAN
I need to do this: WAN > x.x.x.x/9 > router > 192.168.1.0/24 > LAN > ubuntu server (LAMP, dhcp, dns via eth1) [eth0 192.168.1.138] > ubuntu server [eth1 10.0.0.1] The two networks should be transparent to one another. I've got everything working, except routing. Here is ifconfig:
[Code]...
View 5 Replies
View Related
Jan 24, 2011
Running Gentoo with kernel 2.6.29 on a Sparc Ultra 10. I'm having problems with my cable modem connection failing, so I've added a static route that enables me to log into the modem's diagnostics page at 192.168.100.1 when the connection drops; my /etc/conf.d/net looks like this (with the comment lines removed).
Code:
dns_domain_lo="MYNETWORK"
config_eth1=("192.168.0.1 netmask 255.255.255.0 broadcast 192.168.0.255")
config_eth0=("dhcp")
routes_eth0=(
"192.168.100.1/32 via 0.0.0.0"
) dhcpcd_eth0="-N"
This works but after a period of several hours to several days, this static route disappears from the routing table.
View 1 Replies
View Related
Apr 21, 2010
Using Ubuntu 9.1, I get the error "SIOCADDRT: No such process" whenever I try to set a static route using
sudo route add -net dest netmask 255.255.255.0 gw gateway
and
sudo ip route add dest/24 via gateway dev eth0
gives me "RTNETLINK answers: No such process".
From googling, it looks like others have had this problem, but I haven't found any working solutions yet. Anyone have any idea how to fix this?Ok, finally found the issue. The gateway has to be on the same subnet... ugh, is there anyway to use a gateway on a different subnet without tunnels? I can ping the machine I want to be the gateway, so I feel like I should be allowed to set it as a next hop for specific addresses.
View 2 Replies
View Related
Mar 23, 2011
how to setup persistent static routes in slackware? does slackware have some text file editing method like debian or redhat. ?
View 5 Replies
View Related
Oct 19, 2010
On a Red Hat Enterprise Linux Server release 5.4 (Tikanga) system, I set up a static route that unfortunately seems to get ignored.I set up the static route in the file /etc/sysconfig/network-scripts/route-eth0 as follows: 172.16.96.2/32 via 192.168.219.251
I've restarted the network service and also rebooted a few times. Here's my current routing table:
[Code]....
I am able to ping 172.16.96.2. However, when I do traceroute 172.16.96.2, it appears that the traffic goes through the default gateway 192.168.219.250 instead of our requested specific gateway 192.168.219.251:
[Code]....
I can ping both 192.168.219.251 and 192.168.219.250. In the route-eth0 file, I�ve also tried using the alternate syntax with ADDRESS0=<IP address> etc, but it didn�t work any better. I also tried setting a more general route of
172.16.96.0/24 via 192.168.219.251
The System / Administration / Network tool previously showed a spurious extra NIC called eth0.bak in addition to eth0. I deleted the eth0.bak and rebooted, but this also didn't help. Currently, eth0 is the only NIC on the system.
View 2 Replies
View Related
Apr 22, 2010
so on the host i'm trying to connect to, i have installed ssh server and it was working fine until i changed the /etc/network/interfaces file to set a static IP and then ran Code: sudo /etc/init.d/networking restart but now when i try to connect with SSH using the new static IP i get Code: ssh: connect to host 192.168.2.10 port 22: No route to host
View 6 Replies
View Related
Feb 12, 2010
I've trying to add a route to a host to force traffic out of a clustered IP address...
IE I have a cluster and the IP address moves from host to host on failure of a resource. The IP address is just a simple alias of an interface so for example... bond0:0 192.168.1.1 and bond0 192.168.1.10
What I want to do is force a program that starts up on the cluster hosts which sends packets out to a listening server to only send out of the cluster ip address.
I did a route add -host 172.22.2.2 gw 192.168.1.1. But this doesn't seem to work if i try to send a ping the packets still go out the wrong address, and more and above that for some reason the ping doesn't work at all. If i remove the route the ping will work again.
View 6 Replies
View Related
Apr 9, 2009
I have configured LVS under RHEL5. I need to configure static route to my VIP. Now, I used the following command to add route but reboot OS will flush the route.
# route add -host 192.168.11.55 dev lo:0
how to add static route for certain network via /etc/sysconfig/network-scripts/route-<device-name>. But I did not found that for host.
View 4 Replies
View Related
May 8, 2011
I have 3 network interfaces on my Linux Router :
Interface - Gateway - Type
Code:
br0 - 192.168.0.1 - Internet
eth2 - 192.168.1.1 - LAN
tun0 - 10.0.0.2 - VPN (via br0)
What I'd like to do is to route all TCP packets coming from eth2 to tun0 where a VPN client is running on 10.0.0.2. If I delete all default routes and if I add a new route to tun0 like :
Code:
route del default
route add default gw 10.0.0.2
Everything is fine, and everyone on eth2 can reach the Internet using the VPN access. Now the problem is that my VPN client does not allow any other protocols other than TCP. And I also want to allow VPN access only to eth2, no other LAN nor the router itself. use iptables to filter any TCP packets and mark them, so they can be sent to tun0, while any other packets can reach the Internet via br0 (192.168.0.1). I found on the Internet that we can mark packets before they get routed. Using the following commands :
Code:
iptables -t mangle -A PREROUTING -j MARK --set-mark 85 -i eth2 -p tcp --dport 80
ip route add table 300 default via 10.0.0.2 dev tun0
ip rule add fwmark 0x55 table 300
First of all, --dport 80 never work... :/ I wanted to filter TCP 80 packets coming from eth2, but none of them seems to be HTTP packets... oO (very strange...). Nevermind, I decided to forget about the --dport option. I use the "iptables -L -v -t mangle" command to see how many packets are marked, and it is working fine, all TCP packets coming from eth2 are marked. Now the problem is that none of them are routed to tun0 they are all respecting the "route -n" rules... and not the "table 300" rule I have created.
View 4 Replies
View Related
Feb 2, 2010
using redhat on server machine and open suse on client machine.i have installed nfs server and and it is running properly but when i want to mount shares from my client machine it gives the following.
error. "mount.nfs: mount to NFS server '10.3.31.146:/share' failed: System Error: No route to host" both systems ping each other and firewall is also disabled. another problem is when i remotely access from my server machine to client machine it gives the following error ssh:connect to host 10.3.31.147 port 22:connection refused what can be the problem?
View 2 Replies
View Related
Jan 25, 2011
Having trouble getting my Netgear WNA1000 working thru wireless router. Have tried lots of suggestions from other threads to no avail. Someone suggested that th routing table isn't set correctly, so have been trying to use the follwing to make the proper entry in the routing table: sudo route add -net 192.168.0.1 netmask 255.255.255.0 dev wlan0
Result: error message stating with:
"route: netmask does not match route address"
followed by "Usage" instructions which tell me to do what I just did. Any ideas on how I can populate my routing table with correct entry for my wireless card? Not to complicate matters, but I temporarily turned off encryption on my router to eliminate that as a possibility until I get connected. So maybe it'still trying to connect via encrypted mode - do I need to turn off encryption on my (client) end?
View 2 Replies
View Related
Oct 21, 2010
I got this definition:"a process that replaces a series of related, specific routes in a route table with a more generic route." honestly I found it not so clear.. I want to know if this definition is correct and also more details about this subject..
View 1 Replies
View Related
May 18, 2010
I am learning to setup firewall in my home for that i have selected four system(sys1,sys2....sys4) for testing .I have configured sys2 to act as a firewall with two NIC. sys3 and sys4 are inside the firewall . sys1 is not connected to firewall for testing purpose.
the IP assignments are follows :
sys1 : ( fedora, not connected to firewall i am thinking, But i am not sure )
IP : 192.168.2.1 ,
gateway : blank
dns1 : blank
dns2 : blank
sys2 firewall ,IPTABLES )
code....
what happened is that sys1(not connected to firewall) can ssh to sys4(connected,inside firewall),since the rules are written not to ssh form sys1 to sys4..
then I came to know whatever the request I give, It directly goes as sys1 --> sys4. Not as sys1-----> sys2(firewall)---> sys4 .and the firewall is not filtering and processing anything for both inbound and outbound (i think it's my mistake some where). the requests are directly going inside without firewall.
View 3 Replies
View Related
Aug 28, 2010
I'm have a number of ubuntu servers that all have dual nics.One interface is used to assign a static public ip and the other is used to assign a static internal IP that can be used on the internal network.The interfaces pull IP's from completely separate gateways on different networks.The problem I face now it that our internal network is moving everything to DHCP on the internal side.I can configure my /etc/network/interfaces so that I can get a public static Ip and a private DCHP, but the problem is that the public IP no longer functions for any services.here is an example of my interfaces
Code:
# The primary network interface
auto eth0
[code]....
View 9 Replies
View Related
Apr 26, 2010
I got this message on Friday from just one domain. uote:mailsrv.forthnet.gr #<mailsrv.forthnet.gr #5.5.0 smtp; 554 5.5.0 Your message was considered to be spam by the FORTHnet Antispamming Policy and was not delivered to the recipient. The following spam tests returned positive for this message:FORGED_RCVD_HELO,RCVD_IN_BRBL. For further information visitWe are not a spamming community but it seems we have a statice IP address that has a Reverse lookup to "myipaddress.static.lyse.net" and not my email domain. Would setting a cname mail.mydomain.no -> myipaddress.static.lyse.net cure this problem or are there more tricks to be performedOnce I have cured the FORGED_RCVD_HELO I can move to getting the IP removed from BARACUDA.
View 2 Replies
View Related
Sep 20, 2010
I just put in an ATI Radeon x600 on my OpenSuse system I loaded last week. The Xorg log shows that it is using the Radeon module (driver). I am seeing colored/static rectangles covering the green wallpaper and when scrolling in Firefox. Does anyone know how to resolve this issue, and is this the driver I should be using?
View 3 Replies
View Related
Sep 1, 2010
I have a ubuntu 10.04.1 install with openvpn, so I have some routes in my /etc/networking/interface file. But for what ever reason when it boots the routes don't come up and I have to restart the networking before they come up. Once I do that all is well. Any idea's why it's doing that?
View 1 Replies
View Related
Sep 1, 2010
I have a ubuntu 10.04.1 install with openvpn, so I have some routes in my /etc/networking/interface file. But for what ever reason when it boots the routes don't come up and I have to restart the networking before they come up. Once I do that all is well.
View 4 Replies
View Related
May 12, 2010
I have a crappy cat5 cable that only works at 10BaseT settings on any nic. I have a gigabit nic which I configure using;Quote:ethtool -s eth2 speed 10 autoneg offProblem is that this setting doesn't stick after a reboot. How do I make the change permanent?
View 4 Replies
View Related
Jul 6, 2010
ubuntu is capping my wireless connection at 1Mbps, so everytime I boot up i have to type this:
"iwconfig wlan0 rts 2347 && sudo iwconfig wlan0 frag 2346 && sudo iwconfig wlan0 rate 9MB"
How can I make these settings persistent?
View 2 Replies
View Related
May 26, 2011
I'm running Ubuntu 11.04 on my desktop and the 70-persistent-net.rules file seems to be ignored. The ethernet interfaces are randomly shuffled around on boot (i have 4 interfaces). The original one was configured to have a static IP address (eth0). Is there anything that prevents the /etc/udev/rules.d/70-persistent-net.rules from being applied/used?
View 1 Replies
View Related
May 13, 2011
At work I have been given the "opportunity" to provide admin support on a bunch of RHEL3, 4, and 5 servers. My latest problem is, as the subject hints at, adding persistent (or permanent) routes on a RHEL5 server. I've successfully done this with a couple of RHEL4 servers by adding the relevant information to the /etc/sysconfig/network-scripts/route-eth0 file like this:
GATEWAY0=xx.56.200.129
NETMASK0=255.255.255.128
ADDRESS0=xx.56.200.250
On the RHEL5 servers I do not see a route-ethX file. Do I just add the file and the route info? Or has this functionality been moved to another location?
View 2 Replies
View Related
Jun 11, 2010
I would like to have the below lines loaded at bootup and anytime the network is restarted (if possible).
Code:
I am using SuSE 11.
View 1 Replies
View Related
Jun 18, 2010
I am working on a Fedora 13 iso that will be used on some of the PC's at my work, the computers will have a varying amount of Ethernet ports, at least two onboard and up to 6 external. In order to ensure that the same physical port on the back of the computer is always used for the internet connection I have written a script to rearrange the contents of /etc/udev/rules.d/70-persistent-net.rules. The script ensures that the two Ethernet ports on the motherboard are listed as eth0 and eth1, without it they could end up as any port in the eth0-7 range.
The script works well however when its run I need to reboot the PC for the ifconfig to load the correct port as eth0/eth1. I have tried placing calls to my function through the rc.sysinit/rc.5d/rc.local and so on however nothing seems to work.Is there a way to make ifconfig check the mac/eth configuration files for changes (There appears to no longer be an ifprobe command which sounds like what I need). Alternatively is there somewhere I can place the script after udev has created the persistent-net.rules but before anything else loads the information. I have tried chkconfig --level 2345 network off and loading the service later but it still uses the wrong information, only a reboot seems to get it to work
View 3 Replies
View Related
Mar 11, 2010
How can I add this to Ubuntu so that I can effectively use both networks connected to my machine. All I do in WinXP is run this from the command prompt: route -p add 10.0.0.0 mask 255.0.0.0 10.15.122.9
View 3 Replies
View Related
Apr 12, 2010
How would I go about re-routing the audio of a Jaunty PC, to another on the same LAN?
View 3 Replies
View Related
Jan 19, 2009
I have a server in the office and when I need to connect via cable I have to start up a root terminal and type in:
route add -net 0.0.0.0 gw 10.0.1.10 dev eth0
Is there a way to have this saved so I don't have to re-type it every time ? I already tried adding the command in /etc/rc.local and also in /etc/network/interfaces but it doesn't.
View 2 Replies
View Related
Mar 2, 2009
As root, I can mount the /home directory from my desktop to my laptop which uses wireless. However, when I logout the mount disappears. That is, I mount the directory, check it is mounted, then I logout, log back in as root, the mount is now not there. How do I make the mount persistent, always there?
I want the mount to persist so that the two ordinary users on my small household network can access the same files whichever computer they use.
It appears that this may be because the wireless link disappears when I log out. Both machines are using Fedora 10. A persistent mount used to work using Febora 8, but maybe some settings I am not aware of have changed.
View 3 Replies
View Related