mirror of https://github.com/hak5/openwrt.git
ramips: fix MikroTik 750Gr3 LAN ports names
They are labeled as LAN2..LAN5 instead of LAN1..LAN4 Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>master
parent
53b66248f4
commit
c24d6111f4
|
@ -145,22 +145,22 @@
|
||||||
|
|
||||||
port@1 {
|
port@1 {
|
||||||
status = "okay";
|
status = "okay";
|
||||||
label = "lan1";
|
label = "lan2";
|
||||||
};
|
};
|
||||||
|
|
||||||
port@2 {
|
port@2 {
|
||||||
status = "okay";
|
status = "okay";
|
||||||
label = "lan2";
|
label = "lan3";
|
||||||
};
|
};
|
||||||
|
|
||||||
port@3 {
|
port@3 {
|
||||||
status = "okay";
|
status = "okay";
|
||||||
label = "lan3";
|
label = "lan4";
|
||||||
};
|
};
|
||||||
|
|
||||||
port@4 {
|
port@4 {
|
||||||
status = "okay";
|
status = "okay";
|
||||||
label = "lan4";
|
label = "lan5";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -39,6 +39,9 @@ ramips_setup_interfaces()
|
||||||
ubnt,unifi-nanohd)
|
ubnt,unifi-nanohd)
|
||||||
ucidef_set_interface_lan "lan"
|
ucidef_set_interface_lan "lan"
|
||||||
;;
|
;;
|
||||||
|
mikrotik,rb750gr3)
|
||||||
|
ucidef_set_interfaces_lan_wan "lan2 lan3 lan4 lan5" "wan"
|
||||||
|
;;
|
||||||
ubiquiti,edgerouterx|\
|
ubiquiti,edgerouterx|\
|
||||||
ubiquiti,edgerouterx-sfp)
|
ubiquiti,edgerouterx-sfp)
|
||||||
ucidef_set_interface_lan "eth0 eth1 eth2 eth3 eth4"
|
ucidef_set_interface_lan "eth0 eth1 eth2 eth3 eth4"
|
||||||
|
|
Loading…
Reference in New Issue