1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-20 16:13:14 +03:00

update pptp in head to whiterussian version

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1464 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2005-07-16 14:05:46 +00:00
parent 92efe0ea18
commit 6f08fda54e
4 changed files with 45 additions and 26 deletions

View File

@ -28,8 +28,8 @@ $(PKG_BUILD_DIR)/.built:
touch $@
$(IPKG_PPTP):
install -d -m0755 $(IDIR_PPTP)/etc/init.d
install -m0755 ./files/pptp.init $(IDIR_PPTP)/etc/init.d/S50pptp
install -d -m0755 $(IDIR_PPTP)/sbin
install -m0755 ./files/ifup.pptp $(IDIR_PPTP)/sbin/ifup.pptp
install -d -m0755 $(IDIR_PPTP)/etc/ppp
install -m0644 ./files/options.pptp $(IDIR_PPTP)/etc/ppp/
install -d -m0755 $(IDIR_PPTP)/usr/sbin

View File

@ -0,0 +1,43 @@
#!/bin/sh
. /etc/functions.sh
type=$1
[ "$(nvram get ${type}_proto)" = "pptp" ] || exit
[ -d "/var/lock" ] || mkdir -p /var/lock || exit 1
for module in slhc ppp_generic ppp_async ip_gre; do
/sbin/insmod $module 2>&- >&-
done
if=$(nvram get pptp_ifname)
ip=$(nvram get ${type}_ipaddr)
netmask=$(nvram get ${type}_netmask)
[ -z "$ip" -o -z "$if" ] || ifconfig $if $ip ${netmask:+netmask $netmask} broadcast + up
while :; do
IP=$(nvram get pptp_server_ip)
USERNAME=$(nvram get ppp_username)
PASSWORD=$(nvram get ppp_passwd)
REDIAL=$(nvram get ppp_redialperiod)
REDIAL=${REDIAL:+lcp-echo-interval $REDIAL}
IDLETIME=$(nvram get ppp_idletime)
IDLETIME=${IDLETIME:+lcp-echo-failure $IDLETIME}
MTU=$(nvram get ppp_mtu)
MTU=${MTU:+ mtu $MTU mru $MTU}
/usr/sbin/pppd nodetach \
pty "/usr/sbin/pptp $IP --loglevel 0 --nolaunchpppd" \
file /etc/ppp/options.pptp \
connect /bin/true \
usepeerdns \
defaultroute \
linkname $type \
user "$USERNAME" \
password "$PASSWORD" \
$MTU \
$IDLETIME \
$REDIAL \
$IFNAME
done &

View File

@ -2,11 +2,5 @@ lock
noauth
nobsdcomp
nodeflate
mtu 1490
mru 1490
lcp-echo-failure 5
lcp-echo-interval 120
idle 0
defaultroute
name xxxx
remotename xxxx

View File

@ -1,18 +0,0 @@
#!/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