ggragham/openvpn_deploy
Deploy your own OpenVPN Server with separate dockerized CA
OpenVPN Ansible playbooks
This repository contains Ansible playbooks for the automated deployment and management of an OpenVPN server.
Table of contents
Overview
The playbooks in this repository provide a complete automation solution for setting up and managing an OpenVPN server. The suite of scripts handles installation, configuration, and user management, thereby simplifying the server setup process. Additionally, it encapsulates EasyRSA in a Docker container for efficient public key infrastructure (PKI) management.
Requirements
- Python3
- Pipenv
- Docker
- Server running Debian or Ubuntu.
Installation
Clone the repository:
git clone https://github.com/ggragham/openvpn_deploy.gitNavigate into the repository directory:
cd openvpn_deploy/Install Ansible and dependencies using Pipenv:
pipenv installConfiguration
Fill inventory.yml and vars.yml from templates:
cp ansible/inventory.yml.template ansible/inventory.yml
edit ansible/inventory.yml
cp ansible/vars.yml.template ansible/vars.yml
edit ansible/vars.ymlUsage
Before running the playbooks, ensure that your Pipenv virtual environment is active:
pipenv shellNavigate into the ansible directory:
cd ansible/To deploy an OpenVPN server, use the following command:
ansible-playbook openvpn_deploy.ymlFor client management, use the corresponding playbook:
- To add a client:
ansible-playbook openvpn_gen_client.yml -e "client_name=<name>"- To revoke a client:
ansible-playbook openvpn_revoke_client.yml -e "client_name=<name>"Important Note
Don't forget to back up your configuration files and PKI information regularly. This will ensure that you can recover your OpenVPN server setup in case of unforeseen issues. The responsibility for maintaining backups lies with the user.
License
This software is published under the GPL-3.0 License license.