最終更新:2023-06-02 (金) 05:23:59 (118d)
USB Network Native Driver for ESXi
Top / USB Network Native Driver for ESXi
https://flings.vmware.com/usb-network-native-driver-for-esxi#instructions
対応
ASIX
Realtek
Aquantia
インストール
- esxcli software component apply -d <zip>
- zipはフルパスで指定しないとエラーになるっぽい
再起動すると無効になる
- Persisting USB NIC Bindings
- Currently there is a limitation in ESXi where USB NIC bindings are picked up much later in the boot process and to ensure settings are preserved upon a reboot, the following needs to be added to /etc/rc.local.d/local.sh based on your configurations.
https://flings.vmware.com/usb-network-native-driver-for-esxi
vusb0_status=$(esxcli network nic get -n vusb0 | grep 'Link Status' | awk '{print $NF}') count=0 while [[ $count -lt 20 && "${vusb0_status}" != "Up" ]] do sleep 10 count=$(( $count + 1 )) vusb0_status=$(esxcli network nic get -n vusb0 | grep 'Link Status' | awk '{print $NF}') done esxcfg-vswitch -R
メモ
- SSHでviで編集