This Docker image contains an openconnect client (version 8.04 with pulse/juniper support) and the tinyproxy proxy server for http/s connections (default on port 8888) and the microsocks proxy for socks5 connections (default on port 8889) in a very small alpine linux image.
You can find the image on docker hub: https://hub.docker.com/r/colbyt/openconnect-proxy
First set the variables in docker -e
according to your credentials.
OPENCONNECT_URL=<VPN URL>
OPENCONNECT_USER=<VPN User>
OPENCONNECT_OPTIONS="--authgroup <VPN Group> --servercert <VPN Server Certificate> --protocol=<Protocol>"
To use single auth or multi auth when connecting.
OPENCONNECT_PASSWORD='password'
OPENCONNECT_PASSWORD_TWO='multi auth password'
You can also change the ports used, if not set the following will be used by default
HTTPS_PROXY_PORT=8888
SOCKS5_PROXY_PORT=8889
Run container in foreground
docker run -it --rm --privileged -e OPENCONNECT_URL=pulse.url.com/example -e OPENCONNECT_OPTIONS='--no-dtls --protocol=pulse --reconnect-timeout 86400' -e OPENCONNECT_USER=<email/uid> --net host colbyt/openconnect-proxy
Run container in background with multi authentication
docker run -d --rm --privileged -e OPENCONNECT_PASSWORD='password' -e OPENCONNECT_PASSWORD_TWO=password_2 -e OPENCONNECT_URL=juniper.url.edu/general -e OPENCONNECT_OPTIONS='--juniper --reconnect-timeout 5' -e OPENCONNECT_USER=<email/uid> --net host colbyt/openconnect-proxy
In daemon mode you can view the stderr log with
docker logs <container ID>
docker logs `docker ps|grep "colbyt/openconnect-proxy"|awk -F' ' '{print $1}'`
The container is connected via openconnect and you can configure your browser to use the proxy on port 8888 (see configuration above), e.g. with FoxyProxy or any suitable extension.
Or set environment variables with
export http_proxy="http://127.0.0.1:8888/"
export https_proxy="http://127.0.0.1:8888/"
composer, git and others use these if you don't use the git+ssh protocol. For that see the next section.
You need corkscrew, nc (netcat) or something similar to make this work.
Unfortunately some git clients (e.g. Gitkraken) don't use the settings from ssh config and you can't pull/push from a repository that's reachable (DNS resolution) only through VPN.
install with brew install corkscrew
on mac OS, or pacman -S corkscrew
on Arch Linux
Set a ProxyCommand
in your ~/.ssh/config
file like
Host <hostname>
ProxyCommand corkscrew 127.0.0.1 8888 %h %p
and your connection will be passed through the proxy. The above example is for using git with ssh keys.
Host <hostname>
ProxyCommand nc -x 127.0.0.1:8889 %h %p
or (depending on your ncat version)
Host <hostname>
ProxyCommand ncat --proxy 127.0.0.1:8889 --proxy-type socks5 %h %p
You can build the container yourself with
docker build -f build/Dockerfile -t colbyt/openconnect-proxy:custom ./build