mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Signed-off-by: Rafał Miłecki <zajec5@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@43754 3c298f89-4303-0410-b956-a3cf2f4a3e73
31 lines
662 B
Bash
31 lines
662 B
Bash
#!/bin/sh
|
|
#
|
|
# Copyright (C) 2011 OpenWrt.org
|
|
#
|
|
|
|
[ -e /etc/config/network ] && exit 0
|
|
|
|
touch /etc/config/network
|
|
|
|
. /lib/functions/uci-defaults.sh
|
|
|
|
ucidef_set_interface_loopback
|
|
|
|
ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2"
|
|
ucidef_add_switch "switch0" "1" "1"
|
|
|
|
vlan1ports="$(nvram get vlan1ports)"
|
|
vlan2ports="$(nvram get vlan2ports)"
|
|
if echo "$vlan1ports" | egrep -q "^1 2 3 4 5" && \
|
|
echo "$vlan2ports" | egrep -q "^0 5"; then
|
|
ucidef_add_switch_vlan "switch0" "1" "1 2 3 4 5t"
|
|
ucidef_add_switch_vlan "switch0" "2" "0 5t"
|
|
else
|
|
ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 5t"
|
|
ucidef_add_switch_vlan "switch0" "2" "4 5t"
|
|
fi
|
|
|
|
uci commit network
|
|
|
|
exit 0
|