The Task
You want to upgrade your VM NIC from E1000 or VMXNET to VMXNET3. There is a manual way to do this but it is quicker in Powershell
Instructions
- Power off the VM
- Log into Powershell – Connect-VIServer – Enter credentials if required
- Run the following command
- get-vm vmname | get-networkadapter | set-networkadapter -type “vmxnet3”
- If you have more than one adapter, it will ask you about all of them. Select Y or N as required
- Check in the VM Settings that the NIC Type has changed to VMXNET3
- Power on VM
- The IP Address settings that were originally set should still be there
The Manual Way (Slower)
- Power down machine
- Right click on machine and remove from inventory
- Go to machine VMX file in the datastore and upload to desktop
- Edit the vm.vmx file to ethernet0.virtualDev = “vmxnet3”
- Rename the original vm.vmx file in the datastore to vm.vmx.bak
- Upload the edited vm.vmx file to the datastore
- Right click and add vm.vmx file to inventory
- Power on machine
- Check IP Address
Qs and As
[Q]
I have run this command while the test vm is powered off and then powered up again and the NIC has changed in the VM settings and within the Wndows 2008 R2 VM however it does not retain the IP Address. Is this standard behaviour or do we need to re-enter the IP Address?
[A]
Yes this is standard behaviour as once the NIC has been changed it is seen as a new device so a new IP will need to be assigned.
[Q]
Can this Powershell command be run while the VM is running and if so will we get the same thing where it will change the NIC type fine but not retain the IP Address?
[A]
No the command will not work while the VM is running. You can “add” a new adapter while the VM is running but to change the adapter type from E1000 to VMXNET3 the VM need to be powered off
Leave a Reply