VMware Cloud Community
scotty_p
Enthusiast
Enthusiast
Jump to solution

Change VM MAC Address


We just P2V'd a server into an ESXi 5.1 cluster and I need to keep the original MAC address for licensing reasons.I added the lines below to the .vmx file.

ethernet0.checkMACAddress = "false"

ethernet0.addressType = "static"

ethernet0.address = 00-24-E8-7A-51-B0

But when I power on the VM, I get this error. How can I change the MAC to keep the original MAC from the physical server?

An error was received from the ESX host while powering on VM servername.

Failed to start the virtual machine.

Module DevicePowerOn power on failed.

Could not set up "macAddress" for ethernet0.

Invalid MAC address specified.

"00-24-E8-7A-51-B0" is not a valid Ethernet address.

Thanks,

Scott

Reply
0 Kudos
1 Solution

Accepted Solutions
tomtom901
Commander
Commander
Jump to solution

Try it like this:

ethernet0.address = 00:24:E8:7A:51:B0

View solution in original post

Reply
0 Kudos
3 Replies
tomtom901
Commander
Commander
Jump to solution

Try it like this:

ethernet0.address = 00:24:E8:7A:51:B0

Reply
0 Kudos
scotty_p
Enthusiast
Enthusiast
Jump to solution

Sorry, can you explain how that's different? It looks the same to me.

Thanks.

Reply
0 Kudos
scotty_p
Enthusiast
Enthusiast
Jump to solution

Ahhhh. I see : instead of -

That did it. Thanks a lot for your help!!!

Reply
0 Kudos