如何使用IP地址获取MAC地址,以下代码无法正常工作
packet = ARP(op=ARP.who_has,psrc="some ip",pdst = ip)
response = srp(packet)
return response[ARP].hwsrc
答案 0 :(得分:0)
如果你正在使用python 3
import uuid
def get_mac():
mac_num = hex(uuid.getnode()).replace('0x', '').upper()
mac = '-'.join(mac_num[i: i + 2] for i in range(0, 11, 2))
return mac
print (get_mac())
如果你正在使用python 2
import uuid
def get_mac():
mac_num = hex(uuid.getnode()).replace('0x', '').upper()
mac = '-'.join(mac_num[i : i + 2] for i in range(0, 11, 2))
return mac
print get_mac()