lshw não mostrando rede

0

Saída:

{User}@{Computer}:~$ sudo lshw -class network
{User}@{Computer}:~$

Outro teste:

{User}@{Computer}:~$ lspci
00:00.0 RAM memory: NVIDIA Corporation MCP61 Memory Controller (rev a1)
00:01.0 ISA bridge: NVIDIA Corporation MCP61 LPC Bridge (rev a2)
00:01.1 SMBus: NVIDIA Corporation MCP61 SMBus (rev a2)
00:01.2 RAM memory: NVIDIA Corporation MCP61 Memory Controller (rev a2)
00:02.0 USB controller: NVIDIA Corporation MCP61 USB 1.1 Controller (rev a3)
00:02.1 USB controller: NVIDIA Corporation MCP61 USB 2.0 Controller (rev a3)
00:04.0 PCI bridge: NVIDIA Corporation MCP61 PCI bridge (rev a1)
00:05.0 Audio device: NVIDIA Corporation MCP61 High Definition Audio (rev a2)
00:06.0 IDE interface: NVIDIA Corporation MCP61 IDE (rev a2)
00:07.0 Bridge: NVIDIA Corporation MCP61 Ethernet (rev a2) <<---- Network Card????
00:08.0 IDE interface: NVIDIA Corporation MCP61 SATA Controller (rev a2)
00:08.1 IDE interface: NVIDIA Corporation MCP61 SATA Controller (rev a2)
00:09.0 PCI bridge: NVIDIA Corporation MCP61 PCI Express bridge (rev a2)
00:0b.0 PCI bridge: NVIDIA Corporation MCP61 PCI Express bridge (rev a2)
00:18.0 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration
00:18.1 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Address Map
00:18.2 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] DRAM Controller
00:18.3 Host bridge: Advanced Micro Devices [AMD] K8 [Athlon64/Opteron] Miscellaneous Control
01:05.0 FireWire (IEEE 1394): LSI Corporation FW322/323 (rev 70)
02:00.0 VGA compatible controller: NVIDIA Corporation G96 [GeForce 9500 GT] (rev a1)

Se você olhar para 00: 07.0, acredito que seja a placa de rede. No entanto, o lshw não mostra isso.

Preciso principalmente de informações sobre a velocidade da rede 10MBpS / 100MBsP / 1000MBpS

Embora saber porque meu sistema não está funcionando seria bom.

    
por triunenature 05.05.2012 / 06:20

1 resposta

2

Parece que ninguém respondeu isso e, para ser honesto, até hoje eu também não poderia ter feito isso. Acontece, no entanto, que eu só peguei uma caixa de transporte para servir como um servidor de arquivos / impressão que está usando um mini-itx planar com o chipset nvidia 430.

Primeiro, não consegui ver nenhum dispositivo de rede, até definir a opção MAC Media Interface BIOS para RGMII.

Então eu pude ver o dispositivo no lspci, e ele aparece exatamente como o seu faz (mesmo endereço de barramento).

Portanto, a chave da sua pergunta é que ela não aparece para o sistema como um dispositivo de classe de rede, mas sim como uma ponte. então se você fizer isso, você verá:

bladernr@transit:~$ sudo lshw -class bridge
[Unnecessary stuff snipped]
  *-bridge
       description: Ethernet interface
       product: MCP61 Ethernet
       vendor: NVIDIA Corporation
       physical id: 7
       bus info: pci@0000:00:07.0
       logical name: eth1
       version: a2
       serial: 00:01:2e:35:2d:d3
       size: 1000000000
       capacity: 1000000000
       width: 32 bits
       clock: 66MHz
       capabilities: bridge pm msi ht bus_master cap_list ethernet physical mii 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=forcedeth driverversion=0.64 duplex=full ip=192.168.0.107 latency=0 link=yes maxlatency=20 mingnt=1 multicast=yes port=MII speed=1Gbit/s
       resources: irq:43 memory:fe02d000-fe02dfff ioport:ec00(size=8)
[Unnecessary stuff snipped]
    
por bladernr 10.09.2012 / 22:53