diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-05-19 00:03:33 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-05-19 00:03:33 +0000 |
commit | d6dd9bf94175ae66f871ca5cc8dbbca11aabbc98 (patch) | |
tree | 066964090fce5a84306b9b2cc72118b1264321c2 /openwrt/package/pptpd/files | |
parent | ad8d8e100e98b561fce52e426aebc853c3e85372 (diff) | |
download | mtk-20170518-d6dd9bf94175ae66f871ca5cc8dbbca11aabbc98.zip mtk-20170518-d6dd9bf94175ae66f871ca5cc8dbbca11aabbc98.tar.gz mtk-20170518-d6dd9bf94175ae66f871ca5cc8dbbca11aabbc98.tar.bz2 |
Convert pptpd to new packaging style
SVN-Revision: 942
Diffstat (limited to 'openwrt/package/pptpd/files')
-rw-r--r-- | openwrt/package/pptpd/files/options.pptpd | 23 | ||||
-rw-r--r-- | openwrt/package/pptpd/files/pptpd.conf | 5 | ||||
-rw-r--r-- | openwrt/package/pptpd/files/pptpd.init | 25 |
3 files changed, 53 insertions, 0 deletions
diff --git a/openwrt/package/pptpd/files/options.pptpd b/openwrt/package/pptpd/files/options.pptpd new file mode 100644 index 0000000..5dd2daf --- /dev/null +++ b/openwrt/package/pptpd/files/options.pptpd @@ -0,0 +1,23 @@ +#debug +#logfile /tmp/pptp-server.log +172.16.1.1: +auth +name "pptp-server" +lcp-echo-failure 3 +lcp-echo-interval 60 +default-asyncmap +mtu 1482 +mru 1482 +nobsdcomp +nodeflate +#noproxyarp +#nomppc +mppe required,no40,no56,stateless +require-mschap-v2 +refuse-chap +refuse-mschap +refuse-eap +refuse-pap +#ms-dns 172.16.1.1 +#plugin radius.so +#radius-config-file /etc/radius.conf diff --git a/openwrt/package/pptpd/files/pptpd.conf b/openwrt/package/pptpd/files/pptpd.conf new file mode 100644 index 0000000..e9ac115 --- /dev/null +++ b/openwrt/package/pptpd/files/pptpd.conf @@ -0,0 +1,5 @@ +#debug +option /etc/ppp/pptp-server-options +speed 115200 +stimeout 10 +#localip & remoteip are not needed, ip management is done by pppd diff --git a/openwrt/package/pptpd/files/pptpd.init b/openwrt/package/pptpd/files/pptpd.init new file mode 100644 index 0000000..79db864 --- /dev/null +++ b/openwrt/package/pptpd/files/pptpd.init @@ -0,0 +1,25 @@ +#!/bin/sh + +BIN=pptpd +DEFAULT=/etc/default/$BIN +RUN_D=/var/run +PID_F=$RUN_D/$BIN.pid +[ -f $DEFAULT ] && . $DEFAULT + +case $1 in + start) + mkdir -p $RUN_D + for m in arc4 sha1 shlc ppp_generic ppp_async ppp_mppe_mppc; do + insmod $m >/dev/null 2>&1 + done + $BIN $OPTIONS + ;; + stop) + [ -f $PID_F ] && kill $(cat $PID_F) + ;; + *) + echo "usage: $0 (start|stop)" + exit 1 +esac + +exit $? |