An open API service indexing awesome lists of open source software.

https://github.com/hienduyph/docker-keriovpn-client

Run Kerio VPN Client in Docker
https://github.com/hienduyph/docker-keriovpn-client

debian docker fedora kerio kerio-connect kerio-vpn linux ubuntu vpn

Last synced: about 1 year ago
JSON representation

Run Kerio VPN Client in Docker

Awesome Lists containing this project

README

          

# Docker Kerio VPN Client


container

## Build

```bash
docker build . -t quay.io/hienduyph/keriovpn-client
```

## Running the client

The default port is: 4090

Obtain the fingerprint

```bash
openssl s_client -connect YOUR_SERVER:YOUR_PORT < /dev/null 2>/dev/null | openssl x509 -fingerprint -md5 -noout -in /dev/stdin
```

*kerio-svc.conf*

```



YOUR_SERVER
YOUR_PORT
YOUR_USERNAME
YOUR_PASSWORD
FINGERPRINT_ABOVE
1

```

**Spin up the client**
```bash
docker run -d --name keriovpn --net=host --privileged -v /path/to/kerio-kvc.conf:/etc/kerio-kvc.conf quay.io/hienduyph/keriovpn-client
```

From now, you could check the container logs to see detail the login address, and ask Network admin about DNS server.

Hope this help!