I have an issue with the internet connection in Ubuntu not working any longer.
I have two NIC's. Both static. One with a internet IP and one local. I can SSH into local fine, but the internet IP cannot be seen outside the network. I have 5 static internet IP's (only 1 assigned to this server) and the others work fine with the same configurations, so I know it's not the ISP. I can also ping the other internet IPs I have, but I can't ping out - say to google's 8.8.8.8.
netstat -rn
Kernel IP routing table
Destination Gateway Genmask Flags MSS Window irtt Iface
XX.49.84.232 0.0.0.0 255.255.255.248 U 0 0 0 eth1
172.24.98.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
0.0.0.0 XX.49.84.238 0.0.0.0 UG 0 0 0 eth1
/etc/network/interfaces file:
auto lo
iface lo inet loopback
auto eth0
allow-hotplug eth0
iface eth0 inet static
address 172.24.98.60
netmask 255.255.255.0
auto eth1
allow-hotplug eth1
iface eth1 inet static
address XX.49.84.237
gateway XX.49.84.238
netmask 255.255.255.248
Any ideas? Thank you so much!