1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-03-03 15:57:56 +02:00

fix ppp keepalive setting (#1071)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5875 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2006-12-20 05:12:49 +00:00
parent 7070b29380
commit 1724fa576f

View File

@ -21,13 +21,13 @@ start_pppd() {
config_get username "$cfg" username
config_get password "$cfg" password
config_get keepalive "$cfg" keepalive
interval="${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 $interval 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 \