mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-12-04 21:46:14 +02:00
ar71xx: create TL-WR{841N-v1,941ND} network config from uci-defaults
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28824 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
b9aab9ba7e
commit
c46cd218f0
@ -1,20 +0,0 @@
|
|||||||
config interface loopback
|
|
||||||
option ifname lo
|
|
||||||
option proto static
|
|
||||||
option ipaddr 127.0.0.1
|
|
||||||
option netmask 255.0.0.0
|
|
||||||
|
|
||||||
config interface mac0
|
|
||||||
option ifname eth0
|
|
||||||
option proto none
|
|
||||||
|
|
||||||
config interface lan
|
|
||||||
option ifname "lan1 lan2 lan3 lan4"
|
|
||||||
option type bridge
|
|
||||||
option proto static
|
|
||||||
option ipaddr 192.168.1.1
|
|
||||||
option netmask 255.255.255.0
|
|
||||||
|
|
||||||
config interface wan
|
|
||||||
option ifname wan
|
|
||||||
option proto dhcp
|
|
@ -1,20 +0,0 @@
|
|||||||
config interface loopback
|
|
||||||
option ifname lo
|
|
||||||
option proto static
|
|
||||||
option ipaddr 127.0.0.1
|
|
||||||
option netmask 255.0.0.0
|
|
||||||
|
|
||||||
config interface eth
|
|
||||||
option ifname eth0
|
|
||||||
option proto none
|
|
||||||
|
|
||||||
config interface lan
|
|
||||||
option ifname "lan1 lan2 lan3 lan4"
|
|
||||||
option type bridge
|
|
||||||
option proto static
|
|
||||||
option ipaddr 192.168.1.1
|
|
||||||
option netmask 255.255.255.0
|
|
||||||
|
|
||||||
config interface wan
|
|
||||||
option ifname wan
|
|
||||||
option proto dhcp
|
|
@ -13,6 +13,17 @@ set network.loopback.netmask='255.0.0.0'
|
|||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
set_interface_raw() {
|
||||||
|
local cfg=$1
|
||||||
|
local ifname=$2
|
||||||
|
|
||||||
|
uci batch <<EOF
|
||||||
|
set network.$cfg='interface'
|
||||||
|
set network.$cfg.ifname='$ifname'
|
||||||
|
set network.$cfg.proto='none'
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
set_interface_lan() {
|
set_interface_lan() {
|
||||||
local ifname=$1
|
local ifname=$1
|
||||||
|
|
||||||
@ -99,6 +110,12 @@ routerstation-pro)
|
|||||||
add_switch_vlan "switch0" "1" "0 1 2 3 4"
|
add_switch_vlan "switch0" "1" "0 1 2 3 4"
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
tl-wr841n-v1|\
|
||||||
|
tl-wr941nd)
|
||||||
|
set_interface_raw "eth" "eth0"
|
||||||
|
set_interfaces_lan_wan "lan1 lan2 lan3 lan4" "wan"
|
||||||
|
;;
|
||||||
|
|
||||||
aw-nr580 |\
|
aw-nr580 |\
|
||||||
bullet-m |\
|
bullet-m |\
|
||||||
eap7660d |\
|
eap7660d |\
|
||||||
|
Loading…
Reference in New Issue
Block a user