1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 17:28:08 +00:00

Change how to generate random MAC addresses

This commit is contained in:
grossmj 2021-07-25 16:03:54 +09:30
parent cdedd53339
commit 0ecea8ffbb

View File

@ -615,7 +615,7 @@ class QemuVM(BaseNode):
if not mac_address:
# use the node UUID to generate a random MAC address
self._mac_address = "0c:%s:%s:%s:%s:00" % (self.project.id[-4:-2], self.project.id[-2:], self.id[-4:-2], self.id[-2:])
self._mac_address = "0c:%s:%s:%s:00:00" % (self.id[2:4], self.id[4:6], self.id[6:8])
else:
self._mac_address = mac_address