tailscale kaputt 

failed to connect to local tailscaled (which appears to be running as tailscaled, pid 1234). Got error: 503 Service Unavailable: no backend

…haut mir mein Root-Server bei Strato um die Ohren, wenn ich diesen durchboote und anschließend versuche, tailscale zu starten. Google half weiter: tailscale benötigt ein tun network device, welches beim Reboot verloren geht:

Tailscale client on Linux needs access to /dev/net/tun to be able to create a tun network device. What Linux distro are you using? If you are running in a container, you might need to explicitly pass /dev/net/tun to the container, or use userspace networking mode.

https://github.com/tailscale/tailscale/issues/6941#issuecomment-1380384849

Ich hab dann mal das folgende Shell-Script gefriemelt – klappt!:

#!/bin/bash

sudo mkdir /dev/net
sudo mknod /dev/net/tun c 10 200
sudo systemctl restart tailscaled
sudo tailscale up