Hello Everyone,
I'm currently working with two EC200A-CN LTE modems attached to my router via PCIe interfaces. After connecting, they display random MAC addresses for both USB interfaces (see attached image).
I would like to assign specific MAC addresses from my pool to these interfaces. For reference, I've successfully set MAC addresses for other Ethernet ports and WLAN in the DTS file as shown below:
&switch0 {
ports {
port@0 {
status = "okay";
label = "lan1";
mtd-mac-address = <&factory 0xe000>;
mtd-mac-address-increment = <4>;
};
port@1 {
status = "okay";
label = "lan2";
mtd-mac-address = <&factory 0xe000>;
mtd-mac-address-increment = <5>;
};
port@2 {
status = "okay";
label = "lan3";
mtd-mac-address = <&factory 0xe000>;
mtd-mac-address-increment = <6>;
};
port@3 {
status = "okay";
label = "lan4";
mtd-mac-address = <&factory 0xe000>;
mtd-mac-address-increment = <7>;
};
port@4 {
status = "okay";
label = "wan";
mtd-mac-address = <&factory 0xe000>;
mtd-mac-address-increment = <1>;
};
};
};
I'm seeking suggestions on how to apply a similar configuration for the LTE modems connected via PCIe. Any advice or guidance would be greatly appreciated!
Thank you in advance!