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
- Host: GitHub
- URL: https://github.com/hienduyph/docker-keriovpn-client
- Owner: hienduyph
- License: apache-2.0
- Created: 2021-12-09T09:22:38.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-12-09T10:23:56.000Z (over 4 years ago)
- Last Synced: 2025-04-19T13:45:15.375Z (about 1 year ago)
- Topics: debian, docker, fedora, kerio, kerio-connect, kerio-vpn, linux, ubuntu, vpn
- Language: Shell
- Homepage: https://www.hienph.dev/snippets/how-to-run-kerio-vpn-client-in-any-linux-system/
- Size: 7.81 KB
- Stars: 4
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Kerio VPN Client
## 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!