ajmchaves
(usa Debian)
Enviado em 30/09/2014 - 16:28h
/etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug eth0
iface eth0 inet dhcp
# The second network interface
auto eth1 #antes estava com allow-hotplug eth1, também funcionou
iface eth1 inet static
address 192.168.0.14
netmask 255.255.255.0
network 192.168.0.0
gateway 192.168.0.1
broadcast 192.168.0.255
/etc/resolv.conf
nameserver 192.168.2.1
nameserver 8.8.8.8 #Adicionei estes dois para ver se funcionava, mas nada
nameserver 8.8.4.4
# route -n
Tabela de Roteamento IP do Kernel
Destino Roteador MáscaraGen. Opções Métrica Ref Uso Iface
0.0.0.0 192.168.0.1 0.0.0.0 UG 0 0 0 eth1
192.168.0.0 0.0.0.0 255.255.255.0 U 0 0 0 eth1
192.168.2.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
Este aqui eu não sei interpretar se tem algo certo ou errado. O problema inicial já foi resolvido, a eth1 já funciona. Agora quem deixou de funcionar é eth0.