1 #!/bin/sh /etc/rc.common
2 # Copyright (C) 2006 OpenWrt.org
7 [ -e /etc
/config
/network
] && exit 0
12 if grep -E 'mtd0: 000(6|a)0000' /proc
/mtd
2>&- >&-; then
14 echo boardtype
=wgt634u
16 strings /dev
/mtdblock
/3
19 function p(cfgname, name) {
20 if (c[name] != "") print " option " cfgname " \"" c[name] "\""
25 c["lan_ifname"]="eth0.0"
26 c["wan_ifname"]="eth0.1"
27 c["vlan0ports"]="1 2 3 4 5*"
31 ($1 == "boardnum") || ($1 == "boardtype") || ($1 == "boardflags") {
37 if (nvram["boardtype"] == "bcm94710dev") {
39 if (nvram["boardnum"] == "asusX") {
40 c["lan_ifname"]="eth0 eth1" # FIXME
44 if (nvram["boardtype"] == "wgt634u") {
45 c["vlan0ports"] = "0 1 2 3 5*"
46 c["vlan1ports"] = "4 5"
48 if ((nvram["boardtype"] == "0x0467") || (nvram["boardtype"] == "0x042f")) {
49 c["vlan0ports"] = "0 1 2 3 5*"
50 c["vlan1ports"] = "4 5"
54 if ((nvram["boardnum"] == "2") || \
55 (nvram["boardnum"] == "1024")) {
56 c["lan_ifname"]="eth0"
60 print "#### VLAN configuration "
61 print "config switch eth0"
62 p("vlan0", "vlan0ports")
63 p("vlan1", "vlan1ports")
66 print "#### Loopback configuration"
67 print "config interface loopback"
68 print " option ifname \"lo\""
69 print " option proto static"
70 print " option ipaddr 127.0.0.1"
71 print " option netmask 255.0.0.0"
74 print "#### LAN configuration"
75 print "config interface lan"
76 print " option type bridge"
77 p("ifname", "lan_ifname")
78 print " option proto static"
79 print " option ipaddr 192.168.1.1"
80 print " option netmask 255.255.255.0"
83 print "#### WAN configuration"
84 print "config interface wan"
85 p("ifname", "wan_ifname")
86 print " option proto dhcp"
87 }' > /etc
/config
/network
This page took 0.049141 seconds and 5 git commands to generate.