Skip to content

Instantly share code, notes, and snippets.

@hkfuertes
Last active March 26, 2025 11:29
Show Gist options
  • Save hkfuertes/9dd10da4a6bd0cdac6706400184539f7 to your computer and use it in GitHub Desktop.
Save hkfuertes/9dd10da4a6bd0cdac6706400184539f7 to your computer and use it in GitHub Desktop.
Guide to install latest version of tailscale on OpenWRT

Prerequisites

Tailscale is a heavy program, you most likely need to configure ex_root to be able to install it.

https://openwrt.org/docs/guide-user/additional-software/extroot_configuration

Installation

  VERSION=1.2.3 # Version as of Nov 6 2024
  wget -O luci-app-tailscale.ipk https://github.com/asvow/luci-app-tailscale/releases/download/v${VERSION}/luci-app-tailscale_${VERSION}_all.ipk
  opkg update
  opkg install ./luci-app-tailscale.ipk
  # Now we update the binaries to latests
  ARCH=mipsle # Use `uname -m` to figure out the arch: https://pkgs.tailscale.com/stable/#static
  TSVERSION=1.80.3
  service tailscale stop
  cd /tmp
  wget https://pkgs.tailscale.com/stable/tailscale_${TSVERSION}_${ARCH}.tgz
  tar -xvzf tailscale_${TSVERSION}_${ARCH}.tgz
  cp tailscale_${TSVERSION}_${ARCH}/tailscale /usr/sbin/tailscale
  cp tailscale_${TSVERSION}_${ARCH}/tailscaled /usr/sbin/tailscaled
  service tailscale start
  reboot

https://github.com/asvow/luci-app-tailscale | https://pkgs.tailscale.com/stable/#static

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