LinuxCommandLibrary

tailscale-up

Connects the client to the Tailscale network.

TLDR

Connect to Tailscale

$ sudo tailscale up
copy


Connect and offer the current machine to be an exit node for internet traffic
$ sudo tailscale up --advertise-exit-node
copy


Connect using a specific node for internet traffic
$ sudo tailscale up --exit-node=[exit_node_ip]
copy


Connect and block incoming connections to the current node
$ sudo tailscale up --shields-up
copy


Connect and don't accept DNS configuration from the admin panel (defaults to true)
$ sudo tailscale up --accept-dns=[false]
copy


Connect and configure Tailscale as a subnet router
$ sudo tailscale up --advertise-routes=[10.0.0.0/24],[10.0.1.0/24]
copy


Connect and accept subnet routes from Tailscale
$ sudo tailscale up --accept-routes
copy


Reset unspecified settings to their default values and connect
$ sudo tailscale up --reset
copy

Copied to clipboard