mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 22:49:42 +02:00
d9c1ede81f
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14887 3c298f89-4303-0410-b956-a3cf2f4a3e73
46 lines
1.0 KiB
Bash
46 lines
1.0 KiB
Bash
scan_pptp() {
|
|
scan_ppp "$@"
|
|
}
|
|
|
|
find_gw() {
|
|
route -n | awk '$1 == "0.0.0.0" { print $2; exit }'
|
|
}
|
|
|
|
|
|
setup_interface_pptp() {
|
|
local config="$2"
|
|
local ifname
|
|
|
|
config_get device "$config" device
|
|
config_get ipproto "$config" ipproto
|
|
config_get server "$config" server
|
|
|
|
for module in slhc ppp_generic ppp_async ip_gre; do
|
|
/sbin/insmod $module 2>&- >&-
|
|
done
|
|
sleep 1
|
|
|
|
setup_interface "$device" "$config" "${ipproto:-dhcp}"
|
|
local gw="$(find_gw)"
|
|
[ -n "$gw" ] && {
|
|
route delete "$server" 2>/dev/null >/dev/null
|
|
route add "$server" gw "$gw"
|
|
}
|
|
|
|
# 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_state network "$config" ifname "$ifname"
|
|
|
|
config_get mtu "$config" mtu
|
|
mtu=${mtu:-1452}
|
|
start_pppd "$config" \
|
|
pty "/usr/sbin/pptp $server --loglevel 0 --nolaunchpppd" \
|
|
file /etc/ppp/options.pptp \
|
|
mtu $mtu mru $mtu
|
|
}
|