From 2746a82942eb110bbbcc2bf0c51d6eb501687d87 Mon Sep 17 00:00:00 2001 From: wbx Date: Wed, 4 May 2005 07:07:58 +0000 Subject: first try to configure pptp automatically git-svn-id: svn://svn.openwrt.org/openwrt/trunk@796 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- openwrt/package/pptp/ipkg/etc/init.d/S50pptp | 18 ++++++++++++++++++ openwrt/package/pptp/ipkg/etc/ppp/options.pptp | 13 ++++++++++++- 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100755 openwrt/package/pptp/ipkg/etc/init.d/S50pptp (limited to 'openwrt/package/pptp/ipkg/etc') diff --git a/openwrt/package/pptp/ipkg/etc/init.d/S50pptp b/openwrt/package/pptp/ipkg/etc/init.d/S50pptp new file mode 100755 index 0000000000..34ff8a63b5 --- /dev/null +++ b/openwrt/package/pptp/ipkg/etc/init.d/S50pptp @@ -0,0 +1,18 @@ +#!/bin/sh + +. /etc/functions.sh + +WAN_PROTO=$(nvram get wan_proto) +[ "$WAN_PROTO" = "pptp" ] || exit 0 + +for module in ip_gre slhc ppp_generic ppp_async ppp_deflate ; do + /sbin/insmod $module 2>/dev/null >/dev/null +done + +if test -d "/var/lock"; then + mkdir -p /var/lock || exit 1 +fi + +/usr/sbin/pppd pty "pptp x.x.x.x --loglevel 0 --nolaunchpppd" file /etc/ppp/options.pptp + + diff --git a/openwrt/package/pptp/ipkg/etc/ppp/options.pptp b/openwrt/package/pptp/ipkg/etc/ppp/options.pptp index 85b043fabd..0eb1e87e83 100644 --- a/openwrt/package/pptp/ipkg/etc/ppp/options.pptp +++ b/openwrt/package/pptp/ipkg/etc/ppp/options.pptp @@ -1 +1,12 @@ -lock noauth nobsdcomp nodeflate +lock +noauth +nobsdcomp +nodeflate +mtu 1490 +mru 1490 +lcp-echo-failure 5 +lcp-echo-interval 120 +idle 0 +defaultroute +name xxxx +remotename xxxx -- cgit v1.2.3