mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-13 07:06:16 +02:00
fix ppp reconnect (add persist option)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@674 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
da93ef6000
commit
d79c90eb6e
@ -19,9 +19,10 @@ done
|
|||||||
IDLETIME=$(nvram get ppp_idletime)
|
IDLETIME=$(nvram get ppp_idletime)
|
||||||
IDLETIME=${IDLETIME:+idle $IDLETIME}
|
IDLETIME=${IDLETIME:+idle $IDLETIME}
|
||||||
MTU=$(nvram get ppp_mtu)
|
MTU=$(nvram get ppp_mtu)
|
||||||
|
MTU=${MTU:+ mtu $MTU mru $MTU}
|
||||||
|
|
||||||
ifconfig $IFNAME up
|
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
|
/usr/sbin/pppd nodetach file /tmp/.pppoe-data $IFNAME
|
||||||
done
|
done
|
||||||
) &
|
) &
|
||||||
|
Loading…
Reference in New Issue
Block a user