From Boldcore's wiki
Jump to: navigation, search
(Created page with "==Intro== In vmware ESXi You can get some auto-generated address when creating new VM NIC. ==The weird issue== This works just fine, unless You want to import the VM on diffe...")
 
Line 18: Line 18:
  
 
*WHere X is the eth number.
 
*WHere X is the eth number.
 +
</pre>
 +
 +
Explicitly set the MAC:
 +
 +
<pre>
 +
ethernet0.address = "00:0c:29:00:00:00"
 +
ethernetX.address = "00:00:00:00:00:00"
 
</pre>
 
</pre>

Revision as of 08:10, 25 April 2017

Intro

In vmware ESXi You can get some auto-generated address when creating new VM NIC.

The weird issue

This works just fine, unless You want to import the VM on different host. Then, an error message will appear, saying that the MAC address is reserved.

Solution

Navigate to .vmx file of the VM. Add this to the end of file:

ethernet0.checkMACAddress = "FALSE"
ethernet1.checkMACAddress = "FALSE"

ethernetX.checkMACAddress = "FALSE"

*WHere X is the eth number.

Explicitly set the MAC:

ethernet0.address = "00:0c:29:00:00:00"
ethernetX.address = "00:00:00:00:00:00"