# Install and Configure ZeroTier client

The official ZeroTier [documentation ](https://www.zerotier.com/download/)provides a way to install ZeroTier through a single line;

```
curl -s https://install.zerotier.com | sudo bash
```

However, a recommended option would be to first download the same install script, review/validate it, then execute it;

```
curl -s https://install.zerotier.com -o zerotier.sh; chmod +x zerotier.sh
(review zerotier.sh)
./zerotier.sh
```

Once installed -&#x20;

```
zerotier-cli status
(shows current node address and service status)

zerotier-cli join xxxxxxx
(joins network ID and outputs join status)

zerotier-cli leave xxxxxxx
(leaves network ID and shows status)

zerotier-cli listnetworks
(shows network IDs associated with, node, vMAC, and IP)
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.iblue.team/general-notes-1/install-and-configure-zerotier-client.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
