Last active
December 22, 2022 09:19
-
-
Save PJTewkesbury/bcc06c4a666ea37c61b1c65bd3db898a to your computer and use it in GitHub Desktop.
Install TailScale
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl -fsSL https://pkgs.tailscale.com/stable/raspbian/buster.gpg | sudo apt-key add - | |
curl -fsSL https://pkgs.tailscale.com/stable/raspbian/buster.list | sudo tee /etc/apt/sources.list.d/tailscale.list | |
sudo apt-get update | |
sudo apt-get install tailscale | |
sudo systemctl start tailscale | |
sudo tailscale up --authkey tskey-auth-kKtuoK5CNTRL-k5sMzVPkz6Nvn2g6Efw67Nf5qJ31MGp2 --hostname=$HOSTNAME --ssh | |
sudo ip addr show tailscale0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment