1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 21:33:16 +03:00

fix start_pppd for pptp (closes: #1612)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7027 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico 2007-04-21 20:19:54 +00:00
parent e5945a562e
commit 188addeb09

View File

@ -17,7 +17,7 @@ setup_interface_pptp() {
config_get server "$cfg" server
mtu=${mtu:-1452}
start_pppd "$config" \
pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd"
file /etc/ppp/options.pptp
pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd" \
file /etc/ppp/options.pptp \
mtu $mtu mru $mtu
}