Bye bye VPN! Hello ZeroTier!

Bye bye VPN! Hello ZeroTier!

2022, Apr 02    

Why do I need to have a remoting solution?

During this C19-pandemic working from home (WFH) didn’t get the work/life balance in equilibrium, so I decided to rent an office (WFHO) for myself. This all seems nice and dandy, up to the point that no internet connectivity is available at the remote office. Juggling around with a USB tethered phone to my laptop wasn’t cutting it in the long run as I needed to have multiple machines hooked onto The System.

Fiddling around with a Raspberry Pi and using this as a USB-tethering bridge made me investigate a more stable solution; the tiny but mighty GL.iNet Brume GL-MV1000. Just plug in the USB of the smartphone, connect LAN port to a switch, hook some machines onto the switch, and away we go.

Still having a little caveat; connecting from home to the office was not feasible as the telecom provider does NAT on the 4G connection, resulting in to the inability to open ports for a VPN connection. I was really stumped for a while. until a fellow Commodore-enthusiast pointed out ZeroTier to me.

What is ZeroTier?

“ZeroTier is a smart Ethernet switch for planet Earth. It’s a distributed network hypervisor built atop a cryptographically secure global peer to peer network. It provides advanced network virtualization and management capabilities on par with an enterprise SDN switch, but across both local and wide area networks and connecting almost any kind of app or device.”

So far for the marketing fluff, in essence, it allows you to create a virtual network in the cloud and install the ZeroTier software onto a Linux/Windows/MacOS (virtual) machine, as a docker, a router, smartphone and even onto NAS devices.

I use this in a very smal context but it also works in large (scale-in/scale-out) scenarios. ZeroTiers generousity allows up to 50 25 clients in the free plan already.

Why go for ZeroTier?

The free basic plan comes with;

  • Up to 25(!) members on the virtual private network.
  • Unlimited amount of network to be configured on your tenant.
  • A single ZeroTier admin account
  • Support is based on the large community, helping eachother out is what i like.

This virtual network is accessible as long as you connect to “The System”. The best part of all this is that you don’t need to worry about router configuration of opening ports, forwarding traffic etc., hence it fits my need.

It checked all my requirements

[x] Open source on GitHub.com

[x] hassle-free, no port forwarding

[x] Free plan, limited to 25 nodes, no purchase/creditcard registration required

[x] Possibility to run a free and unlimited self-hosting ZeroTier Network Controller

[x] A large variety of platform support

[x] API-enabled and well documented

[x] Support for HashiCorp Terraform

How does it work?

Get it to work

Essentially it requires just a few steps;

  1. Create a ZeroTier account to access your admin console and get a 16-digit network ID. Create as many networks as you like and each will be assigned a 16-digit network ID.
  2. Download ZeroTier on any device to get a unique 10-digit node address and enter your 16-digit network ID into the join network field on the device to request access to your network.
  3. Check the Auth checkbox on your admin console when your 10-digit node address presents itself.

Network connections

The free basic plan comes with;

  • Up to 25(!) members on the virtual private network.
  • Unlimited amount of network to be configured on your tenant.
  • A single ZeroTier admin account
  • Support is based on the large community, helping eachother out is what i like.

If a firewall between you and the Internet blocks ZeroTier’s UDP traffic, you will fall back to last-resort TCP tunneling to rootservers over port 443 (https impersonation). This will work almost anywhere but is very slow compared to UDP or direct peer to peer connectivity.

Additional help can be found in the ZeroTier knowledge base. The free basic plan comes with;

  • Up to 25(!) members on the virtual private network.
  • Unlimited amount of network to be configured on your tenant.
  • A single ZeroTier admin account
  • Support is based on the large community, helping eachother out is what i like.

What did I use?

  • VMWare ESXi 8.x as a hypervisor platform
  • ZeroTier Basic account, which is free see; pricing plan
  • a Linux Mint 20.3 virtual machine at the local location
  • a Linux Mint 20.3 virtual machine at the remote location
  • Creating a ZeroTier network between these two VMs

If you don’t like the ZeroTier Hosted Controller you can go for the Open Source plan and sport your own controller and gain the unlimited admin accounts as a bonus.

Using this Basic plan it gave me access to my devices on the other side of the line, good enough.

Installing Linux Mint in a VM

When selecting a Linux Mint distribution and you want to RDP into is, please take the following in account;

  • Cinnamon, renders the nice Linux Mint interface
  • Mate or XFCE, renders in a default X interface

Just install from the ISO and make sure that the installed distro is up to date

sudo apt update && sudo apt full-upgrade -y

Installing RDP on Linux Mint

sudo apt install xrdp

Creating a ZeroTier network

First, create a virtual network to span across two or multiple sites.

NETWORK ID NETWORK NAME DESCRIPTION SUBNET NODES CREATED
3efa5cb78a7f3d2d berserk_licklider   192.168.196.0/24 0/0 2022-04-02

Installing the ZeroTier software

The default Zerotier installation method doesn’t take a newer version of Ubunt/Linux Mint in account. Just a little addition to the default method takes care of this.

Downloading and fixing the installer script to support Linux Mint / Ubuntu (Focal) distribution.

curl -s https://install.zerotier.com | sed 's/xenial/focal/g' | bash

Next up, joining the network

sudo zerotier-cli join 3efa5cb78a7f3d2d

Start networking

When logged on to the ZeroTier web interface you need to ‘Auth’ your newly added device to the virtual network.

When adding another device to the ZeroTier network those device are able to communicate with eachother, even though they are behind a NAT or firewalled solution like in my WFHO 4G-scenario.

Enjoy the simplicity of ZeroTier.