38 lines
1.5 KiB
Markdown
Executable File
38 lines
1.5 KiB
Markdown
Executable File
***This repo is a part of the complete instruction on [r4ven.me](https://r4ven.me/it-razdel/instrukcii/podnimaem-openconnect-ssl-vpn-server-ocserv-v-docker-dlya-vnutrennih-proektov/) for deploying an OpenConnect VPN server via docker and docker-compose. All source files available at my [GitHub repo](https://github.com/r4ven-me/docker/tree/main/openconnect).***
|
|
|
|
When using a domain to obtain SSL certificates, uncomment the certbot service and the depends_on parameter for the openconnect service, and specify your values instead of example in the docker-compose.yml file.
|
|
|
|
## Installation and configuration of the OpenConnect VPN server
|
|
|
|
1. Begin by creating a project directory
|
|
```bash
|
|
mkdir openconnect && cd ./openconnect
|
|
```
|
|
|
|
2. Copying the docker-compose.yml file
|
|
```bash
|
|
curl -O https://raw.githubusercontent.com/r4ven-me/docker/main/openconnect/docker-compose.yml
|
|
```
|
|
|
|
3. Launching the OpenConnect server
|
|
```bash
|
|
docker-compose up -d && docker-compose logs -f
|
|
```
|
|
|
|
4. Creating a user with the ID "exampleuser" and the name "Example User"
|
|
The .p12 certificate file will be created in ./data/secrets
|
|
```bash
|
|
docker exec -it openconnect ocuser exampleuser 'Example User'
|
|
```
|
|
|
|
## Example of connecting the client using the openconnect utility
|
|
|
|
5. Without a domain
|
|
```bash
|
|
sudo openconnect -c /home/exampleuser/exampleuser.p12 12.345.67.89:43443 <<< $(echo "examplepassword"$'\n'yes$'\n')
|
|
```
|
|
|
|
6. With a domain
|
|
```bash
|
|
sudo openconnect -c /home/exampleuser/exampleuser.p12 example.com:43443 <<< $(echo "examplepassword"$'\n')
|
|
``` |