要求:
获取linux的mac地址,并生成mac地址给虚拟机使用。
1、获取mac地址
def get_local_mac(): return uuid.uuid1().hex[-12:]
2、生成mac地址
mac地址是有一定规范的:前六位为厂家标示,后六位随机。
为了标示同一台物理上的虚拟机,所以选择后四位随机生成。
def make_mac(local_mac): import random #random.randint(0x00, 0x7f) mac = [random.randint(0x00, 0xff), random.randint(0x00, 0xff) ] s = [local_mac[0:2], local_mac[2:4],local_mac[4:6],local_mac[6:8]] for item in mac: s.append(str("%02x" % item)) return ( ':'.join(s) )
调用示例:
mac=get_local_mac() print(mac) print(make_mac(mac))
简单而实用的python代码,小而精练的python 教程,呵呵,希望对大家有所帮助。