Problema ao conectar o servidor à Internet

0

Acabei de configurar um servidor Linux. Mas atualmente estou tendo problemas em me conectar ao mundo exterior. Eu não sou capaz de fazer wget, apt-get ou ping. Aqui estão alguns detalhes relevantes:

$ping google.com
ping: unknown host google.com
cat /etc/resolv.conf

search dmust.local
nameserver 198.154.126.1
vim /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
auto eth0
iface eth0 inet static
        address 198.154.126.179
        netmask 255.255.255.0
        network 198.154.126.0
        broadcast 198.154.126.255
        gateway 198.154.126.1
        # dns-* options are implemented by the resolvconf package, if installed
        dns-nameservers 198.154.126.1
        dns-search dmust.local

Atualizar

route -n

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
198.154.126.0   0.0.0.0         255.255.255.0   U     0      0        0 eth0
0.0.0.0         198.154.126.1   0.0.0.0         UG    100    0        0 eth0
grep '^hosts' /etc/nsswitch.conf
hosts:          files dns
    
por Subhransu Mishra 03.04.2013 / 19:35

1 resposta

1

Você precisa obter o nameserver incorreto fora de sua configuração.

Confira o link para obter mais informações.

Para usar os nameservers gratuitos do Google, edite seu arquivo / etc / network / interfaces conforme abaixo.

Remover:

dns-nameservers 198.154.126.1

Adicionar:

dns-nameservers 8.8.4.4 8.8.8.8

E, em seguida, reinicie sua interface de rede, via

$ sudo /etc/init.d/networking restart

    
por 04.04.2013 / 21:57