summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2005-04-18 19:34:55 +0000
committerFelix Fietkau <nbd@openwrt.org>2005-04-18 19:34:55 +0000
commit833f90e2f0f48145d5d8a37474d460777d5cafe3 (patch)
tree010433ea61b3a8275af2cdcd5f7ade733175888d
parent6362e54954a20610d7427b1d0ea55574a67ce991 (diff)
downloadmtk-20170518-833f90e2f0f48145d5d8a37474d460777d5cafe3.zip
mtk-20170518-833f90e2f0f48145d5d8a37474d460777d5cafe3.tar.gz
mtk-20170518-833f90e2f0f48145d5d8a37474d460777d5cafe3.tar.bz2
fix ppp reconnect (add persist option)
SVN-Revision: 674
-rwxr-xr-xopenwrt/package/ppp/ipkg/ppp-pppoe-plugin/etc/init.d/S50pppoe3
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 7e635ee..33143c9 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
) &