docs-simoncor-net/docs/tailscale/client.md
2025-06-05 11:22:44 +02:00

30 lines
507 B
Markdown

# Client
## Linux Install
```shell
curl -fsSL https://tailscale.com/install.sh | sudo sh
```
## Connect with Headscale
Manual authentication:
```shell
sudo tailscale up \
--login-server=https://headscale.example.com \
--accept-routes \
--operator=simon \
--accept-dns
```
Key-based authentication:
```shell
sudo tailscale up \
--login-server=https://headscale.example.com \
--accept-routes \
--operator=simon \
--accept-dns \
--auth-key=XXXXXXXXXXXXXXXXXXXXXX
```