mirror of
https://github.com/unifi-utilities/unifios-utilities.git
synced 2024-08-30 18:32:21 +00:00
162d4ce478
* Corrected file path by removing /mnt * Update 20-zerotier.sh * Update README.md * removed /mnt directory as evertyhing is done in /data * Corrected URL * Update remote_install.sh * Auto check data dir * fixed adguard installation * More data fixes * Fix dns common data path * fixed haproxy readme
28 lines
585 B
Markdown
28 lines
585 B
Markdown
# Run ZeroTier VPN on your UDM
|
|
|
|
## Install
|
|
|
|
1. Copy 20-zerotier.sh to /data/on_boot.d
|
|
2. Create directories for persistent Zerotier configuration
|
|
|
|
```
|
|
mkdir -p /data/zerotier-one
|
|
```
|
|
|
|
3. Start the zeriotier container
|
|
```
|
|
podman run -d \
|
|
--name zerotier-one \
|
|
--device=/dev/net/tun \
|
|
--net=host \
|
|
--cap-add=NET_ADMIN \
|
|
--cap-add=SYS_ADMIN \
|
|
--cap-add=CAP_SYS_RAWIO \
|
|
-v /data/zerotier-one:/var/lib/zerotier-one \
|
|
bltavares/zerotier
|
|
```
|
|
4. Join your zerotier network
|
|
```
|
|
podman exec zerotier-one zerotier-cli join <your network id>
|
|
```
|