My Homelab Part 4: Wireguard VPN
Published: January 19, 2024
Sometimes I need access to my home server to work on some configuration files or check the health of the server, but not always do I have physical access to my home server. One way to still get access to my server even when I am far away is through a VPN, which allows me to connect to my home network, and from the home network, I can then SSH into my home server.
Wireguard is a free, open-source, modern, and fast VPN service. The other big competitor to Wireguard that I want to mention for completion’s sake is OpenVPN.
To be more specific, I use wg-easy for my server, which is one of the easiest ways to self-host a VPN server. Not only is wg-easy a VPN service, but it also allows you to manage your connection through a WebUI.
Installation
Just like in my previous blog post with Calibre, I will use Docker Compose to install wg-easy with the following Docker Compose file:
1version: "3.8"
2services:
3 wg-easy:
4 environment:
5 # ⚠️ Required:
6 # Change this to your host's public address
7 - WG_HOST=
8
9 # Optional:
10 - PASSWORD=
11 image: weejewel/wg-easy
12 container_name: wg-easy
13 volumes:
14 - /root/wg-easy:/etc/wireguard
15 ports:
16 - "51820:51820/udp"
17 - "51821:51821/tcp"
18 restart: unless-stopped
19 cap_add:
20 - NET_ADMIN
21 - SYS_MODULE
22 sysctls:
23 - net.ipv4.ip_forward=1
24 - net.ipv4.conf.all.src_valid_mark=1
The first thing you have to do is change the WG_HOST
variable to the IP-Address or domain of your server and set a PASSWORD
so that not everyone can access the Web UI. After that, you can start the Docker container with:
1docker compose -f wg-easy-compose.yml up -d
After some time, you should be able to access the website of wg-easy with the URL: http://<Server_IP_Address>:51821
.
There are multiple clients available cross-platform to connect to your VPN Server, including an Android/iOS app and a Windows/Linux client. To download a client, you can visit their Official Website.
To establish a VPN connection with your server, you first need to add the connection on the client. You can do that by pressing the new
button on the wg-easy website.
After giving your connection a name, you can either download the config file and send it to your client device or scan the QR code.
There are two additional things to keep in mind when trying to connect to your VPN Server:
- If the network from which you use the VPN has the same IP range as the network from your home server, Wireguard will get confused and won’t know where to send the internet traffic. You can fix this by using a more uncommon IP range for your home network.
- If you try to use the Windows Wireguard client, you might experience the issue that all the traffic gets directed towards you in a cycle, and you DoS yourself. This is a known issue(see “Forwarding/WeakHostSend breaks IP_PKTINFO”). You can disable it by:
- Opening a powershell terminal
- To see the status of weakhostsend, type:
1Get-NetIPInterface | ft interfacealias,forwarding,weakhostsend
- To disable it, use the following command:
1netsh interface ipv4 set interface "Ethernet 2" weakhostreceive=disable
- Do the same for the
forwarding
variable.
References: