About Blog FAQ Implementation Installation GitHub

Admin API

The admin socket provides an interface to query and configure Yggdrasil during runtime. By default, Yggdrasil listens for admin connections on localhost:9001.

Control Utility

The yggdrasilctl utility provides a human-friendly CLI interface to the Yggdrasil admin socket. It can connect to both local and remote Yggdrasil instances, and accepts the same verbs as below. Every field is specified in the field=value format.

Examples include:

yggdrasilctl getDHT
yggdrasilctl getPeers

To get a list of supported commands:

yggdrasilctl list

To perform an action on a remote Yggdrasil node, specify the -endpoint parameter:

yggdrasilctl -endpoint=tcp://10.0.0.1:9001 getPeers
yggdrasilctl -endpoint=unix:///var/run/yggdrasil.sock getDHT

To get the JSON response body instead of a “friendly” output, specify the -json parameter:

yggdrasilctl -json getPeers

Admin Socket

The Yggdrasil admin socket uses JSON for request and response formats.

A request must be:

Once a valid request is received, the response stanza is returned.

Request

The structure of a typical request is as below:

{
  "request": "XXX",
  "foo": "bar",
  "baz": "qux"
}

A request:

Response

A typical response is structured like this:

{
  "request":
  {
    "request": "XXX",
    "foo": "bar",
    "baz": "qux"
  },

  "response":
  {
  },

  "status": "success"
}

A response:

Request Types

The "request" field contains a verb that describes which request to perform.

getDHT

Expects no additional request fields.

Returns known nodes in the DHT.

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:

getSelf

Expects no additional request fields.

Returns exactly one record containing information about the current Yggdrasil node.

For the current IPv6 address:

getSessions

Expects no additional request fields.

Returns zero or more records containing information about open sessions between the current Yggdrasil node and other nodes. Open sessions indicate that traffic has been exchanged with the remote node recently.

For each IPv6 address:

getTunTap

Expects no additional request fields.

Returns exactly one record containing information about the current node’s TUN/TAP adapter.

For each adapter:

getMulticastInterfaces

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:

Asks a remote node to respond with their nodeinfo.

Returns a nodeinfo section with the nodeinfo. This can be in any format, containing any keys.