You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
647 B
Plaintext
13 lines
647 B
Plaintext
1 year ago
|
uci -q set wizard.default.wan_proto="$(uci -q get network.wan.proto)"
|
||
|
uci -q set wizard.default.wan_pppoe_user="$(uci -q get network.wan.username)"
|
||
|
uci -q set wizard.default.wan_pppoe_pass="$(uci -q get network.wan.password)"
|
||
|
uci -q set wizard.default.lan_ipaddr="$(uci -q get network.lan.ipaddr)"
|
||
|
uci -q set wizard.default.lan_netmask="$(uci -q get network.lan.netmask)"
|
||
|
uci -q set wizard.default.lan_gateway="$(uci -q get network.lan.gateway)"
|
||
|
uci -q set wizard.default.lan_dns="$(uci -q get network.lan.dns)"
|
||
|
[ "$(uci -q get dhcp.lan.ignore)" ] && uci -q set wizard.default.dhcp="0" || uci -q del wizard.default.dhcp
|
||
|
|
||
|
uci commit wizard
|
||
|
|
||
|
exit 0
|