Self-Hosted: Why a 'PLANET' listed as member of my network?

Dear All

I try to play with my self-hosted controller.
I created a network and have some nodes join as member.
It run great.

But, this morning I try to check it using python console


import requests
HEADER = {'X-ZT1-AUTH':MY_TOKEN}
nwid = 'zzzzzz'
ep = f'http://mycontroller/controller/network/{nwid}/member'
r = requests.get(ep, headers=HEADER)
ret_members = r.json()
ret_members

and I got

{'wwwwwwwwww': 1,
 'xxxxxxxxxx': 1,
 '62f865ae71': 1,
 '778cde7190': 1,
 'cafe04eba9': 1,
 'cafe9efeb9': 1,
 'zzzzzzzzzz': 1,
 'yyyyyyyyyy': 1}

So there is 4 member with unknown node id.

I try to cross check that 4 using peer API endpoint.

and I got :


{'address': '62f865ae71', 'isBonded': False, 'latency': 22, 'paths': [{'active': True, 'address': '50.7.252.138/9993', 'expired': False, 'lastReceive': 1696299607837, 'lastSend': 1696299833102, 'localSocket': 93829603155136, 'preferred': False, 'trustedPathId': 0}, {'active': True, 'address': '50.7.252.138/9993', 'expired': False, 'lastReceive': 1696299833124, 'lastSend': 1696299913201, 'localSocket': 93829603509088, 'preferred': True, 'trustedPathId': 0}], 'role': 'PLANET', 'tunneled': False, 'version': '-1.-1.-1', 'versionMajor': -1, 'versionMinor': -1, 'versionRev': -1}

{'address': '778cde7190', 'isBonded': False, 'latency': 273, 'paths': [{'active': True, 'address': '103.195.103.66/9993', 'expired': False, 'lastReceive': 1696299833375, 'lastSend': 1696299833102, 'localSocket': 93829603509088, 'preferred': True, 'trustedPathId': 0}], 'role': 'PLANET', 'tunneled': False, 'version': '-1.-1.-1', 'versionMajor': -1, 'versionMinor': -1, 'versionRev': -1}

{'address': 'cafe04eba9', 'isBonded': False, 'latency': 192, 'paths': [{'active': True, 'address': '84.17.53.155/9993', 'expired': False, 'lastReceive': 1696300058558, 'lastSend': 1696300058366, 'localSocket': 93829603558992, 'preferred': True, 'trustedPathId': 0}], 'role': 'PLANET', 'tunneled': False, 'version': '-1.-1.-1', 'versionMajor': -1, 'versionMinor': -1, 'versionRev': -1}


{'address': 'cafe9efeb9', 'isBonded': False, 'latency': 198, 'paths': [{'active': True, 'address': '104.194.8.134/9993', 'expired': False, 'lastReceive': 1696300058565, 'lastSend': 1696300058366, 'localSocket': 93829603558992, 'preferred': True, 'trustedPathId': 0}], 'role': 'PLANET', 'tunneled': False, 'version': '-1.-1.-1', 'versionMajor': -1, 'versionMinor': -1, 'versionRev': -1}

I knew that the first 3 IP Address shown in ‘paths’ is assosiated with zerotier.com, and the forth AS Name is ‘RELIABLESITE’.

I knew that 4 nodes is normal to shown in peers list since it’s role is ‘PLANET’.

My question is, why that 4 node also listed as my network’s member?
Note: I tried to ‘delete’ that nodes, but still keep comming

Sincerely
-bino-

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.