pyratelog

personal blog
git clone git://git.pyratebeard.net/pyratelog.git
Log | Files | Refs | README

commit e2002e8128558e960065560ca4235c2067c83b32
parent 33b34623510219f0dd27dd79ea21569458102337
Author: pyratebeard <root@pyratebeard.net>
Date:   Mon, 15 Jan 2024 23:08:04 +0000

heads_or_tails

Diffstat:
Mentry/heads_or_tails.md | 68+++++++++++++++++++++++++++++++++++++++++++++++++++++++++-----------
1 file changed, 57 insertions(+), 11 deletions(-)

diff --git a/entry/heads_or_tails.md b/entry/heads_or_tails.md @@ -1,41 +1,87 @@ -https://github.com/juanfont/headscale/releases +For [a long time](20170718-raspberry_pi_vpn.html){target="_blank" rel="noreferrer"} I have been using [OpenVPN](https://openvpn.net/){target="_blank" rel="noreferrer"} to maintain a connection between my devices and my home network when away. -download latest .deb +OpenVPN served me well, however an upgrade has been on my todo list for awhile. My intention was always to switch to [WireGuard](https://www.wireguard.com/){target="_blank" rel="noreferrer"}, then after hearing so many great reviews of [Tailscale](https://tailscale.com/){target="_blank" rel="noreferrer"} I decided to look into it. +According to their documentation Tailscale is based on the WireGuard protocol, creating a peer-to-peer mesh between the devices. + +As I work from home and rarely travel I haven't needed my VPN much recently. The main use case for this change was to set up mine and my wife's mobile devices so that we can both use our [Nextcloud](https://nextcloud.com/){target="_blank" rel="noreferrer"} instance and [LocalSend](https://localsend.org/#/){target="_blank" rel="noreferrer"} when out of the house. + +When the stars aligned and I finally got a chance to make the jump I was excited. Right up until I got to the [Tailscale login](https://login.tailscale.com/login){target="_blank" rel="noreferrer"} screen. + +I was presented with a choice of OpenID Connect (OIDC) options, only one of which I actually had, that being Github. I haven't really used Github since I migrated to my own git server and Gitlab, I didn't really want to start using it to login on my wife's devices. + +Instead I decided to look into [Headscale](https://headscale.net/){target="_blank" rel="noreferrer"} which is "a self-hosted implementation of the Tailscale control server". I created a Debian LXC container on my server and went about installing Headscale. + +This is no substitute for the [official docs](https://headscale.net/running-headscale-linux/){target="_blank" rel="noreferrer"}, but look at how easy it is. + +You will need a domain pointing to your Headscale instance. If you are running Headscale behind a firewall open port 443 and point it to your instance on your chosen port. + +Download the latest `.deb` pack from the [releases](https://github.com/juanfont/headscale/releases){target="_blank" rel="noreferrer"} page and install ``` dpkg -i ./headscale_0.22.3_linux_amd64.deb ``` -* update config +Edit the config file for your own use case ``` vim /etc/headscale/config.ymal ``` +Apart from the `server_url` I didn't change much. I did switch the ACME challenge type for Let's Encrypt to `TLS-ALPN-01` so I didn't have to open port 80 on my external firewall. + +Enable and start the service ``` systemctl enable headscale systemctl start headscale ``` -* on server add first user +That's it. + +Then using the `headscale` command line tool create a new user ``` headscale users create <username> ``` -* create a generic user for all systems -* install tailscale app on devices +To connect devices to Headscale you can use the normal Tailscale apps. On my Arch Linux system I installed Tailscale from the repo. Connecting is via the `tailscale` command (don't forget to start the daemon), and I specified my Headscale domain as the login server ``` -systemctl enable tailscale -systemctl start tailscale -tailscale up --login-server https://<server> +tailscale up --login-server https://<headscale_domain>.tld ``` -* check node list +This will generate a link to open in your browser, which shows the command to run on Headscale in order to authenticate the device. + +Once succeeded confirm by looking at the list of nodes ``` headscale nodes list ``` -* for lxc containers add to /etc/pve/lxc/<nnn>.conf +If you want to add an LXC container, before installing Tailscale you have to allow TUN device creation otherwise the daemon will fail to start correctly. In your containers config file add the following ``` lxc.cgroup.devices.allow: c 10:200 rwm lxc.mount.entry: /dev/net dev/net none bind,create=dir ``` + +I was happy with everything so far. I connected my PC and my Nextcloud container to my Headscale instance. Using the DNS section in my Headscale config I set an `extra_records` block for Nextcloud, meaning I could navigate to `http://nextcloud` in my browser and connect to my instance. + +Next I installed the Tailscale app on my Android device. I used FDroid and at the time of writing I installed v1.56.0. To change the login server in the app isn't obvious, thankfully there are [instructions](https://headscale.net/android-client/#configuring-the-headscale-url){target="_blank" rel="noreferrer"} on the Headscale site. + +So I set my login server and selected Sign In, but the normal Tailscale login page showed up. Weird. I tried again, and again. Then I turned off my WiFi and switched to 4G, and it worked correctly i.e. opened up my domain Headscale with the same authentication command from before. + +Finally. So now I have three devices and they can all connect whether I'm on the same WiFi or not. + +Now for my wife's devices. I installed the Tailscale app from the Play Store (v1.56.0) and followed the same steps as before to change the login server. This time, however, I couldn't get it working. I turned off WiFi, still wouldn't work. The Sign In button either opened the Tailscale login page or didn't do anything. I uninstalled and installed the FDroid version, but it would still not work. + +A bit frustrated I decided to look at my wife's Windows laptop. According to the Headscale [instructions](https://headscale.net/windows-client/){target="_blank" rel="noreferrer"} the login server URL is added in the Windows Registry (yes, really) and then a reboot is required for the change to be picked up. + +Again, nothing worked. The app is suppose to open the browser with the authentication command but it the browser did not open at all. I even tried running the command in PowerShell +``` +tailscale.exe up --login-server https://<headscale_domain>.tld --unattended +``` + +Still nothing. + +After two hours of digging through past issues and trying both Android and Windows again and again, I gave up. I was extremely frustrated. + +I had been talking about getting Nextcloud setup for so long I reluctantly logged in to Tailscale with Github and added mine and my wife's mobile devices, and the Nextcloud instance. I'm not happy that I had to resort to this, from what I can tell the feature to select a custom control server has broken a few times since being implemented. + +LocalSend also doesn't appear to work across the Tailscale network. It worked between my devices on Headscale. This added to my frustration. + +From the (very) brief use of Headscale I thought it was fantastic. I am reluctantly going to leave my devices on Tailscale for now so that my wife can use it but as soon as I can get the apps logging in to Headscale I will be switching.