Step by Step Procedure to Set Up Open VPN on Raspberry Pi:


Open VPN: The great piece of our remote connectivity puzzle is how to access our Pi when you are out of your home. I thought it was better to share this because it’s free and easy to set up. If your router provides VPN services on its own, then you might consider that option. If you don’t have that option, then an open VPN is a good option you might consider. In this tutorial, we are going to cover Step by step procedures to set up an Open VPN on Raspberry Pi.

Setting up a VPN is not an easy task for those who have no or little knowledge about the networks. Don’t worry; there is an easy solution for this. PiVPN. PiVPN is an automated script that allows you to set up an Open VPN in a very easy way. This project, in particular, was started by 0-kaladin and began from the code by StarshipEngineer to help to install OpenVPN on a raspberry pi as simple as it can be.

Time needed: 10 minutes.

How to set up Open VPN on Raspberry Pi?

  1. Let’s begin the installation by issuing the command on the terminal:$ curl -L https://install.pivpn.io | bash

    Pi starts downloading and installing the required packages from the internet.install pivpn
  2. The script will ask you to answer a few simple questions to set up a VPN. First, it asks to set up the static IP address and hit yes.setup the static IP address in Raspberry Pi
  3. Set up a user which serves as a service account. Pi user is just fine to continue this.setup VPN user on Raspberry Pi
  4. Choose a user for Pisetup VPN user on Raspberry Pi (2)
  5. Next is a very important decision to make. PiVPN initially supported OpenVPN. Now, it started supporting WireGuard, another VPN solution, which is started gaining popularity, but it isn’t close to the universe and support as much as Open VPN. We are choosing OpenVPN for this demonstration.Chose OpenVPN
  6. The script will take a couple of minutes to download and install the packages.OpenVPN installation is in progress
  7. In the next step, it asks to set up the port and protocol information. It is just fine to go with the default, which is UDP with 1194.configure OpenVPN custome port
  8. Next, it asks you to select the DNS Provider of your choice. We are selecting CloudFlare to demonstrate.set up DNS setting in OpenVPN in raspberry pi
  9.  Just take the default No here in Custom Search Domain.custome search domain in OpenVPN
  10. Supply the DNS namecustome search domain in OpenVPN (2)
  11. Accept the few default options and let the script generate the server and hash-based message authentication code or HMAC.OpenVPN installation modes
  12. Select the ECDSA certificate sizeECDSA certificate key size set up wizard
  13. In the end, it suggests enabling the auto upgrades to fetch security updates. We let this option for you to decide.auto upgrade OpenVPN in raspberry pi
  14. Select ‘Yes’ if you want to download the upgrades the security patchesauto upgrade OpenVPN in raspberry pi (2)
  15. If you had selected yes to unattended-upgrades. It downloads a few more things. And, that’s it. You are going to see an installation complete message on your window. Your Open VPN is installed and almost ready to use. The only thing left is to reboot and add VPN clients.OpenVPN installation complete
  16. After rebooting the Pi, open the terminal and type pivpn, a new command which allows adding new clients. See the comprehensive list of options for this new command.pivpn cmd list
  17. Pass the -a or add parameters to the pivpn command to add a new client. And enter the new client name and password for it.Adding a new client in pivpn
  18. Set the password for the clientAdding a new client in pivpn (2)
  19. Once done, a new file Mel.ovpn will be created under the /home/pi/ovpns/ which needs to be imported to the client.import pivon settings to client
  20. You should need to setup the port forwarding on your internet router as well. As we don’t know what router you have, we kept this out of the topic and let you configure this on your router. We suggest you to check your router’s user manual to know about port forwarding on your router.Once you find the port forwarding options on your router, enable it and create a new port forwarding rule. Enter this information in the rule. Service port and internal port should be 1194, fill Pi’s IP in the IP address, Protocol should be UDP, and that’s all; save these settings to your new rule.Enabling port forwarding in the router router
  21. Download the client application for your operating system from the Open VPN site and Install it on the client machine.
  22. Open the client application go to import files, and browse the ovpn file to import. It may ask to enter the password. Enter the password you entered in the previous step. After a successful connection with the VPN server. You are going to see a new IP address from the VPN server.

Leave a Reply

Your email address will not be published. Required fields are marked *