fix ppp reconnect (add persist option)
SVN-Revision: 674
This commit is contained in:
parent
6362e54954
commit
833f90e2f0
1 changed files with 2 additions and 1 deletions
|
@ -19,9 +19,10 @@ done
|
|||
IDLETIME=$(nvram get ppp_idletime)
|
||||
IDLETIME=${IDLETIME:+idle $IDLETIME}
|
||||
MTU=$(nvram get ppp_mtu)
|
||||
MTU=${MTU:+ mtu $MTU mru $MTU}
|
||||
|
||||
ifconfig $IFNAME up
|
||||
echo -e "plugin rp-pppoe.so\nconnect /bin/true\nusepeerdns\ndefaultroute\nuser \"$USERNAME\"\npassword \"$PASSWORD\"\nmtu $MTU\n$IDLETIME\n$REDIAL" > /tmp/.pppoe-data
|
||||
echo -e "plugin rp-pppoe.so\npersist\nconnect /bin/true\nusepeerdns\ndefaultroute\nuser \"$USERNAME\"\npassword \"$PASSWORD\"\n$MTU\n$IDLETIME\n$REDIAL" > /tmp/.pppoe-data
|
||||
/usr/sbin/pppd nodetach file /tmp/.pppoe-data $IFNAME
|
||||
done
|
||||
) &
|
||||
|
|
Loading…
Reference in a new issue