RHEL 컴퓨터에서 네트워크 카드 세부 정보를 찾는 방법

RHEL 컴퓨터에서 네트워크 카드 세부 정보를 찾는 방법

Linux 카드에 대한 자세한 정보를 찾을 수 있습니까?

예를 들어 우리는 다음을 시도했습니다.

dmidecode | grep -i network
                Function key-initiated network boot is supported
        Port Type: Network Port
        Port Type: Network Port
        Port Type: Network Port
        Port Type: Network Port
# dmidecode | grep -i eth
        Type: Ethernet
        Type: Ethernet
        Type: Ethernet
        Type: Ethernet

이 세부 사항에서는 네트워크 카드 및 성능 등에 대해서는 언급하지 않습니다.

네트워크 카드에 대한 세부 정보를 제공할 수 있는 도구에 대한 제안 사항이 있습니까?

답변1

네트워크 카드의 제조업체/모델을 얻으려면 일반적으로 다음을 실행합니다.

$ lspci | grep -i Ethernet
02:01.0 Ethernet controller: Intel Corporation 82545EM Gigabit Ethernet Controller (Copper) (rev 01)

또는 NIC에 대한 자세한 내용을 확인하세요.

$ sudo lshw -class network
 *-network                 
       description: Ethernet interface
       product: 82545EM Gigabit Ethernet Controller (Copper)
       vendor: Intel Corporation
       physical id: 1
       bus info: pci@0000:02:01.0
       logical name: eth0
       version: 01
       serial: 00:0c:29:25:4d:0e
       size: 1Gbit/s
       capacity: 1Gbit/s
       width: 64 bits
       clock: 66MHz
       capabilities: pm pcix bus_master cap_list rom ethernet physical logical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuration: autonegotiation=on broadcast=yes driver=e1000 driverversion=7.3.21-k8-NAPI duplex=full ip=192.168.5.143 latency=0 link=yes mingnt=255 multicast=yes port=twisted pair speed=1Gbit/s
       resources: irq:19 memory:fd5c0000-fd5dffff memory:fdff0000-fdffffff ioport:2000(size=64) memory:fd500000-fd50ffff

네트워크 장치를 Grepping하는 dmesg것도 도움이 될 수 있습니다.

$ dmesg | grep eth0
[    1.635942] e1000 0000:02:01.0 eth0: (PCI:66MHz:32-bit) 00:0c:29:25:4d:0e
[    1.635960] e1000 0000:02:01.0 eth0: Intel(R) PRO/1000 Network Connection
[    3.736090] e1000: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
[    3.742639] 8021q: adding VLAN 0 to HW filter on device eth0

의 경우 dmidecode마더 dmidecode -t baseboard보드에 내장된 네트워크 카드에 대한 정보가 표시될 수 있습니다.

PS Unix SE 질문의 경우 하드웨어 문제를 처리할 때 전체 lscpi출력이 더 유용할 수 있습니다 .

답변2

이를 사용하여 ethtool카드에 대한 추가 정보를 제공하고 네트워크 드라이버 및 하드웨어 설정을 제어할 수도 있습니다.

예를 들어:

# ethtool enp0s31f6 

Settings for enp0s31f6:
    Supported ports: [ TP ]
    Supported link modes:   10baseT/Half 10baseT/Full 
                            100baseT/Half 100baseT/Full 
                            1000baseT/Full 
    Supported pause frame use: No
    Supports auto-negotiation: Yes
    Supported FEC modes: Not reported
    Advertised link modes:  10baseT/Half 10baseT/Full 
                            100baseT/Half 100baseT/Full 
                            1000baseT/Full 
    Advertised pause frame use: No
    Advertised auto-negotiation: Yes
    Advertised FEC modes: Not reported
    Speed: 1000Mb/s
    Duplex: Full
    Port: Twisted Pair
    PHYAD: 1
    Transceiver: internal
    Auto-negotiation: on
    MDI-X: on (auto)
Cannot get wake-on-lan settings: Operation not permitted
    Current message level: 0x0000ffff (65535)
                   drv probe link timer ifdown ifup rx_err tx_err tx_queued intr tx_done rx_status pktdata hw wol 0x8000
    Link detected: yes

관련 정보