我正试图通过python获取几个eternet mac地址
我尝试了这个python代码,它可以获得第一个mac地址。
import getmac
print(getmac.get_mac_address())
在我的电脑里,我安装了虚拟盒子,它安装了2个虚拟永恒适配器。我想获得所有的mac地址列表,其中包括Python的虚拟盒(或Hyper-V(mac地址。
我正在使用Windows10 x64。
真诚的Ryan。
使用netifaces
:
import netifaces
iface = netifaces.ifaddresses('YOUR NETWORK INTERFACE NAME')[netifaces.AF_LINK]
print(iface['addr'])
import netifaces
for nic in netifaces.interfaces():
iface = netifaces.ifaddresses(nic)[netifaces.AF_LINK]
if len(iface[0]['addr']) > 0:
print("mac address: ", iface[0]['addr'])
谢谢,瓦西夫·哈桑。