> For the complete documentation index, see [llms.txt](https://www.iblue.team/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.iblue.team/general-notes-1/install-and-configure-zerotier-client.md).

# 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)
```
