Load/reload VMXNET drivers on ESX(i) and vSphere


/ Published in: Bash
Save to your folder(s)

Load/reload VMXNET drivers on ESX(i) and vSphere hypervisor console. Don't forget to install vmtools first.


Copy this code and paste it in your HTML
  1. #!/bin/sh
  2. /etc/init.d/networking stop
  3. rmmod pcnet32
  4. rmmod vmxnet
  5. depmod -a
  6. modprobe vmxnet
  7. /etc/init.d/networking start
  8. exit $?

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.