Saturday, 28 September 2019

Changing E1000 into VMXNET3 without changing a MAC address


Method 1 :
--------------
Note down MAK address and IP Configuration of existing E1000 NIC
Remove Adapter
add VMXNET3 adapter
add the old MAC




Method 2 : PowerCLI
-------------------
Power OFF VM

PowerCLI
Connect-VIServer -Server XXX.XXX.XXX.XXX -User YYYYYYY -Password ZZZZZZZZ

List VM: SRV1, NIC type:

PowerCLI C:\> Get-VM SRV1 | get-networkadapter

Change VM: SRV1, NIC type to VMXNET3:

PowerCLI C:\> get-vm SRV1 | Get-NetworkAdapter | set-networkadapter -type vmxnet3 -confirm:$false

This procedure preserves the original MAC address, but NIC adapter changes.

No comments:

Post a Comment

Updating Softwares of Computer

  open Power Shell as Administrator type  winget upgrade will show the list of available updates  type winget upgrade --ALL   to auto doownl...