R&D/OS

Network Card 종류 파악 (lspci -nn | grep Ethernet)

sunshout 2011. 5. 19. 01:50
ㅇ 리눅스에서 내 서버의 NIC 카드의 종류(Chip set)을 알기 위한 명령어

ㅇ lspci -nn | grep Ethernet
    -nn : show PCI vendor and device codes as both numbers and names
   
    - 결과를 보면 4개의 NIC이 존재하며 10G Nic은 Intel 82599EB 임을 알 수 있음
    - 10G Nic drive : ixgbe.ko  (lsmod | grep ixgbe)
 

root@Cnode10:/home/collector/nProbe# lspci -nn | grep Ethernet
02:00.0 Ethernet controller [0200]: Intel Corporation 82599EB 10-Gigabit Network Connection [8086:10fb] (rev 01)
02:00.1 Ethernet controller [0200]: Intel Corporation 82599EB 10-Gigabit Network Connection [8086:10fb] (rev 01)
04:00.0 Ethernet controller [0200]: Intel Corporation 82576 Gigabit Network Connection [8086:10c9] (rev 01)
04:00.1 Ethernet controller [0200]: Intel Corporation 82576 Gigabit Network Connection [8086:10c9] (rev 01)