1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-19 00:38:57 +03:00
openwrt-xburst/target/linux/x86/geos/base-files/etc/uci-defaults/network

17 lines
293 B
Plaintext
Raw Normal View History

#!/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__