diff options
| author | Raylynn Knight | 2026-02-07 00:44:13 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2026-02-08 18:08:31 +0000 |
| commit | 97b0379514c233bd48f5b9815562c7d1413831b6 (patch) | |
| tree | 68fdf706d040dccbca8fe6b70555a380900f500b | |
| parent | 4ab5fcc04f7a39cc0a8a7294d825be32ddab1113 (diff) | |
| download | openwrt-97b0379514c233bd48f5b9815562c7d1413831b6.tar.gz | |
x86: base-files add support for Sophos 125r3/125r3w
The Sophos SG/XG-125 revision 3 like the already supported SG/XG-135
revision 3 has odd numbering of eth ports where the WAN port (as marked
on the case) is: `eth6` and `eth0`, `eth1`, `eth2`, `eth3`, `eth5`, `eth7`,
`eth8` are LAN ports.
Port `eth4` confirmed to be the SFP port.
Signed-off-by: Raylynn Knight <rayknight@me.com>
Link: https://github.com/openwrt/openwrt/pull/21914
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/x86/base-files/etc/board.d/02_network | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/linux/x86/base-files/etc/board.d/02_network b/target/linux/x86/base-files/etc/board.d/02_network index 11a9bf8a14..985c2b79aa 100644 --- a/target/linux/x86/base-files/etc/board.d/02_network +++ b/target/linux/x86/base-files/etc/board.d/02_network @@ -121,6 +121,8 @@ sophos-sg-135r2|sophos-xg-135r2| \ sophos-sg-135wr2|sophos-xg-135wr2) ucidef_set_interfaces_lan_wan "eth0 eth2 eth3 eth4 eth5 eth6 eth7" "eth1" ;; +sophos-sg-125r3|sophos-xg-125r3| \ +sophos-sg-125wr3|sophos-xg-125wr3| \ sophos-sg-135r3|sophos-xg-135r3| \ sophos-sg-135wr3|sophos-xg-135wr3) ucidef_set_interfaces_lan_wan "eth0 eth1 eth2 eth3 eth5 eth7 eth8" "eth6" |