1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00
* adds sane default uci environment
* adds sane default package selection

contributed by Philip Prindeville



git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25065 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
blogic
2011-01-22 22:43:51 +00:00
parent 98ec8455f2
commit a59a56e424
4 changed files with 70 additions and 3 deletions

View File

@@ -0,0 +1,21 @@
#!/bin/sh
uci batch <<__EOF__
set network.wan=interface
set network.wan.proto='pppoa'
set network.wan.atmdev=0
set network.wan.card=0
set network.wan.vpi=0
set network.wan.vci=32
set network.wan.encaps='vc'
set network.wan.username='username@myisp.net'
set network.wan.password='password'
set network.wan.keepalive=3
set network.wan.defaultroute=1
set network.wan.peerdns=1
set network.wan.pppd_options='kdebug 1 debug noccp'
set network.wan.auto=1
commit network
__EOF__