Ubuntu – How to automatically connect OpenConnect VPN when the connection closes

openvpnservervpn

I need to use a third party web service which is accessible only through Cisco AnyConnect VPN. I'm using OpenConnect on Ubuntu to connect to this VPN using host, username, and password.

However, instead of having to manually connect every time we need to connect to the service (since the service is being consumed by a script that runs on daily basis), I would like to set it up once and have itself reconnect when the tunnel breaks.

Is there a way for us to connect openconnect client (or any other similar client for Cisco AnyConnect) to automatically reconnect when the connection breaks.

Alternatively, is there a way to login without username and password and store that configuration somewhere so we can automatically respawn the process when it stops.

Please note that this is all on a server, so no GUI.

Best Answer

See the options it has. openconnect --help:

-u,--user=NAME

Set login username to NAME

--passwd-on-stdin

Read password from standard input

--reconnect-timeout

Keep reconnect attempts until so many seconds have elapsed. 
The default timeout is 300 seconds, which means that openconnect 
can recover VPN connection after a temporary network 
downtime of 300 seconds.

it also supports a

--config=CONFIGFILE

There are several scripts on-line you can adapt to your situation.