Problemas com IP estático (Ubuntu Server 10.04)

1

Estou seguindo este tutorial para configurar um servidor de teste para meus projetos de desenvolvimento web.

Quando tento configurar um endereço IP estático (usando a configuração abaixo), recebo o erro "ping: host desconhecido www.google.com" quando tento usar o ping.

auto eth0
iface eth0 inet static
    address 192.168.0.100
    netmask 255.255.255.0
    network 192.168.0.0
    broadcast 192.168.0.255
    gateway 192.168.0.1 

O ping funciona bem quando a configuração é:

auto eth0
iface eth0 inet dhcp

Sou novato na configuração e administração de servidores.

Aqui está a saída de /sbin/ifconfig eth0 , conforme solicitado:

eth0    Link encap:Ethernet HWaddr 00:08:a1:0d:93:a1
        inet addr:192.168.0.100 Bcast:192.168.0.255 Mask:255.255.255.0
        inet6 addr: fe80::208:a1ff:fe0d:93a1/64 Scope:Link
        UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
        RX packets:69 errors:0 dropped:0 overruns:0 frame:0
        TX packets:303 errors:0 dropped:0 overruns:0 carrier:0
        collisions:0 txqueuelen:1000
        RX bytes:9323 (9.3 KB) TX bytes:12240 (12.2 KB)
        Interrupt:21 Base address:0xd800

Saída de route -n :

Kernal IP routing table
Destination    Gateway      Genmask        Flags Metric Ref  Use Iface
192.168.0.0    0.0.0.0      255.255.255.0  U     0      0    0   eth0
0.0.0.0        192.168.0.1  0.0.0.0        UG    100    0    0   eth0

Informações de DNS de /etc/resolv.conf :

nameserver 192.168.1.1
nameserver 71.242.0.12
domain home
search home
    
por Mike Moore 15.05.2010 / 21:48

1 resposta

1

você executou /etc/init.d/networking restart

você também pode fazer:

/sbin/ifconfig eth0 192.168.0.100 netmask 255.255.255.0 up
/sbin/route add default gw 192.168.0.1 eth0

que deve abrir o eth0 e permitir que você tente efetuar ping, se a rede reiniciar falhar

    
por 15.05.2010 / 21:57