The admin socket provides an interface to query and configure Ruvchain during runtime. By default, Ruvchain listens for admin connections on localhost:5001
.
The ruvchainctl
utility provides a human-friendly CLI interface to the Ruvchain admin socket. It can connect to both local and remote Ruvchain instances, and accepts the same verbs as below. Every field is specified in the field=value
format.
Examples include:
ruvchainctl getpeers
To get a list of supported commands:
ruvchainctl list
To perform an action on a remote Ruvchain node, specify the -endpoint
parameter:
ruvchainctl -endpoint=tcp://10.0.0.1:5001 getpeers
ruvchainctl -endpoint=unix:///var/run/ruvchain.sock getpeers
To get the JSON response body instead of a “friendly” output, specify the -json
parameter:
ruvchainctl -json getpeers
The Ruvchain admin socket uses JSON for request and response formats.
A request must be:
\n
characterOnce a valid request is received, the response stanza is returned.
The structure of a typical request is as below:
{
"request": "XXX",
"foo": "bar",
"baz": "qux"
}
A request:
"request"
(string
) field - a value containing the verb of the request"keepalive"
(bool
) field - a true
or false
value stating whether the connection should be kept alive for further requests (if not specified, Ruvchain will close the admin connection after returning a response)A typical response is structured like this:
{
"request":
{
"request": "XXX",
"foo": "bar",
"baz": "qux"
},
"response":
{
},
"status": "success"
}
A response:
"request"
(string
) field, which contains the body of the original request"status"
(string
) field, which is either "success"
or "error"
"response"
section, which contains the response data from the request"error"
(string
) field, which contains error textThe "request"
field contains a verb that describes which request to perform.
getpeers
Expects no additional request fields.
Returns known nodes.
key
(string
) contains the PublicKey
of the remote nodeport
(int
)rest
(int
)getPeers
Expects no additional request fields.
Returns one or more records containing information about active peer sessions. The first record typically refers to the current node.
For each IPv6 address:
key
(string
) contains the PublicKey
of the remote nodeport
(uint8
) contains the local switch port number for that peercoords
([]int
) contains the coordinates of the node on the spanning treeremote
(string
) contains the peering URI of the remote peergetSelf
Expects no additional request fields.
Returns exactly one record containing information about the current Ruvchain node.
For the current IPv6 address:
key
(string
) contains the EncryptionPublicKey
of the current nodebuild_name
(string
) contains the build name, if available (e.g. ruvchain
, ruvchain-develop
)build_version
(string
) contains the build version, if available (e.g. 0.3.0
, 0.2.7-0091
)coords
([]int
) contains the coordinates of the node on the spanning treesubnet
(string
) contains the routed IPv6 subnet for this hostgetSessions
Expects no additional request fields.
Returns zero or more records containing information about open sessions between the current Ruvchain node and other nodes. Open sessions indicate that traffic has been exchanged with the remote node recently.
For each IPv6 address:
key
(string
) contains the EncryptionPublicKey
of the remote nodegetTunTap
Expects no additional request fields.
Returns exactly one record containing information about the current node’s TUN/TAP adapter.
For each adapter:
mtu
(uint8
) contains the MTU of the local TUN/TAP adaptergetMulticastInterfaces
Expects no additional request fields.
Returns zero or more strings containing the enabled multicast peering interfaces.
If zero strings are returned then it is implied that multicast peering is not allowed on any interface.
getNodeInfo
Expects:
key=
string
, hex-encoded public key of the remote node to ping, in the same format as e.g. verbose output from a responseAsks a remote node to respond with their nodeinfo.
Returns a nodeinfo
section with the nodeinfo. This can be in any format, containing any keys.