Skip to content

Instantly share code, notes, and snippets.

@pedi
Forked from tux7k/READYNAS-Tailscale.md
Created February 19, 2025 01:43
Show Gist options
  • Save pedi/0145447544ec3e7a92065712f2610619 to your computer and use it in GitHub Desktop.
Save pedi/0145447544ec3e7a92065712f2610619 to your computer and use it in GitHub Desktop.
How to setup Tailscale on NETGEAR READYNAS Devices

How to setup Tailscale on NETGEAR READYNAS Devices

Download and Extract Tailscale

  1. Go to the the Tailscale Linux Download Website and select 'Other' as the distro.
  2. Enable SSH on the NAS, and SSH into the admin account
  3. Do su and type in the admin password
  4. Download the stable release for 'arm' not arm64 in the admin home directory
  5. Unpack the archive with tar xvf tailscale_VERSION_ARCH.tgz

Moving files into locations

  1. tailscale -> /usr/bin
  2. tailscaled -> /usr/sbin
  3. systemd/tailscaled.service -> /etc/systemd/system

Chmoding files to execute

  1. chmod +x /usr/bin/tailscale
  2. chmod +x /usr/sbin/tailscaled

Editing the systemd service to work

  1. Remove lines 4 & 5 (the Wants= line and After= line)
  2. Remove line 8 (the EnvironmentFile= line)
  3. Remove everything after tailscaled.sock on the line starting with ExecStart=

The file should look like this

Starting / Enabling the service

  1. systemctl start tailscaled
  2. tailscale up
  3. systemctl enable tailscaled

Done! ๐ŸŽ‰

Tell me if anything is broken or doesn't work.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment