@ -12,7 +12,7 @@ The data should be a JSON object with a anonymous top-level object and "route" a
"device" must contain at least one device that is reachable. A router is commonly used as the only object for the network as it is necessary in most setups.
Every device should contain the CRXN IPv6 address, along the optional list of services as "service".
Every device can contain the type of the device (router, generic, server), along with the list of services as "service". When no type is defined, generic is assumed.
Services must have a type (eg. tcp, udp, http, rsync, git) and at least one endpoint in the endpoints list.
@ -30,13 +30,12 @@ Here's a example that you may modify to your needs.
"fdaa:bbcc:ddee::/48": {
"description": "My home network",
"device": [
"router": {
"fdaa:bbcc:ddee::1": {
"type": "router",
"description": "My custom router running BIRD",
"address": "fdaa:bbcc:ddee::1"
},
"mail": {
"fdaa:bbcc:ddee::5": {
"description": "Electronic mail endpoint",
"address": "fdaa:bbcc:ddee::5",
"service": [
{
"type": "smtp",
@ -63,7 +62,9 @@ Here's a example that you may modify to your needs.