1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-24 02:34:06 +02:00

sync pptp ifup script with whiterussian

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2265 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd 2005-10-22 21:58:50 +00:00
parent 036a55d69a
commit 2be847dc58

View File

@ -1,7 +1,5 @@
#!/bin/sh #!/bin/sh
. /etc/functions.sh . /etc/functions.sh
. /etc/nvram.overrides
[ -e /etc/config/network ] && . /etc/config/network
type=$1 type=$1
[ "$(nvram get ${type}_proto)" = "pptp" ] || exit [ "$(nvram get ${type}_proto)" = "pptp" ] || exit
@ -12,12 +10,10 @@ for module in slhc ppp_generic ppp_async ip_gre; do
/sbin/insmod $module 2>&- >&- /sbin/insmod $module 2>&- >&-
done 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 while :; do
PPTP_PROTO="$(nvram get pptp_proto)"
[ "$PPTP_PROTO" = "static" ] || PPTP_PROTO=""
PPTP_PROTO="${PPTP_PROTO:-dhcp}"
IP=$(nvram get pptp_server_ip) IP=$(nvram get pptp_server_ip)
USERNAME=$(nvram get ppp_username) USERNAME=$(nvram get ppp_username)
PASSWORD=$(nvram get ppp_passwd) PASSWORD=$(nvram get ppp_passwd)
@ -28,18 +24,25 @@ while :; do
MTU=$(nvram get ppp_mtu) MTU=$(nvram get ppp_mtu)
MTU=${MTU:+ mtu $MTU mru $MTU} MTU=${MTU:+ mtu $MTU mru $MTU}
do_ifup $PPTP_PROTO $type
# hack for some buggy ISPs
NETMASK=$(nvram get ${type}_netmask)
IFNAME=$(nvram get pptp_ifname)
[ -z "$NETMASK" -o -z "$IFNAME" ] || ifconfig $IFNAME netmask $NETMASK
/usr/sbin/pppd nodetach \ /usr/sbin/pppd nodetach \
pty "/usr/sbin/pptp $IP --loglevel 0 --nolaunchpppd" \ pty "/usr/sbin/pptp $IP --loglevel 0 --nolaunchpppd" \
file /etc/ppp/options.pptp \ file /etc/ppp/options.pptp \
connect /bin/true \ connect /bin/true \
usepeerdns \ usepeerdns \
defaultroute \ defaultroute \
replacedefaultroute \
linkname $type \ linkname $type \
user "$USERNAME" \ user "$USERNAME" \
password "$PASSWORD" \ password "$PASSWORD" \
$MTU \ $MTU \
$IDLETIME \ $IDLETIME \
$REDIAL \ $REDIAL
$IFNAME
done & done &