[package] switch:
[openwrt/svn-archive/archive.git] / target / linux / brcm-2.4 / base-files / etc / init.d / netconfig
index d63f17b124e0b35309f0956278c4c31eb47bf3d8..0e014b625c87d078407371c1009fd6347c1bb1c9 100755 (executable)
@@ -14,11 +14,12 @@ start() {
                                        case "$1" in
                                        vlan[0-9]|vlan1[0-5])
                                                local id="${1#vlan}"
+                                               local ports="${2%\*}"
                                                append batch "delete network.eth0.${1}${N}"
                                                append batch "set network.eth0_${id}=switch_vlan${N}"
                                                append batch "set network.eth0_${id}.device=eth0${N}"
                                                append batch "set network.eth0_${id}.vlan=${id}${N}"
-                                               append batch "set network.eth0_${id}.ports='${2}'${N}"
+                                               append batch "set network.eth0_${id}.ports='${ports}'${N}"
                                        ;;
                                        esac
                                }
@@ -107,7 +108,7 @@ start() {
                        c["vlan0ports"] = ""
                        c["vlan1ports"] = ""
                }
-               if (model == "ASUS WL-500g") {
+               if ((model == "ASUS WL-500g") || (model == "Microsoft MN-700")) {
                        c["wan_ifname"] = "eth1"
                        c["lan_ifname"] = "eth0"
                }
@@ -207,6 +208,12 @@ start() {
                        c["vlan0ports"] = "0 1 2 3 4 5u"
                        c["vlan1ports"] = ""
                }
+               if (model == "OvisLink WL-1600GL") {
+                       c["lan_ifname"] = "eth0.0"
+                       c["wan_ifname"] = "eth0.1"
+                       c["vlan0ports"] = "0 1 2 3 5*"
+                       c["vlan1ports"] = "4 5"
+               }
 
                if (c["vlan0ports"] || c["vlan1ports"]) {
                        print "#### VLAN configuration "