This repo contains the scripts necessary to install and run a tailscale instance on your Unifi Dream Machine (UDM/UDM Pro/UDR/UDM-SE). It does so by piggy-backing on the excellent boostchicken/udm-utilities to provide a persistent service and runs using Tailscale's usermode networking feature.
ⓘ You can confirm your OS version by running /usr/bin/ubnt-device-info firmware_detail
NOTE: UniFi OS 2.x+ support is currently in beta for this project, if you encounter any issues please open an issue and we'll do our best to help you out. Logs and clear descriptions of the steps you took prior to the issue occurring help immensely.
-
Run the
install.shscript to install the latest version of the Tailscale UDM package on your UDM.# Install the latest version of Tailscale UDM curl -sSLq https://raw.github.com/SierraSoftworks/tailscale-udm/main/install.sh | sh
-
Run
tailscale upto start Tailscale. -
Follow the on-screen steps to configure Tailscale and connect it to your network.
-
Confirm that Tailscale is working by running
tailscale status
You can configure Tailscale using all the normal tailscale up options, you should be able to
find tailscale on your path after installation.
tailscale up --advertise-routes=10.0.0.0/24 --advertise-exit-node --advertise-tags=tag:itOn UniFi OS 2.x+, Tailscale is managed using systemd and the tailscaled service. You can
restart it using the following command.
systemctl restart tailscaledUpgrading Tailscale on UniFi OS 2.x+ can be done either using apt or by using the manage.sh
helper script.
apt update && apt install -y tailscale/data/tailscale/manage.sh update
# Or, if you are connected over Tailscale and want to run the update anyway
nohup /data/tailscale/manage.sh update!To remove Tailscale, you can run the following command, or run the steps below manually.
/data/tailscale/manage.sh uninstall- Kill the
tailscaleddaemon withsystemctl stop tailscaled. - Remove the
tailscalepackage usingdpkg -P tailscale. - Remove the management script and state using
rm -Rf /data/tailscale.
ⓘ You can confirm your OS version by running /usr/bin/ubnt-device-info firmware_detail
-
Follow the steps to install the boostchicken
on-boot-scripthere.⚠ Make sure that you exit the
unifi-osshell before moving onto step 2 (or you won't be able to find the/mnt/datadirectory). -
Run the
install.shscript to install the latest version of the Tailscale UDM package on your UDM.# Install the latest version of Tailscale UDM curl -sSLq https://raw.github.com/SierraSoftworks/tailscale-udm/main/install.sh | sh
-
Start Tailscale using
/mnt/data/tailscale/tailscale up. -
Follow the on-screen steps to configure
tailscaleand connect it to your network. -
Confirm that Tailscale is working by running
/mnt/data/tailscale/tailscale status
You can configure Tailscale using all the normal tailscale up options, you'll find the binary at
/mnt/data/tailscale/tailscale. Unfortunately we can't make changes to your $PATH to expose the
normal tailscale command, so you'll need to specify the full path when calling it.
/mnt/data/tailscale/tailscale up --advertise-routes=10.0.0.0/24 --advertise-exit-node --advertise-tags=tag:itThe manage.sh script takes care of installing, starting, stopping, updating, and uninstalling Tailscale.
Run it without any arguments to see the options.
/mnt/data/tailscale/manage.sh restart/mnt/data/tailscale/manage.sh update
# Or, if you are connected over Tailscale and want to run the update anyway
nohup /mnt/data/tailscale/manage.sh update!To remove Tailscale, you can run the following command, or run the steps below manually.
/mnt/data/tailscale/manage.sh uninstall- Kill the
tailscaleddaemon withkillall tailscaled. - Remove the boot script using
rm /mnt/data/on_boot.d/10-tailscaled.sh - Have tailscale cleanup after itself using
/mnt/data/tailscale/tailscaled --cleanup. - Remove the tailscale binaries and state using
rm -Rf /mnt/data/tailscale.
There are clearly lots of folks who are interested in running Tailscale on their UDMs. If you're one of those people and have an idea for how this can be improved, please create a PR and we'll be more than happy to incorporate the changes.
You do this by updating your Tailscale configuration as you would on any other machine,
just remember to provide the full path to the tailscale binary when doing so.
# Specify the routes you'd like to advertise using their CIDR notation
# UniFi OS 1.x
/mnt/data/tailscale/tailscale up --advertise-routes="10.0.0.0/24,192.168.0.0/24"
# UniFi OS 2.x/3.x
tailscale up --advertise-routes="10.0.0.0/24,192.168.0.0/24"In theory, yes - however it does require manual changes to your routing rules and these will need to be updated if you take advantage of WAN fail-over. This has been discussed in more detail here.
Note that we do not currently include this in tailscale-udm due to the risk of breaking conflicts in future.
Tailscale runs as a userspace networking component on the UDM rather than as a TUN
interface, which means you won't see it in the ip addr list.
You bet, make sure you're running the latest version of Tailscale and then run tailscale up --ssh
to enable it. You'll need to setup SSH ACLs in your account by following
this guide.
# UniFi OS 1.x
# Update Tailscale to its latest version
/mnt/data/tailscale/manage.sh update!
# Enable SSH advertisment through Tailscale
/mnt/data/tailscale/tailscale up --ssh
# UniFi OS 2.x/3.x
# Update Tailscale to its latest version
/data/tailscale/manage.sh update!
# Enable SSH advertisment through Tailscale
tailscale up --ssh