diff options
Diffstat (limited to 'src')
| -rwxr-xr-x | src/conf_mode/vpn_openconnect.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/conf_mode/vpn_openconnect.py b/src/conf_mode/vpn_openconnect.py index e32d83b9e..c050b796b 100755 --- a/src/conf_mode/vpn_openconnect.py +++ b/src/conf_mode/vpn_openconnect.py @@ -80,11 +80,11 @@ def verify(ocserv):          return None      # Check if listen-ports not binded other services      # It can be only listen by 'ocserv-main' -    listen_address = ocserv["listen_address"] if "listen_address" in ocserv else '0.0.0.0'      for proto, port in ocserv.get('listen_ports').items(): -        if check_port_availability(listen_address, int(port), proto) is not True and \ +        if check_port_availability(ocserv['listen_address'], int(port), proto) is not True and \                  not is_listen_port_bind_service(int(port), 'ocserv-main'):              raise ConfigError(f'"{proto}" port "{port}" is used by another service') +      # Check authentication      if "authentication" in ocserv:          if "mode" in ocserv["authentication"]: | 
