Ethernet não funciona 10.04

0

Estou enfrentando um problema estranho. Ontem, desliguei meu servidor Ubuntu 10.04 LTS por engano. Desde então, a rede não está funcionando. A interface que estava em uso foi configurada como eth1 mas agora ela não mostra nenhum dispositivo ethernet quando eu faço ifconfig -a . Apenas mostra interfaces de loopback e virbr0, sem interfaces ethernet. Aqui está a saída do ifconfig.

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:16436  Metric:1
          RX packets:1192 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1192 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:395779 (395.7 KB)  TX bytes:395779 (395.7 KB)

virbr0    Link encap:Ethernet  HWaddr ea:8d:e0:cd:aa:a1  
          inet addr:192.168.122.1  Bcast:192.168.122.255  Mask:255.255.255.0
          inet6 addr: fe80::e88d:e0ff:fecd:aaa1/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:0 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

Abaixo está a saída de sudo lshw -C networking

  *-network UNCLAIMED
       description: Ethernet controller
       product: Intel Corporation
       vendor: Intel Corporation
       physical id: 19
       bus info: pci@0000:00:19.0
       version: 05
       width: 32 bits
       clock: 33MHz
       capabilities: pm msi bus_master cap_list
       configuration: latency=0
       resources: memory:fe400000-fe41ffff memory:fe428000-fe428fff ioport:f080(size=32)

E aqui está o arquivo / etc / interfaces que estava em uso e funcionando muito bem até que isso acontecesse. Eu tinha muitas interfaces virtuais configuradas também.

auto lo eth1 eth1:1 eth1:2 eth1:3 eth1:4 eth1:5 eth1:6 eth1:7 eth1:8 eth1:9 eth1:10
iface lo inet loopback

iface eth1 inet dhcp

iface eth1:1 inet static
    address 192.168.1.201
    netmask 255.255.255.0
    broadcast 192.168.1.255
    network 192.168.1.0

iface eth1:2 inet static
    address 192.168.1.202
    netmask 255.255.255.0
    broadcast 192.168.1.255
    network 192.168.1.0

iface eth1:3 inet static
    address 192.168.1.203
    netmask 255.255.255.0
    broadcast 192.168.1.255
    network 192.168.1.0

iface eth1:4 inet static
    address 192.168.1.204
    netmask 255.255.255.0
    broadcast 192.168.1.255
    network 192.168.1.0

iface eth1:5 inet static
    address 192.168.1.205
    netmask 255.255.255.0
    broadcast 192.168.1.255
    network 192.168.1.0

iface eth1:6 inet static
    address 192.168.1.206
    netmask 255.255.255.0
    broadcast 192.168.1.255
    network 192.168.1.0

iface eth1:7 inet static
    address 192.168.1.215
    netmask 255.255.255.0
    broadcast 192.168.1.255
    network 192.168.1.0

iface eth1:8 inet static
    address 192.168.1.216
    netmask 255.255.255.0
    broadcast 192.168.1.255
    network 192.168.1.0

iface eth1:9 inet static
    address 192.168.1.220
    netmask 255.255.255.0
    broadcast 192.168.1.255
    network 192.168.1.0

iface eth1:10 inet static
    address 192.168.1.225
    netmask 255.255.255.0
    broadcast 192.168.1.255
    network 192.168.1.0

Qualquer ajuda seria muito apreciada.

    
por eth.block 17.10.2012 / 09:48

1 resposta

0

Uma atualização do Kernel aconteceu antes da reinicialização? Parece haver alguns semelhante cases de interfaces UNCLAIMED que aparentemente se devem a < strong incapacidade de encontrar um driver para ele.

    
por Karthik T 17.10.2012 / 10:04