Get NTP Template (v2.0)
GET/sdwan/v2.0/api/templates/ntp/:ntp_id
Get an existing NTP template.
Request
Path Parameters
The NTP configuration ID.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
The default NTP template.
The description of the Network Time Protocol (NTP) configuration. Max characters = 256.
The ID of the NTP configuration template.
The name of the NTP configuration. Max characters = 128.
ntp_servers NTPServer[]required
The configured NTP servers. A minimum of 1 and a maximum of 10 NTP servers can be configured.
The host IP address or domain name.
The maximum polling interval. It specifies the polling intervals for NTP messages in seconds as a power of two.The values of Max Poll can be set between 4 and 17.
The minimum polling interval. It specifies the polling intervals for NTP messages in seconds as a power of two.The values of Min Poll can be set between 4 and 17.
The version of the NTP configuration. NTP versions 2, 3 and 4 are supported.
A information field that can be added to identify the NTP configuration.
{
"default_template": true,
"id": "string",
"name": "string",
"ntp_servers": [
{
"host": "string",
"max_poll": 0,
"min_poll": 0,
"version": 0
}
],
"tags": [
"string"
]
}