Skip to content

Commit 46401fe

Browse files
authored
Fix missing info in zerotier.md (#247)
1 parent 90498cc commit 46401fe

1 file changed

Lines changed: 17 additions & 4 deletions

File tree

src/General/zerotier.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,37 @@
22
title: "ZeroTier setup"
33
authors:
44
- "@Zeglius"
5+
- "@adokitkat"
56
---
67

78
!!! warning
89
Setup requires **layering** and is [not recommended](/Installing_and_Managing_Software/rpm-ostree/#major-caveats-using-rpm-ostree).
910

1011
## Installing
1112

12-
Select, copy and paste the following to the terminal (pasting is <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>V</kbd>)
13+
Add ZeroTier repository to yum by copying the following to the terminal (pasting is <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>V</kbd>)
1314

1415
```sh
1516
sudo tee >/dev/null /etc/yum.repos.d/zerotier.repo <<'EOF'
1617
[zerotier]
1718
name=ZeroTier, Inc. RPM Release Repository
18-
baseurl=https://repo.zerotier.com/yum/$basearch/
19+
baseurl=https://download.zerotier.com/redhat/fc/$releasever
1920
enabled=1
2021
gpgcheck=1
2122
gpgkey=https://download.zerotier.com/contact@zerotier.com.gpg
2223
EOF
2324
```
2425

25-
Reboot, and run this at the terminal:
26+
Install ZeroTier One:
2627

2728
```sh
28-
systemctl enable zerotier-one.service
29+
sudo rpm-ostree install zerotier-one
30+
```
31+
32+
Reboot the system, and then enable ZeroTier service by running this command in the terminal:
33+
34+
```sh
35+
sudo systemctl enable --now zerotier-one
2936
```
3037

3138
## Uninstalling
@@ -42,3 +49,9 @@ Reboot, and run this at the terminal:
4249
```sh
4350
sudo rm -fv /etc/yum.repos.d/zerotier.repo
4451
```
52+
53+
## Fix not seeing your teammates in games (set routing through the ZeroTier network interface)
54+
55+
Get your ZeroTier network interface name by running: `ifconfig -a` (compare the IP address to one in your ZeroTier web dashboard)
56+
57+
Add the route: `sudo route add -host 255.255.255.255 dev <interface name>`

0 commit comments

Comments
 (0)