Merge "Use a high number for our default mac addresses"

This commit is contained in:
Jenkins
2012-03-10 04:18:07 +00:00
committed by Gerrit Code Review

View File

@@ -1567,7 +1567,7 @@ def service_is_up(service):
def generate_mac_address():
"""Generate an Ethernet MAC address."""
mac = [0x02, 0x16, 0x3e,
mac = [0xfe, 0x16, 0x3e,
random.randint(0x00, 0x7f),
random.randint(0x00, 0xff),
random.randint(0x00, 0xff)]