27 lines
No EOL
917 B
Markdown
27 lines
No EOL
917 B
Markdown
# Tailscale
|
|
|
|
I made my Tailscale account with the email noesfacilvivirsinemail<
|
|
do-not-parse-me>at<please>gmail<seriously>.com.
|
|
|
|
On Umbrel it just works magically, no clue on how it's rolling.
|
|
|
|
On my phone it's just an app.
|
|
|
|
On navaja, I decided to install it straightaway, without docker. I followed
|
|
the instructions here: https://tailscale.com/kb/1038/install-debian-bullseye/.
|
|
|
|
```shell
|
|
curl -fsSL https://pkgs.tailscale.com/stable/debian/bullseye.noarmor.gpg | sudo tee /usr/share/keyrings/tailscale-archive-keyring.gpg >/dev/null
|
|
curl -fsSL https://pkgs.tailscale.com/stable/debian/bullseye.tailscale-keyring.list | sudo tee /etc/apt/sources.list.d/tailscale.list
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install tailscale
|
|
|
|
sudo tailscale up
|
|
|
|
# In between here, you need to login through the browser
|
|
# A link will appear. It takes you to a tailscale page where you need to enter
|
|
# your credentials.
|
|
|
|
tailscale ip -4
|
|
``` |