heliosoares
(usa CentOS)
Enviado em 13/05/2014 - 21:32h
1° Verificar o arquivo /etc/network/interfaces
# nano /etc/network/interfaces
Se for dhcp, adicione algo parecido com -->
auto eth0
iface eth0 inet dhcp
Onde, eth0 é a sua placa de rede. Identifique a sua com o comando ifconfig.
Se for ip manual, deve estar configurado desta forma -->
allow-hotplug eth0
auto eth0
iface eth0 inet static
address 192.168.1.5
netmask 255.255.255.0
gateway 192.168.1.254
2° Verifique DNS, arquivo /etc/resolv.conf
Adicione algum servidor dns, ou verifique se já está configurado com algum.
# nano /etc/resolv.conf
nameserver 8.8.8.8
nameserver 8.8.4.4
3° Reiniciar o serviço de rede.
# /etc/init.d/networking restart
4° Verificar as placas de rede, veja se alguma está com o status down.
# ifconfig
5° Se alguma estiver down use o comando ifup.
Ex.: # ifup eth0