1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-08-21 01:52:25 +03:00
openwrt-xburst/package/pptp/files/pptp.sh
nbd 866696c182 fix ifname in network state for pppoe and pptp, add a workaround for isps sending wrong netmasks for pptp (thx, moonwatcher)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8552 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-08-30 16:53:22 +00:00

36 lines
845 B
Bash

scan_pptp() {
scan_ppp "$@"
}
setup_interface_pptp() {
local config="$2"
local ifname
config_get device "$config" device
config_get ipproto "$config" ipproto
for module in slhc ppp_generic ppp_async ip_gre; do
/sbin/insmod $module 2>&- >&-
done
sleep 1
setup_interface "$device" "$config" "${ipproto:-dhcp}"
# fix up the netmask
config_get netmask "$config" netmask
[ -z "$netmask" -o -z "$device" ] || ifconfig $device netmask $netmask
# make sure the network state references the correct ifname
scan_ppp "$config"
config_get ifname "$config" ifname
uci set "/var/state/network.$config.ifname=$ifname"
config_get mtu "$cfg" mtu
config_get server "$cfg" server
mtu=${mtu:-1452}
start_pppd "$config" \
pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd" \
file /etc/ppp/options.pptp \
mtu $mtu mru $mtu
}