One stop shop to install Tailscale on AWS Linux Distros.
/bin/bash -c "$(curl -fsSL https://gist.githubusercontent.com/seripap/448757b042912eaa205ad7009148febd/raw/install.sh)"
sudo tailscale up
sudo tailscale up --advertise-routes=
#!/bin/bash | |
set -u | |
sudo yum update gnupg2 | |
sudo yum install yum-utils | |
sudo yum-config-manager --add-repo https://pkgs.tailscale.com/stable/amazon-linux/2/tailscale.repo | |
sudo yum install tailscale | |
echo 'net.ipv4.ip_forward = 1' | sudo tee -a /etc/sysctl.conf | |
echo 'net.ipv6.conf.all.forwarding = 1' | sudo tee -a /etc/sysctl.conf | |
sudo sysctl -p /etc/sysctl.conf |