1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

Get MAC OUI from settings.py

This commit is contained in:
MisterBlueBear 2023-10-18 17:34:40 -04:00
parent 58e215f755
commit 5a211c0c56
3 changed files with 11 additions and 5 deletions

View file

@ -196,7 +196,7 @@ def get_dhcp_mac_address(vname):
def get_random_mac_address():
mac = "52:54:00:%02x:%02x:%02x" % (
mac = settings.MAC_OUI + ":%02x:%02x:%02x" % (
random.randint(0x00, 0xFF),
random.randint(0x00, 0xFF),
random.randint(0x00, 0xFF),