diff options
author | Jan Pavlinec <jan.pavlinec@nic.cz> | 2021-05-07 18:53:58 +0200 |
---|---|---|
committer | Jan Pavlinec <jan.pavlinec@nic.cz> | 2021-05-10 18:34:04 +0200 |
commit | 791de7b5d07e54556888f3c6689b8bf6d29c184d (patch) | |
tree | 63a5a576b240dbf7724f7d4a86ef55a0ec15bf02 /net/tailscale | |
parent | ff76ee78967c83cf25e99e6c1b0daabf540918d3 (diff) |
tailscale: update to version 1.8.1
Add readme with simple tailscale howto.
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
Diffstat (limited to 'net/tailscale')
-rw-r--r-- | net/tailscale/Makefile | 4 | ||||
-rw-r--r-- | net/tailscale/README.md | 28 |
2 files changed, 30 insertions, 2 deletions
diff --git a/net/tailscale/Makefile b/net/tailscale/Makefile index b5d353aea..c737ca2c4 100644 --- a/net/tailscale/Makefile +++ b/net/tailscale/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=tailscale -PKG_VERSION:=1.6.0 +PKG_VERSION:=1.8.1 PKG_RELEASE:=1 PKG_SOURCE:=tailscale-$(PKG_VERSION).tar.gz PKG_SOURCE_URL:=https://codeload.github.com/tailscale/tailscale/tar.gz/v$(PKG_VERSION)? -PKG_HASH:=4591c6f6d3d1f9d5aecaa63dd580c389067edeb7287cd587b108ea6a0aa811e7 +PKG_HASH:=5d08e9c4cbb51da94951281003f3911933962dad0a85003e4b1852ac7b023bcd PKG_MAINTAINER:=Jan Pavlinec <jan.pavlinec@nic.cz> PKG_LICENSE:=BSD-3-Clause diff --git a/net/tailscale/README.md b/net/tailscale/README.md new file mode 100644 index 000000000..d3b58e7ce --- /dev/null +++ b/net/tailscale/README.md @@ -0,0 +1,28 @@ +# Tailscale +This readme should help you with tailscale client setup. + +## Install +There are two packages related to tailscale. Tailscaled (daemon which has to run every time you want to be connected to VPN) and tailscale (package with a utility which is necessary for registering device). + +To install them run +``` +opkg install tailscale tailscaled +``` + +## First setup + +First, enable and run daemon + +``` +/etc/init.d/tailscale enable +/etc/init.d/tailscale start +``` + +Then you should use tailscale utility to get a login link for your device. + +Run command and finish device registration with the given URL. +``` +tailscale up +``` + +After that, you should see your router in tailscale admin page. |