2021-09-14 17:42:17 -03:00
# tailscale up
2024-02-10 01:03:35 -03:00
> Connect the client to the Tailscale network.
2025-03-15 21:55:25 +00:00
> Note: run `sudo tailscale set --operator $USER` to allow the current user to run these commands.
> All options described here can be changed later using `tailscale set --option argument`. Use `--option=false` to disable options that don't require arguments.
2023-11-19 22:07:13 +01:00
> More information: <https://tailscale.com/kb/1080/cli/#up>.
2021-09-14 17:42:17 -03:00
- Connect to Tailscale:
2025-03-15 21:55:25 +00:00
`tailscale up`
2021-09-14 17:42:17 -03:00
- Connect and offer the current machine to be an exit node for internet traffic:
2025-03-15 21:55:25 +00:00
`tailscale up --advertise-exit-node`
2021-09-14 17:42:17 -03:00
- Connect using a specific node for internet traffic:
2025-03-15 21:55:25 +00:00
`tailscale up --exit-node {{exit_node_ip}}`
2021-09-14 17:42:17 -03:00
- Connect and block incoming connections to the current node:
2025-03-15 21:55:25 +00:00
`tailscale up --shields-up`
2021-09-14 17:42:17 -03:00
- Connect and don't accept DNS configuration from the admin panel (defaults to `true` ):
2025-03-15 21:55:25 +00:00
`tailscale up --accept-dns=false`
2021-09-14 17:42:17 -03:00
- Connect and configure Tailscale as a subnet router:
2025-03-15 21:55:25 +00:00
`tailscale up --advertise-routes {{10.0.0.0/24,10.0.1.0/24,...}}`
2021-09-14 17:42:17 -03:00
- Connect and accept subnet routes from Tailscale:
2025-03-15 21:55:25 +00:00
`tailscale up --accept-routes`
2021-09-14 17:42:17 -03:00
- Reset unspecified settings to their default values and connect:
2025-03-15 21:55:25 +00:00
`tailscale up --reset`