Network - Homelab Setup

Server @ Home

First of all? Why would you need a server at your home instead of using cloud services? The answer is: Why not? Just kidding ;-)

A server at your home offers many opportunities and gives you at least a platform to learn new things. Cloud services are usually configured as “ready to use”. Therefore, you only need to enable or disable certain features and that’s it. However, I’d like to know how these awesome features are created and what the black magic behind them is.

Hypervisor? Proxmox!

I’ve tested several hypervisor platforms like Hyper-V, Vmware, ESXI, … and ended up using Proxmox as my current favorite hypervisor. summary:

Costs

How much does this fun cost? Since I already had the necessary hardware lying around at home, it’s “just” electricity costs… and (at the moment of writing) these costs are less than using cloud services.

Note: You can build your server on almost every hardware stack. At this point, I can recommend the videos of NetworkChuck . Easy to understand and very educational.

Public IP / Domain? Reverse Proxy with kemp!

The classic use case for a home server is for sure a webserver and probably the best “hello-world”-project for any server application. But how can you securely open the doors of your router without letting anyone/anything in? The answer is: “cloudflare proxy”.

Imagine the following situation: You host a blog page on your server by using e.g. Apache/NGINX, … on port 80 and want to serve it for the whole world. The easiest way is to open port 80 on forward it to your local server, aaaaannnndddd done! ;-) Optional: You could add a dns record on a domain that is pointing to your ip address.

However, there are some trade-offs with this setup:

Use a reverse proxy

Quick overview

I’ve installed a load-balancer/reverse-proxy on my server (vm) and opened just one port (443). Then I use cloudflare’s proxy solution to “proxy” requests to my server via cloudflare’s backbone. In this case, cloudflare hides my public ip by sitting in the middle due to the proxy setup (friendly man in the middle attack).

The cool thing is that I can host multiple services with the same port by using subdomains for each service and site. Every request is processed by the local reverse-proxy which redirects each request, depending on the subdomain, to the corresponding local server.

Additionally, thanks to this setup, every subdomain is automatically secure by a cloudflare ssl certificate. Isn’t that great? ;-)

One point to mention: Since cloudflare is sitting in between the traffic, it can theoretically listen to it. just saying…

Dynamic DNS

From time to time my public ip changes. If this happens my entire setup is suddenly not reachable from outer space outside. This can happen something between never and once a week. In this case I have to automate it.

I’ve created a small python script that runs twice a day, check if the public ip has changed and changes the dns entry via cloudflare’s api if necessary. Magic!

You can find the project here and more details about it here .

Conclusion

I’ve learning many things about networking, server setup, and hypervisor. Do you also want to create something like this? Start right now and look for an old computer, notebook or even a raspberry pi.


Disclaimer

Photo/Video from Thomas Jensen on Unsplash

Keep in mind: Some trademarks mentioned are under copyright.