static ip no internet

0

Então eu segui estes passos para obter ip estático e perda de conexão

sudo -s
nano /etc/network/interfaces

alterado

auto lo
iface lo inet loopback

para o mesmo que acima com

auto eth-d
iface eth0 inet static
address etc

e depois redefinir a rede

    
por bob num 30.03.2013 / 18:17

1 resposta

3

Seu arquivo está desconfigurado, tente algo assim:

auto lo eth0
iface lo inet loopback
iface eth0 inet static
        address xxx.xxx.xxx.xxx(enter your ip here)
        netmask xxx.xxx.xxx.xxx
        gateway xxx.xxx.xxx.xxx(enter gateway ip here,usually the address of the router)
        DNS xxx.xxx.xxx.xxx

Então:

por wlraider70 31.03.2013 / 15:22