For some reason my eth0 does not have internet on reboot sometimes. I am using a static ip. I can ping my gateway, but I am unable to ping dns servers, or anything out of my network. It seems that when my internet does work(Usually but just restarting enough times), my /etc/resolv.conf has a nameserver in it. It is empty when I have no internet access. I believe something is overwriting my interfaces settings sometimes on boot. Any help would be appreciated. I am running Ubuntu Server 12.04 64bit
/etc/network/interfaces:
auto lo
iface lo inet loopback
auto eth0
iface eth0 inet static
address 173.213.192.234
netmask 255.255.255.248
network 173.213.192.232
broadcast 173.213.192.239
gateway 173.213.192.233
dns-nameservers 8.8.8.8
auto eth1
iface eth1 inet static
address 10.0.0.106
netmask 255.255.255.0
gateway 10.0.0.1
eth1
definition. If you need specific networks to be routed over10.0.0.1
you'll have to set it up manually. You don't have to do anything for 10.0.0.0/24 as that's on the local link of eth1. – gertvdijk Jun 25 '13 at 21:41/etc/init.d/networking restart
. My pings no longer hang when pinging google.com, but I get aunknown host google.com
message, which leads me to believe I still have a problem with my nameserver not being there. Any clue about that? – Eumcoz Jun 25 '13 at 21:47