2 # Copyright (C) 2006 OpenWrt.org
4 [ -e /etc
/config
/network
] && exit 0
9 if grep -E 'mtd0: 000(6|a)0000' /proc
/mtd
2>&- >&-; then
11 echo boardtype
=wgt634u
13 strings /dev
/mtdblock
/3
16 function p(cfgname, name) {
17 if (c[name] != "") print " option " cfgname " \"" c[name] "\""
22 c["lan_ifname"]="eth0.0 wl0"
23 c["wan_ifname"]="eth0.1"
24 c["vlan0ports"]="1 2 3 4 5*"
28 ($1 == "boardnum") || ($1 == "boardtype") || ($1 == "boardflags") {
34 if (nvram["boardtype"] == "bcm94710dev") {
36 if (nvram["boardnum"] == "asusX") {
37 c["lan_ifname"]="eth0 eth1 wl0" # FIXME
41 if (nvram["boardtype"] == "wgt634u") {
42 c["vlan0ports"] = "0 1 2 3 5*"
43 c["vlan1ports"] = "4 5"
44 c["lan_ifname"] = "eth0.0 ath0"
46 if ((nvram["boardtype"] == "0x0467") || (nvram["boardtype"] == "0x042f")) {
47 c["vlan0ports"] = "0 1 2 3 5*"
48 c["vlan1ports"] = "4 5"
52 if ((nvram["boardnum"] == "2") || \
53 (nvram["boardnum"] == "1024")) {
54 c["lan_ifname"]="eth0 wl0"
58 print "#### VLAN configuration "
59 print "config switch eth0"
60 p("vlan0", "vlan0ports")
61 p("vlan1", "vlan1ports")
64 print "#### LAN configuration"
65 print "config interface lan"
66 print " option type bridge"
67 p("ifnames", "lan_ifname")
68 print " option proto static"
69 print " option ipaddr 192.168.1.1"
70 print " option netmask 255.255.255.0"
73 print "#### WAN configuration"
74 print "config interface wan"
75 p("ifname", "wan_ifname")
76 print " option proto dhcp"
78 ' > /etc
/config
/network
This page took 0.05274 seconds and 5 git commands to generate.