Skip to content

Commit

Permalink
Use a high number for our default mac addresses
Browse files Browse the repository at this point in the history
 * FE has the locally administered bit set and multicast bit unset
 * fixes bug 921838

Change-Id: Id33a06985c4150da4c5367c700f894590fdac2b9
  • Loading branch information
vishvananda committed Mar 8, 2012
1 parent 0b59188 commit a186df0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nova/utils.py
Expand Up @@ -1571,7 +1571,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)]
Expand Down

0 comments on commit a186df0

Please sign in to comment.