“RTNETLINK responde: Arquivo existe” após a atualização para o Debian 7

2

Eu atualizei meu sistema do Debian 6 para o Debian 7.3 ontem.

Após a reinicialização, escolhi o novo kernel linux-image-3.2.0-4-amd64 e a rede ficou indisponível.

Eu tentei sudo service networking restart e recebi os seguintes erros:

RTNETLINK answers: File exists
Failed to bring up eth0.

Eu só configurei para eth0. Aqui está o meu /etc/network/interfaces .:

auto lo eth0
iface lo inet loopback

iface eth0 inet static
    address x.x.x.x
    netmask 255.255.255.0
    gateway x.x.x.x

e a tabela de roteamento está vazia sudo route -n :

Kernel IP routing table
Destination     Gateway         Genmask         Flags Metric Ref    Use Iface

No entanto, o antigo kernel 2.6.32-5-amd64 x86_64 ainda funciona.

Qualquer ajuda seria muito apreciada.

    
por KenLiang 08.01.2014 / 08:48

1 resposta

0

Verifique se o novo kernal pode ver a interface com:

ifconfig -a

se a interface estiver listada, verifique seu nome,

então atribua um ip manualmente, assumindo que o nome é eth0

ifconfig eth0 IP_ADDRESS netmask NET_MASK

exemplo:     ifconfig eth0 192.168.1.1 netmask 255.255.255.0

adicione o padrão gw, assumindo que o gateway é 192.168.1.254

route add default gw 192.168.1.254

Esta é apenas uma solução temporária.

    
por 08.01.2014 / 08:55