Hi, trying to connect to a VPN with
v = openvpn_api.VPN(<IPAdress>, 443)
v.type gives me <VPNType.IP: 'ip'>. When I connect to that IP using OpenVPN and my credentials, I connect with no issue. Here I'm getting with v.connect():
Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/ec2-user/environment/openvpn-api/openvpn_api/vpn.py", line 73, in connect raise errors.ConnectError(str(e)) from None openvpn_api.util.errors.ConnectError: timed out
How can I avoid this? Is this related to missing credentials or something else is happening?
Hi, trying to connect to a VPN with
v = openvpn_api.VPN(<IPAdress>, 443)v.typegives me<VPNType.IP: 'ip'>. When I connect to that IP using OpenVPN and my credentials, I connect with no issue. Here I'm getting withv.connect():Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/home/ec2-user/environment/openvpn-api/openvpn_api/vpn.py", line 73, in connect raise errors.ConnectError(str(e)) from None openvpn_api.util.errors.ConnectError: timed outHow can I avoid this? Is this related to missing credentials or something else is happening?