How to Set up Your Own Home VPN Server - Full Guide (2024)

How to Set Up Your VPN Server Using Your Computer?

This method may be the cheapest way of creating a VPN server on your own as you do not need any external hardware, but there can be limitations.

Limitations

  • You need to make sure your computer is constantly switched ON on your computer. Because if the computer is switched off, there is no way you can log into it.
  • You will need to set up port forwarding for your router.
  • We use Microsoft’s inbuilt VPN server hosting functionality that uses insecure VPN protocol PPTP for this method. In this setup, you need to expose your computer directly to the Internet, from which your computer can become vulnerable to cyber-attacks. Thus, using this method, use a strong password for authentication and a different port forwarding method.

Establishing a VPN server in Windows 10 using Windows built-in server

Setup your Windows 10 Computer

Step 1: Open ‘Network Connections” window. Then click ‘organize’ and select Layout-> Menu bar.

Step 2: From the menu bar, select ‘File’->’’ New Incoming Connection.’

Step 3: Next, select the user accounts you want to connect to in the popup screen. We recommend you use a separate user account with a solid password to set up the VPN server so your funds will be safe. To do that, click on the “Add someone” button. After you have selected the user accounts, click on the “Next” button.

Step 4: Next, select the “Through the Internet” option to allow VPN connections to your computer over the Internet.

Step 5: Next, select the protocols on the list that should be allowed for incoming connections. After choosing what you want, allow access. If you do not wish to enable the connections to access printers, opt-out ‘File and Printer sharing for network connections.’

Step 6: Next, select the protocols on the list that should be allowed for incoming connections. If you do not want to enable the connections to access printers, then opt-out of ‘File and Printer sharing for network connections.’ After choosing what you want, allow access.

Now your computer acts as a VPN server, ready to service connection requests.

Setup port forwarding in your router

The next task is setting up port forwarding in your router to connect to the VPN server via the Internet. By setting up port forwarding, your router can send the specific traffic to your computer.

  1. Find the IP address of the computer you set up the VPN server
  2. Log into your router from the web. Then set up port forwarding for port 1723, which is for PPTN protocol to your computers’ IP address.

How to Improve Security?

  1. Set the firewall port forwarding rule allowing traffic only from specific IP addresses
  2. Use an external port to connect to port 1723 to connect via that external port, protecting the VPN servers in the default port.

Connecting to the VPN server

Step 1: Go to network and internet settings in windows ten and select VPN-> Add a VPN connection.

Step 2: Click on Add a VPN connection and do the following.

  • Choose Windows (built-in) as the VPN provider
  • Enter a connection name of your choice
  • Enter the IP address of the VPN server you set up
  • Select the VPN Type as PPTP
  • Enter the type of sign-in info. You can enter a username, password, one-time password, certificate, or a smart card. Enter your username and password in the respective boxes if you choose username and password for the sign-in option and then save. Then your VPN connection will be listed along with the wi-fi connections.

Step 3: Next, select the VPN connection you created in the taskbar network icon, select ‘connect,’ and enter the user credentials. Finally, you will be connected to your VPN server.

Establishing a VPN server in Windows 10 using OpenVPN

Install Open VPN

The first step of this method is downloading the OpenVPN installer for Windows directly from the Open VPN website. When you start, do the custom installation and select “EasyRSA 2 Certificate Management Scripts”.

Configure EasyRSA to generate certificates and keys

  1. Open the Command prompt as administrator
  2. Go to C:/Program Files/OpenVPN/easy-rsa
  3. Launch EasyRSA by typing the command “EasyRSA-Start.bat.”

  4. Create a directory for Public Key Infrastructure(PKI) using the command
    ./easyrsa init-pki

  5. Copy vars.example file located in easyrsa folder as vars.bat and open the file in notepad
  6. Edit the following line as you need and save
  7. Then type the following commands
    vars.bat
    ./easyrsa clean-all

Now we have prepared easily for generating certificates and keys.

Generating certificate and keys

The next thing we have to do is to create the server and client certificates and keys. For that, execute the following commands one by one. First, build Certificate authority (CA) to sign the other certificates and keys.

1. ./easyrsa build-ca nopass

Build certificate and keys for server and clients as follows:

2. ./easyrsa build-server-full server nopass
3. ./easyrsa build-client-full Client1 nopass

Create Diffie-Hellman parameters

4. ./easyrsa gen-dh

After executing these steps, you can find the keys, certificate files, and Diffie-Hellman Parameters in the following folders.

C:/Program Files/OpenVPN/easy-rsa/pki – ca.crt (CA certificate) and dh.pem (Diffie Hellman parameters)

C:/Program Files/OpenVPN/easy-rsa/pki/private – server and client keys (server.key and client.key)

C:/Program Files/OpenVPN/easy-rsa/pki/issued – server and client certificates (server.crt, client1.crt)

Configure OpenVPN server

  1. Copy the following generated files into the ‘config’ directory of the OpenVPN folder
    ca.crt
    server.crt
    server.key
    dh.pem
  2. Open ‘server.ovpn” located in C:/Program Files/OpenVPN\/sample-config
  3. Replace the following key, certificate, and dh file path with the actual paths. For example
    ca “C:\\Program Files\\OpenVPN\\config\\ca.crt”
  4. Configure the other options as you need. If not, keep the default settings and save the file in the config directory.

Configure OpenVPN clients

  1. Install OpenVPN on all client machines
  2. Copy the following files created in the server machine to the config folder in the OpenVPN folder in each client machine
    ca.crt
    client.crt
    client.keys
  3. Make a copy of the client.ovpn” file located in C:/Program Files/OpenVPN\/sample-config
  4. Edit the file as you require and save it in the config folder.
  5. Copy the edited client configuration file to all the clients connecting to the server computer

Connect to the VPN server

Now you have done all the configurations required for the VPN server and the client machines. Finally, run the “Open GUI” as administrator. Then you can locate that GUI in the bottom right-hand corner. Just click on the “show hidden icons” and “OpenVPN” icon and click on ‘connect.’

Establishing a VPN server in Ubuntu

If you are an Ubuntu user, you can follow the same procedure in windows. Establishing the VPN server in Ubuntu is a very complex and time-consuming process. For more details, you can refer to how to set up an OpenVPN server in Ubuntu. In summary, the following are the essential steps you need to follow to create a VPN server in the Ubuntu server.

  1. Install OpenVPN
  2. Install EasyRSA
  3. Create the PKI directory
  4. Setup certificate authority
  5. Generate Server certificate and keys
  6. Generate Client certificate and keys
  7. Configure the OpenVPN server by providing the customizations you need in the configuration file.
  8. Adjust IP forwarding to route IP traffic correctly.
  9. Adjust firewall configurations to let OpenVPN know where to direct incoming traffic from clients.
  10. Start the configured OpenVPN server
  11. Create and install client configurations

Making your Raspberry Pi computer into a VPN server

You can also use OpenVPN in Raspberry Pi to set up a VPN server. This is, again, a pretty complicated process if you directly install OpenVPN and manually do the configurations. But you can quickly achieve this by using the install script PiVPN. In that process, first, you need to download the script from the PiVPN GitHub page.

This can make the configuration setup easier through a setup wizard. Follow up the build your own Raspberry Pi VPN guide to know exactly the steps to execute.

Apart from turning your computer into a VPN server, you can also try the following methods, which will be more costly.

Use a VPN Router with the built-in VPN server capability

Although it is cheaper, turning your computer into a VPN server can be pretty cumbersome. In that case, another alternative solution is to use a VPN router with an integrated VPN server setup capability. It is good if the router you buy supports a more secure VPN protocol than PPTP, like the OpenVPN protocol.

However, this can be expensive because if your current router does not have that capability, you may have to buy a new one.

Setting up your VPN router is relatively easy. In summary, the following are the essential steps you need to follow to set up your VPN router as a VPN server.

VPN Router Setup

  1. Launch a browser window from your PC connected to the routers’ network
  2. Enter the router IP address in the search to login into your router
  3. Enter the username and password of your router and login into it.
  4. Go to the Settings page and select VPN Service or setup page.
  5. Enable the VPN service by selecting the checkbox and apply

VPN Client Setup

Once you have enabled VPN in the router, download and unzip the VPN configuration files for the clients from the router control panel, then copy the files to the client devices. Finally, you can connect to the VPN from client devices.

Manually Flashing the current router

As in the second method, buying a VPN router can be expensive. But if you still need a VPN router without buying a new one, you can upgrade your current router by manually flashing it.

As flashing a router can be tricky, buy a pre-configured or pre-flashed router already flashed. But this option can be expensive.

First and foremost, toTo flash the router by yourself, you need to check if your router supports flash firmware like DD-WRT, OpenWRT, and Tomato. Then find out the instructions to follow on the firmware provider’s website.

  1. Download the firmware file into your computer
  2. Connect the computer to the Local Area Network (LAN)
  3. Log into your router by typing the router’s internal IP address in a web browser address bar
  4. Find the router update or upgrade section in the settings panel
  5. Follow the instructions from the firmware website and flash the router. This can involve resetting the router, uploading firmware, and upgrading.
  6. Restart the router if required.
  7. Log back into the router and enable OpenVPN.
  8. Follow the detailed instructions to create the VPN server: For example, DD-WRT firmware describes the server and client setup instructions. Adjust firewall configurations to let OpenVPN know where to direct incoming traffic from clients.
  9. Setup certificate authority
  10. Generate Server certificate and keys
  11. Generate and configure Client certificate and keys
  12. Download, Install and Configure OpenVPN
  13. Import Client certificate and keys to client devices
  14. Connect the client machines to the VPN server

Using a Cloud Computing Service

As we are now in the cloud computing era, another method is to use a cloud computing service provider like Amazon Web Services (AWS), Google Cloud, DigitalOcean, Scaleway, etc., to rent out Virtual Private Servers (VPS). If you are using AWS services, you can get the first year free of charge if you are free tier eligible.

However, this can also cost you money. Another problem with this method is routing the traffic through the hosting service rather than your home network. But on the other hand, you do not need to worry about maintaining the servers, as the service provider does this on your behalf.

Always follow the guides from the respective cloud provider when setting up a VPN server in the cloud. For example, you can set up an OpenVPN access server in amazon VPC to set up a VPN server in the AWS cloud.

How to Set up Your Own Home VPN Server - Full Guide (2024)
Top Articles
Latest Posts
Article information

Author: Eusebia Nader

Last Updated:

Views: 5778

Rating: 5 / 5 (60 voted)

Reviews: 91% of readers found this page helpful

Author information

Name: Eusebia Nader

Birthday: 1994-11-11

Address: Apt. 721 977 Ebert Meadows, Jereville, GA 73618-6603

Phone: +2316203969400

Job: International Farming Consultant

Hobby: Reading, Photography, Shooting, Singing, Magic, Kayaking, Mushroom hunting

Introduction: My name is Eusebia Nader, I am a encouraging, brainy, lively, nice, famous, healthy, clever person who loves writing and wants to share my knowledge and understanding with you.