1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-06 03:01:18 +02:00

add new ppp timeout/redial stuff from [2433] to pptp init script

SVN-Revision: 2436
This commit is contained in:
Felix Fietkau 2005-11-11 21:15:33 +00:00
parent 8a53163b23
commit 229e88cb3e

@ -17,10 +17,16 @@ while :; do
IP=$(nvram get pptp_server_ip)
USERNAME=$(nvram get ppp_username)
PASSWORD=$(nvram get ppp_passwd)
REDIAL=$(nvram get ppp_redialperiod)
REDIAL=${REDIAL:+lcp-echo-interval $REDIAL}
IDLETIME=$(nvram get ppp_idletime)
IDLETIME=${IDLETIME:+lcp-echo-failure $IDLETIME}
KEEPALIVE=$(nvram get ppp_redialperiod)
KEEPALIVE=${KEEPALIVE:+lcp-echo-interval 10 lcp-echo-failure $KEEPALIVE}
DEMAND=$(nvram get ppp_demand)
case "$DEMAND" in
on|1|enabled)
DEMAND=$(nvram get ppp_idletime)
DEMAND=${IDLETIME:+demand idle $IDLETIME}
;;
*) DEMAND="";;
esac
MTU=$(nvram get ppp_mtu)
MTU=${MTU:-1452}
@ -42,9 +48,8 @@ while :; do
ipparam "$type" \
user "$USERNAME" \
password "$PASSWORD" \
mtu $MTU \
mru $MTU \
$IDLETIME \
$REDIAL
mtu $MTU mru $MTU \
$DEMAND \
$KEEPALIVE
done &