You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
293 B
16 lines
293 B
#!/bin/sh
|
|
|
|
uci batch <<__EOF__
|
|
|
|
delete network.lan
|
|
|
|
set network.lan=interface
|
|
set network.lan.type=bridge
|
|
set network.lan.ifname="eth0 eth1"
|
|
set network.lan.proto=static
|
|
set network.lan.ipaddr="192.168.1.1"
|
|
set network.lan.netmask="255.255.255.0"
|
|
set network.lan.nat=1
|
|
|
|
commit network
|
|
__EOF__
|
|
|