You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
algo/docs/client-linux.md

20 lines
770 B
Markdown

# Linux client setup
It's possible to deploy an ipsec connection on Linux clients.
Supported distributives are: Debian, Ubuntu, CentOS, Fedora
The playbook is `deploy_client.yml`
7 years ago
### Required variables:
7 years ago
* `client_ip` - The IP address of your client machine (You can use `localhost` in order to deploy locally)
* `vpn_user` - The username. (Ensure that you have valid certificates and keys in the `configs/SERVER_ip/pki/` directory)
* `client_ssh_user` - The username that we need to use in order to connect to the client machine via SSH (ignore if you are deploying locally)
* `server_ip` - The vpn server ip address
7 years ago
### Example:
```shell
ansible-playbook deploy_client.yml -e 'client_ip=client.com vpn_user=jack server_ip=vpn-server.com server_ssh_user=root'
```