mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-21 03:13:17 +00:00
We want wan and lan to be a bridge with vlan_filtering enabled. Signed-off-by: John Crispin <john@phrozen.org>
7 lines
124 B
Bash
7 lines
124 B
Bash
#!/bin/sh
|
|
|
|
uci set network.wan.type=bridge
|
|
uci set network.wan.vlan_filtering=1
|
|
uci set network.lan.vlan_filtering=1
|
|
exit 0
|