allow the user to override the lcp echo interval in ppp network configurations
SVN-Revision: 4780
This commit is contained in:
parent
f70d9decda
commit
00c9327e77
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user