Hello,
I am encountering an issue with my ZeroTier connection. After successfully joining the network with the zerotier-cli join
command, my device is still showing as REQUESTING_CONFIGURATION
in the output of zerotier-cli listnetworks
. Despite the 200 join OK
response, the network configuration doesn’t seem to be applied.
Here are the details:
- OS: macOS
zerotier-cli
outputs:
tettet@TetdeMacBook-Air ~ % zerotier-cli status
200 info b549d59691 1.14.2 ONLINE
tettet@TetdeMacBook-Air ~ % zerotier-cli join 35c192ce9b132279
200 join OK
tettet@TetdeMacBook-Air ~ % zerotier-cli peers
200 peers
<ztaddr> <ver> <role> <lat> <link> <lastTX> <lastRX> <path>
35c192ce9b 1.15.3 LEAF -1 RELAY
5caabe9748 1.14.1 PLANET 23 DIRECT 241 214 110.42.10.83/9994
tettet@TetdeMacBook-Air ~ % zerotier-cli listnetworks
200 listnetworks <nwid> <name> <mac> <status> <type> <dev> <ZT assigned ips>
200 listnetworks 35c192ce9b132279 7a:97:5a:4e:58:03 REQUESTING_CONFIGURATION PRIVATE feth198 -
tettet@TetdeMacBook-Air ~ % zerotier-cli info
200 info b549d59691 1.14.2 ONLINE
tettet@TetdeMacBook-Air ~ % zerotier-cli info -j
{
"address": "b549d59691",
"clock": 1755593777455,
"config": {
"settings": {
"allowTcpFallbackRelay": true,
"forceTcpRelay": false,
"homeDir": "/Library/Application Support/ZeroTier/One",
"listeningOn": [
"192.168.88.116/64564",
"192.168.88.116/34726",
"192.168.88.116/59093"
],
"portMappingEnabled": true,
"primaryPort": 59093,
"secondaryPort": 34726,
"softwareUpdate": "apply",
"softwareUpdateChannel": "release",
"surfaceAddresses": [
"218.108.191.95/62152",
"218.108.191.95/62153",
"218.108.191.95/62151"
],
"tertiaryPort": 64564
}
},
"online": true,
"planetWorldId": 149604618,
"planetWorldTimestamp": 1567191349589,
"publicIdentity": "b549d59691:0:8d4aa667ce96453cb21a286bb7299b46e777875065924cd1fd78ecef9ef81778c640ada98116519acd0a619d605a6d89aa6ff1306f71acde998919c3028bd4a7",
"tcpFallbackActive": false,
"version": "1.14.2",
"versionBuild": 0,
"versionMajor": 1,
"versionMinor": 14,
"versionRev": 2
}
Steps I have tried:
- Restarted the ZeroTier service (
sudo launchctl stop com.zerotier.one
andsudo launchctl start com.zerotier.one
). - Reinstall Zerotier mutiple times
- Restarted my machine to refresh network configurations.
- Double-checked the time synchronization between my device and the server.
Despite these efforts, the status remains as REQUESTING_CONFIGURATION
.
Can anyone provide insight into why this might be happening, or any additional troubleshooting steps I can take to resolve the issue?
Thank you for your help!