mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-14 02:27:38 -07:00
Add more helpful example stuff.
This commit is contained in:
parent
6b5bb0b278
commit
97dee9de36
3 changed files with 48 additions and 1 deletions
20
examples/api/README.md
Normal file
20
examples/api/README.md
Normal file
|
@ -0,0 +1,20 @@
|
|||
API Examples
|
||||
======
|
||||
|
||||
This folder contains examples that can be posted with curl or another http query utility to a local instance.
|
||||
|
||||
To test querying with curl:
|
||||
|
||||
curl -H 'X-ZT1-Auth:AUTHTOKEN' http://127.0.0.1:9993/status
|
||||
|
||||
To create a public network on a local controller (service must be built with "make ZT\_ENABLE\_NETWORK\_CONTROLLER=1"):
|
||||
|
||||
curl -H 'X-ZT1-Auth:AUTHTOKEN' -X POST -d @public.json http://127.0.0.1:9993/controller/network/################
|
||||
|
||||
Replace AUTHTOKEN with the contents of this instance's authtoken.secret file and ################ with a valid network ID. Its first 10 hex digits must be the ZeroTier address of the controller itself, while the last 6 hex digits can be anything. Also be sure to change the port if you have this instance listening somewhere other than 9993.
|
||||
|
||||
After POSTing you can double check the network config with:
|
||||
|
||||
curl -H 'X-ZT1-Auth:AUTHTOKEN' http://127.0.0.1:9993/controller/network/################
|
||||
|
||||
Once this network is created (and if your controller is online, etc.) you can then join this network from any device anywhere in the world and it will receive a valid network configuration.
|
Loading…
Add table
Add a link
Reference in a new issue