Ubuntu

How to setup OpenVPN on Ubuntu Server

How to setup OpenVPN on Ubuntu Server

OpenVPN is a free VPN service for secure remote access of your server/machine. It gives you the capability to encrypt your web traffic and route it securely. OpenVPN enables you to have complete control of your tunneled traffic because the server and client both are under your surveillance.

It will not only unblock all sites at a locally restricted internet connection ad-free but will also protect your traffic at an insecure open/public Wi-Fi.

Requirements

Following are the few requirements for setting up OpenVPN;

  1. Ubuntu Server (preferably on any cloud)
  2. The server should have an Open Port to listen for incoming VPN connections
  3. Client Machine (preferably with Bash Environment)

Setting up OpenVPN

Connect to your Ubuntu Server using ssh or any other remote access protocol.

$ ssh ubuntu@[ip address of your Ec2 Instance] -i key.pem

Update your server. Run the following command;

$ sudo apt update && sudo apt upgrade -y

Now download the OpenVPN script with the following command;

$ wget https://git.io/vpn -O openvpn-install.sh

Download & Install OpenVPN Script

You have to run the script and provide the details it asks. Enter the following command;

$ sudo bash openvpn-install.sh

It has automatically detected your private IP. Press Enter. It will prompt you to provide your public IP.

Entering Public IP

Now it will ask you to specify the protocol [TCP, UDP]. TCP is recommended. To choose TCP, Enter 2.

Choosing Protocol

Now OpenVPN will ask you the listening port. Specify an open port.

Port Selection

You have to configure the DNS services you intend to use. Recommended DNS are Google & Open DNS.

DNS Selection

Your OpenVPN server has successfully been configured. Now give a name to your client script. Press Enter & wait for the installation to complete.

Successful Installation

Transfer this file to your client machine. There are a lot of ways to transfer files on the command line. We will be making python server on Ubuntu to transfer our file from server to client.

Switch to the directory where the client.ovpn file is stored. In this case, it is stored in /home/ubuntu/ directory.

$ cd /home/ubuntu/

Enter$ ls-la to confirm that file exists in the current directory.

Confirm File in Current Directory

To start a simple python server, enter the following commands.

In the case of python2, enter;

$ sudo python -m SimpleHTTPServer

In the case of Python3, enter;

$ sudo python3 -m http.server

Python Server

Our server is listening on port 8000. Go to your client machine terminal and download the client.ovpn file by entering the following command;

$ wget http://18.218.226.25:8000/client.ovpn

Downloading Client File

Remember to replace the Public IP, Port number, and the name of your file.

Now your file has successfully been transferred. You can initiate the connection by entering on your client machine;

$ sudo openvpn client.ovpn

To confirm your OpenVPN is running, go to Google & write “My IP.” If the IP is the same as the Public IP of your server, you have successfully configured the OpenVPN.

Conclusion

OpenVPN is a free service, contains no ads and encrypts our traffic hence bypassing URL & Content-based firewall/Proxy filters. It is easy to configure and gives us control of our tunneled traffic.

How to Install and Play Doom on Linux
Introduction to Doom The Doom Series originated in the 90s after the release of the original Doom. It was an instant hit and from that time onwards th...
Vulkan for Linux Users
With each new generation of graphics cards, we see game developers push the limits of graphical fidelity and come one step closer to photorealism. But...
OpenTTD vs Simutrans
Creating your own transport simulation can be fun, relaxing and extremely enticing. That's why you need to make sure that you try out as many games as...