mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-14 23:09:45 +01:00
allow the user to override the underlying connection method when using pptp (defaults to dhcp)
SVN-Revision: 8508
This commit is contained in:
parent
83c0618a0f
commit
79b07af694
1 changed files with 2 additions and 1 deletions
|
|
@ -7,11 +7,12 @@ setup_interface_pptp() {
|
|||
local config="$2"
|
||||
|
||||
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
|
||||
setup_interface "$iface" "$config" "dhcp"
|
||||
setup_interface "$iface" "$config" "${ipproto:-dhcp}"
|
||||
|
||||
config_get mtu "$cfg" mtu
|
||||
config_get server "$cfg" server
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue