1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-05 01:14:13 +03:00

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
This commit is contained in:
nbd 2006-09-23 18:01:51 +00:00
parent a5b7612932
commit 89c0b40c57
2 changed files with 6 additions and 8 deletions

View File

@ -1,3 +0,0 @@
scan_pptp() {
scan_ppp "$@"
}

View File

@ -1,8 +1,8 @@
scan_pppoe() { scan_pptp() {
scan_ppp "$@" scan_ppp "$@"
} }
setup_interface_pppoe() { setup_interface_pptp() {
local iface="$1" local iface="$1"
local config="$2" local config="$2"
@ -14,9 +14,10 @@ setup_interface_pppoe() {
setup_interface "$iface" "$config" "dhcp" setup_interface "$iface" "$config" "dhcp"
config_get mtu "$cfg" mtu config_get mtu "$cfg" mtu
config_get server "$cfg" server
mtu=${mtu:-1452} mtu=${mtu:-1452}
start_pppd "$config" \ start_pppd "$config" \
plugin rp-pppoe.so \ pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd"
mtu $mtu mru $mtu \ file /etc/ppp/options.pptp
"nic-$device" mtu $mtu mru $mtu
} }