first try to configure pptp automatically
SVN-Revision: 796
This commit is contained in:
parent
56c9e7794a
commit
6d616c6c8a
18
openwrt/package/pptp/ipkg/etc/init.d/S50pptp
Executable file
18
openwrt/package/pptp/ipkg/etc/init.d/S50pptp
Executable file
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user