diff options
author | David Bauer <mail@david-bauer.net> | 2020-03-19 10:33:20 +0100 |
---|---|---|
committer | David Bauer <mail@david-bauer.net> | 2020-03-22 02:08:02 +0100 |
commit | 280868e54d52c6d9bca987dc476dd0adac2922ab (patch) | |
tree | c989ae93b12a3218b5b5ea3a30a6621374a92193 /target/linux/ath79 | |
parent | be4ed1db18e68cc57f03788b4529afbbf629411c (diff) | |
download | upstream-280868e54d52c6d9bca987dc476dd0adac2922ab.tar.gz upstream-280868e54d52c6d9bca987dc476dd0adac2922ab.tar.bz2 upstream-280868e54d52c6d9bca987dc476dd0adac2922ab.zip |
ath79: align Ubiquiti AC Pro ethernet map to factory
The Uniquiti AC Pro and Ubiquiti AC Mesh Pro currently have the
"Primary" and "Secondary" ethernet ports configured to offer LAN as well
as WAN. However, Uiquiti describes the following behavior for the
devices Ethernet ports:
> Secondary UniFi Access Point (UAP) Ethernet ports don't
> provide PoE passthrough (to run current to a second powered
> device), but they do support data passthrough.
> It serves as a bridged interface between main / secondary
> Ethernet port.
To reduce confusion for users (as LAN and WAN functionality is not
visible on the device itself), configure both ports to offer LAN
functionality. Users can still configure a WAN interface on a port they
are able to choose.
CC: Lucian Cristian <lucian.cristian@gmail.com>
Reported-by: Florian Klink <flokli@flokli.de>
Signed-off-by: David Bauer <mail@david-bauer.net>
Diffstat (limited to 'target/linux/ath79')
-rwxr-xr-x | target/linux/ath79/generic/base-files/etc/board.d/02_network | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/target/linux/ath79/generic/base-files/etc/board.d/02_network b/target/linux/ath79/generic/base-files/etc/board.d/02_network index cb84d31c01..9db21caad8 100755 --- a/target/linux/ath79/generic/base-files/etc/board.d/02_network +++ b/target/linux/ath79/generic/base-files/etc/board.d/02_network @@ -185,8 +185,6 @@ ath79_setup_interfaces() ;; nec,wg1200cr|\ ubnt,nanostation-ac|\ - ubnt,unifiac-mesh-pro|\ - ubnt,unifiac-pro|\ yuncore,a782|\ yuncore,xd4200) ucidef_add_switch "switch0" \ @@ -307,6 +305,11 @@ ath79_setup_interfaces() ucidef_add_switch "switch0" \ "0@eth0" "5:lan" "1:wan" ;; + ubnt,unifiac-mesh-pro|\ + ubnt,unifiac-pro) + ucidef_add_switch "switch0" \ + "0@eth0" "2:lan:1" "3:lan:2" + ;; zbtlink,zbt-wd323|\ xiaomi,mi-router-4q) ucidef_set_interface_wan "eth1" |