A newer release of this product is available.
Cluster NTP servers endpoint overview
Contributors
Suggest changes
- PDF of this doc site
Collection of separate PDF docs
Creating your file...
This may take a few minutes. Thanks for your patience.
Your file is ready
Overview
You can use this API to add external NTP servers to a cluster, update the configuration, use NTP keys, and retrieve the current NTP server configuration.
Adding an NTP server to a cluster
To add an NTP server to a cluster, issue a POST /cluster/ntp/servers request.
Fields used for adding an NTP server
Except for the name of the NTP server (host name or IP address), which is specified by the server, all fields are optional:
-
version
-
key
If the key is provided in POST, authentication_enabled
is set to true
by default.
Examples
Adding an NTP server
# Body body = { "server": "time.nist.gov" } # Request curl -X POST "https://<mgmt-ip>/api/cluster/ntp/servers" -d body
Adding an NTP server with an authentication key
# Body body = { "server": "time.nist.gov", "key": { "id": 10 } } # Request curl -X POST "https://<mgmt-ip>/api/cluster/ntp/servers" -d body
Enabling a previously configured shared key (ID, type, and value) for an NTP server
A combination of key number or identifier (ID), type of key, and shared key value is created with /api/cluster/ntp/keys. This operation will validate the NTP authentication works.
# Body body = { "key": { "id": 10 }, "authentication_enabled": true } # Request curl -X PATCH "https://<mgmt-ip>/api/cluster/ntp/servers/time.nist.gov" -d body