其它网上方案
adb shell cat /sys/class/net/wlan0/address
# 结果
78:64:e6:e3:ba:b0
注意net文件夹下边有很多网络信息,如果找不到wlan0,可以查看下wlan0是否存在
adb shell ls /sys/class/net
# 结果
ifb0
ifb1
lo
p2p0
sit0
tunl0
wlan0
我的方案
通过 adb shell getpro
查看设备信息,然后通过grep
查找相关信息
adb shell getprop | grep mac
# 结果
[init.svc.gmt_get_mac]: [stopped]
[init.svc.xf_mac_set]: [stopped]
[persist.gmt.custom.mac]: [78:64:e6:e3:ba:b0]
[persist.sys.mac]: [7864e6e3bab0]
[ro.boottime.gmt_get_mac]: [5205990461]
[ro.boottime.xf_mac_set]: [5229156538]
[ro.factorymode.macsn]: [false]
[ro.gmt.mac]: [78:64:e6:e3:ba:b0]
网友评论