Browse Source

openconnect: re-introduce config: interface

In some cases, it's useful to specify which interface to establish the VPN connection

Signed-off-by: Gavin Ni <gisngy@gmail.com>
lilik-openwrt-22.03
Gavin Ni 7 years ago
committed by Yousong Zhou
parent
commit
5d216df6cd
2 changed files with 4 additions and 3 deletions
  1. +1
    -1
      net/openconnect/Makefile
  2. +3
    -2
      net/openconnect/files/openconnect.sh

+ 1
- 1
net/openconnect/Makefile View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=openconnect
PKG_VERSION:=7.08
PKG_RELEASE:=5
PKG_RELEASE:=6
PKG_USE_MIPS16:=0
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz


+ 3
- 2
net/openconnect/files/openconnect.sh View File

@ -8,6 +8,7 @@ proto_openconnect_init_config() {
proto_config_add_int "port"
proto_config_add_int "mtu"
proto_config_add_int "juniper"
proto_config_add_string "interface"
proto_config_add_string "username"
proto_config_add_string "serverhash"
proto_config_add_string "authgroup"
@ -24,7 +25,7 @@ proto_openconnect_init_config() {
proto_openconnect_setup() {
local config="$1"
json_get_vars server port username serverhash authgroup password password2 token_mode token_secret os csd_wrapper mtu juniper
json_get_vars server port interface username serverhash authgroup password password2 token_mode token_secret os csd_wrapper mtu juniper
grep -q tun /proc/modules || insmod tun
ifname="vpn-$config"
@ -34,7 +35,7 @@ proto_openconnect_setup() {
logger -t "openconnect" "adding host dependency for $server at $config"
for ip in $(resolveip -t 10 "$server"); do
logger -t "openconnect" "adding host dependency for $ip at $config"
proto_add_host_dependency "$config" "$ip"
proto_add_host_dependency "$config" "$ip" "$interface"
done
[ -n "$port" ] && port=":$port"


Loading…
Cancel
Save