전체 Network adpater 목록
# esxcfg-nics -l Name PCI Driver Link Speed Duplex MAC Address MTU Description vmnic0 0000:19:00.0 ixgben Up 10000Mbps Full 78:ac:44:12:8f:94 1500 Intel(R) Ethernet Controller X550 vmnic1 0000:19:00.1 ixgben Up 10000Mbps Full 78:ac:44:12:8f:95 1500 Intel(R) Ethernet Controller X550 vmnic2 0000:1a:00.0 ixgben Up 10000Mbps Full 78:ac:44:12:8f:96 1500 Intel(R) Ethernet Controller X550 vmnic3 0000:1a:00.1 ixgben Up 10000Mbps Full 78:ac:44:12:8f:97 1500 Intel(R) Ethernet Controller X550 vusb0 Pseudo cdce Up 100Mbps Full 2c:ea:7f:f9:56:b3 1500 DellTM iDRAC Virtual NIC USB Device |
권고 드라이버 버전을 확인하기 위해서 NIC의 Vendor ID (VID), Device ID (DID), Sub-Vendor ID (SVID), and Sub-Device ID (SDID) 확인 필요
# for a in $(esxcfg-nics -l |awk '{print $1}') ;do vmkchdev -l |grep $a ;done 0000:19:00.0 8086:1563 1028:1fa9 vmkernel vmnic0 0000:19:00.1 8086:1563 1028:1fa9 vmkernel vmnic1 0000:1a:00.0 8086:1563 1028:1fa9 vmkernel vmnic2 0000:1a:00.1 8086:1563 1028:1fa9 vmkernel vmnic3 |
Network Adapter/Firmware 버전 확인
# for a in $(esxcfg-nics -l |awk '{print $1}'|grep -v Name); do esxcli network nic get -n $a;done Advertised Auto Negotiation: true Advertised Link Modes: Auto, 100BaseT/Full, 1000BaseT/Full, 10000BaseT/Full Auto Negotiation: true Cable Type: Twisted Pair Current Message Level: 0 Driver Info: Bus Info: 0000:19:00:0 Driver: ixgben Firmware Version: 0x8000149f, 20.5.13 Version: 1.8.9.0 Link Detected: true Link Status: Up Name: vmnic0 PHYAddress: 0 Pause Autonegotiate: false Pause RX: true Pause TX: true Supported Ports: TP Supports Auto Negotiation: true Supports Pause: true Supports Wakeon: true Transceiver: Virtual Address: 00:50:56:56:8d:ef Wakeon: MagicPacket(tm) Advertised Auto Negotiation: true Advertised Link Modes: Auto, 100BaseT/Full, 1000BaseT/Full, 10000BaseT/Full Auto Negotiation: true Cable Type: Twisted Pair Current Message Level: 0 Driver Info: Bus Info: 0000:19:00:1 Driver: ixgben Firmware Version: 0x8000149f, 20.5.13 Version: 1.8.9.0 Link Detected: true Link Status: Up Name: vmnic1 PHYAddress: 0 Pause Autonegotiate: false Pause RX: true Pause TX: true Supported Ports: TP Supports Auto Negotiation: true Supports Pause: true Supports Wakeon: true Transceiver: Virtual Address: 00:50:56:5b:bb:f9 Wakeon: MagicPacket(tm) Advertised Auto Negotiation: true Advertised Link Modes: Auto, 100BaseT/Full, 1000BaseT/Full, 10000BaseT/Full Auto Negotiation: true Cable Type: Twisted Pair Current Message Level: 0 Driver Info: Bus Info: 0000:1a:00:0 Driver: ixgben Firmware Version: 0x8000149f, 20.5.13 Version: 1.8.9.0 Link Detected: true Link Status: Up Name: vmnic2 PHYAddress: 0 Pause Autonegotiate: false Pause RX: true Pause TX: true Supported Ports: TP Supports Auto Negotiation: true Supports Pause: true Supports Wakeon: true Transceiver: Virtual Address: 00:50:56:56:fe:23 Wakeon: MagicPacket(tm) Advertised Auto Negotiation: true Advertised Link Modes: Auto, 100BaseT/Full, 1000BaseT/Full, 10000BaseT/Full Auto Negotiation: true Cable Type: Twisted Pair Current Message Level: 0 Driver Info: Bus Info: 0000:1a:00:1 Driver: ixgben Firmware Version: 0x8000149f, 20.5.13 Version: 1.8.9.0 Link Detected: true Link Status: Up Name: vmnic3 PHYAddress: 0 Pause Autonegotiate: false Pause RX: true Pause TX: true Supported Ports: TP Supports Auto Negotiation: true Supports Pause: true Supports Wakeon: true Transceiver: Virtual Address: 00:50:56:52:65:5d Wakeon: MagicPacket(tm) Advertised Auto Negotiation: false Advertised Link Modes: 100None/Full Auto Negotiation: false Cable Type: Current Message Level: -1 Driver Info: Bus Info: 0000:00:00:0 Driver: cdce Firmware Version: NA Version: 1.0.0.0 Link Detected: true Link Status: Up Name: vusb0 PHYAddress: 0 Pause Autonegotiate: false Pause RX: false Pause TX: false Supported Ports: Supports Auto Negotiation: false Supports Pause: false Supports Wakeon: false Transceiver: Virtual Address: 00:50:56:55:ba:f1 Wakeon: None |
'Networking' 카테고리의 다른 글
[Socket Programming #1] Server/Client based on TCP (0) | 2023.05.18 |
---|---|
TCP 3-way handshake fails due to missing routing entry (0) | 2023.05.08 |
VMKernel Network Threads (0) | 2023.02.23 |
Address Resolution Protocol(ARP) (0) | 2022.08.11 |
Network Time Protocol(NTP) (0) | 2022.08.11 |