1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 03:30:37 +02:00

allow the user to override the lcp echo interval in ppp network configurations

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4780 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2006-09-12 00:31:37 +00:00
parent b463ec4fb9
commit 1da81d312c

View File

@ -13,10 +13,13 @@ start_pppd() {
config_get username "$cfg" username
config_get password "$cfg" password
config_get keepalive "$cfg" keepalive
interval="${keepalive%%*,}"
[ "$interval" != "$keepalive" ] || interval=5
config_get demand "$cfg" demand
[ -n "$demand" ] && echo "nameserver 1.1.1.1" > /tmp/resolv.conf
/usr/sbin/pppd "$@" \
${keepalive:+lcp-echo-interval 5 lcp-echo-failure $keepalive} \
${keepalive:+lcp-echo-interval $interval lcp-echo-failure ${keepalive##,*}} \
${demand:+precompiled-active-filter /etc/ppp/filter demand idle }${demand:-persist} \
usepeerdns \
defaultroute \