Install and Configure OpenVPN on Raspberry Pi
This is a supplement post on setting and configuring OpenVPN. However, we are going to configure OpenVPN on a Raspberry Pi. Download and Install Raspbian OS Download the latest Raspbian OS and burn the image to a SD card using the software Etcher. Once we booted up the Raspberry Pi, we can follow the wizard to set password, enable wifi and update the software. We can also choose to enable ssh and vnc using Raspberry Pi Configuration software. We can also run the configuration software from command line using raspi-config. Install OpenVPN and Easy-Rsa Once the system is updated, we can proceed to install OpenVPN using the command: sudo apt-get install -y openvpn The repository for Raspberry Pi do not have version 3 of easy-rsa. Version 3 of easy-rsa is more easier to use without the need to perform many configuration. To use Easy-RSA version 3, we can download the package from github at the location https://github.com/OpenVPN/easy-rsa . Once we downloaded and u...