docs-simoncor-net/docs/tailscale/client.md
2025-06-02 18:29:20 +02:00

30 lines
508 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
```