diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-04-18 19:34:55 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-04-18 19:34:55 +0000 |
commit | d79c90eb6e52cec0d9e1d3be83ffc8392733c322 (patch) | |
tree | 010433ea61b3a8275af2cdcd5f7ade733175888d /openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc | |
parent | da93ef600013e3d803aaa0a6f189e7f9264db37f (diff) |
fix ppp reconnect (add persist option)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@674 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc')
-rwxr-xr-x | openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe b/openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe index 7e635ee790..33143c9158 100755 --- a/openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe +++ b/openwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe @@ -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 ) & |