使用Quectel标准模组,在Linux Host AP生成的网卡,网卡的MAC地址奇奇怪怪的?
其实不用关心MAC地址,MAC地址实际传输中其实没什么用的,网卡工作在raw ip mode。
普通网卡
ifconfig wwan0.1 hw ether xx:xx:xx:xx:xx:xx
改驱动
static const struct net_device_ops 中加上
+ .ndo_set_mac_address = qmi_wwan_mac_addr,
+ .ndo_validate_addr = eth_validate_addr,