aboutsummaryrefslogtreecommitdiffstats
path: root/package/pptp/files
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-09-23 18:01:51 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-09-23 18:01:51 +0000
commit1b1f3eb0cf5e8d7a1faa9f41ec5ba9a419123054 (patch)
tree7b461091c343deaad7f71a9e043085069023e192 /package/pptp/files
parentfd0217221eda59a2ebb7c556416b5cd92cc6c236 (diff)
downloadmaster-187ad058-1b1f3eb0cf5e8d7a1faa9f41ec5ba9a419123054.tar.gz
master-187ad058-1b1f3eb0cf5e8d7a1faa9f41ec5ba9a419123054.tar.bz2
master-187ad058-1b1f3eb0cf5e8d7a1faa9f41ec5ba9a419123054.zip
add fixes for the pptp network scripts
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4835 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/pptp/files')
-rw-r--r--package/pptp/files/pptp.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/package/pptp/files/pptp.sh b/package/pptp/files/pptp.sh
index 7847802041..fffa625a2f 100644
--- a/package/pptp/files/pptp.sh
+++ b/package/pptp/files/pptp.sh
@@ -1,8 +1,8 @@
-scan_pppoe() {
+scan_pptp() {
scan_ppp "$@"
}
-setup_interface_pppoe() {
+setup_interface_pptp() {
local iface="$1"
local config="$2"
@@ -14,9 +14,10 @@ setup_interface_pppoe() {
setup_interface "$iface" "$config" "dhcp"
config_get mtu "$cfg" mtu
+ config_get server "$cfg" server
mtu=${mtu:-1452}
start_pppd "$config" \
- plugin rp-pppoe.so \
- mtu $mtu mru $mtu \
- "nic-$device"
+ pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd"
+ file /etc/ppp/options.pptp
+ mtu $mtu mru $mtu
}