LoginSignup
1
0

More than 3 years have passed since last update.

VMware ESXiでUSB NICを使う

Last updated at Posted at 2020-12-02

VMware ESXiでUSB NICを使う

毎回やりかた忘れるので、USB Network Native Driver for ESXi をインストールする手順についての自分用メモ。

基本的には、https://flings.vmware.com/usb-network-native-driver-for-esxi をダウンロードしてインストールするだけ。

ドライバのダウンロード

https://flings.vmware.com/usb-network-native-driver-for-esxi からバージョンが一致するドライバをダウンロードする。
7.0.0, 7.0.1, 6.7.0, 6.5.0がある。

対応するNICは、ASIX USB 2.0 gigabit network ASIX88178a, ASIX USB 3.0 gigabit network ASIX88179, Realtek USB 3.0 gigabit network RTL8152/RTL8153 and Aquantia AQC111Uなど。

ダウンロードしたファイルを、datastoreにアップロードする。sshでログインしてwgetでもよい。

ls -al /vmfs/volumes
mkdir /vmfs/volumes/datastore2/drivers
cd /vmfs/volumes/datastore2/drivers
wget http://download3.vmware.com/software/vmw-tools/USBNND/ESXi670-VMKUSB-NIC-FLING-39203948-offline_bundle-16780994.zip
# or scpする
scp ESXi670-VMKUSB-NIC-FLING-39203948-offline_bundle-16780994.zip  root@192.0.2.100:/vmfs/volumes/datastore2/drivers

※datastoreのパスは環境によって違うので確認すること。

インストール

esxcli software vib install -d /vmfs/volumes/datastore2/drivers/ESXi670-VMKUSB-NIC-FLING-39203948-offline_bundle-16780994.zip
[root@hecatoncheir:/vmfs/volumes/5b529a12-e4a52c34-658e-d45ddf1a2365/drivers] esxcli software vib install -d /vmfs/volumes/datastore2/drivers/ESXi670-VMKUSB-NI
C-FLING-39203948-offline_bundle-16780994.zip
Installation Result
   Message: The update completed successfully, but the system needs to be rebooted for the changes to be effective.
   Reboot Required: true
   VIBs Installed: VMW_bootbank_vmkusb-nic-fling_2.1-6vmw.670.2.48.39203948
   VIBs Removed: VMW_bootbank_vmkusb-nic-fling_2.1-4vmw.670.2.48.33242987
   VIBs Skipped:
[root@hecatoncheir:/vmfs/volumes/5b529a12-e4a52c34-658e-d45ddf1a2365/drivers]

Reboot Required: trueとなっていたら、ホストを再起動する。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0