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.
18 lines
249 B
18 lines
249 B
12 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (C) 2013 OpenWrt.org
|
||
|
#
|
||
|
|
||
|
[ -e /etc/config/network ] && exit 0
|
||
|
|
||
|
touch /etc/config/network
|
||
|
|
||
|
. /lib/functions/uci-defaults.sh
|
||
|
|
||
|
ucidef_set_interface_loopback
|
||
|
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
||
|
|
||
|
uci commit network
|
||
|
|
||
|
exit 0
|