mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 15:33:50 +02:00
tailscale-up: add page (#6513)
This commit is contained in:
parent
2a3b737c65
commit
60e1eda7e2
2 changed files with 38 additions and 0 deletions
37
pages/common/tailscale-up.md
Normal file
37
pages/common/tailscale-up.md
Normal file
|
@ -0,0 +1,37 @@
|
|||
# tailscale up
|
||||
|
||||
> Connects the client to the Tailscale network.
|
||||
> In version 1.8 and above, command line arguments are stored and reused until they're overwritten or `--reset` is called.
|
||||
> More information: <https://tailscale.com/kb/admin/>.
|
||||
|
||||
- Connect to Tailscale:
|
||||
|
||||
`sudo tailscale up`
|
||||
|
||||
- Connect and offer the current machine to be an exit node for internet traffic:
|
||||
|
||||
`sudo tailscale up --advertise-exit-node`
|
||||
|
||||
- Connect using a specific node for internet traffic:
|
||||
|
||||
`sudo tailscale up --exit-node={{exit_node_ip}}`
|
||||
|
||||
- Connect and block incoming connections to the current node:
|
||||
|
||||
`sudo tailscale up --shields-up`
|
||||
|
||||
- Connect and don't accept DNS configuration from the admin panel (defaults to `true`):
|
||||
|
||||
`sudo tailscale up --accept-dns={{false}}`
|
||||
|
||||
- Connect and configure Tailscale as a subnet router:
|
||||
|
||||
`sudo tailscale up --advertise-routes={{10.0.0.0/24}},{{10.0.1.0/24}}`
|
||||
|
||||
- Connect and accept subnet routes from Tailscale:
|
||||
|
||||
`sudo tailscale up --accept-routes`
|
||||
|
||||
- Reset unspecified settings to their default values and connect:
|
||||
|
||||
`sudo tailscale up --reset`
|
|
@ -1,6 +1,7 @@
|
|||
# tailscale
|
||||
|
||||
> A private WireGuard network service.
|
||||
> Some subcommands such as `tailscale up` have their own usage documentation.
|
||||
> More information: <https://tailscale.com>.
|
||||
|
||||
- Connect to Tailscale:
|
||||
|
|
Loading…
Add table
Reference in a new issue