Skip to main content
Skip table of contents

Создание NTP сервера

Создание NTP сервера

NTP сервера нигде, кроме как для отображения, не используются, эта сущность добавлена, чтобы хранить список серверов. Адреса NTP серверов указываются при Создание конфигураций с типом NTP

POST /api/admin/v1/ntp-servers

Параметры метода

ip ip, IP-адрес NTP сервера


string description, описание NTP сервера


bool is_enabled, включить NTP сервер

200 OK

Успешный ответ

JSON
{
    "id": 1,
    "ip": "192.168.1.100",
    "description": "description",
    "is_enabled": 0,
    "created_at": "2022-05-26 12:03:31"
}

401 Unauthorized

Токен авторизации не передан или не валидный Получение токена

cURL
BASH
curl -k --request POST \
	--url 'https://your-domain/api/admin/v1/ntp-servers' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--data '{
    "ip": "ip",
    "description": "string",
    "is_enabled": true
}'
PHP
PHP
$data = array (
  'ip' => 'ip',
  'description' => 'string',
  'is_enabled' => true,
);
$context = stream_context_create([
	'ssl'=>['verify_peer' => false],
	'http' => [
		'method' => 'POST',
		'header' => "Content-Type: application/json\r
Accept: application/json",
		'content'=>json_encode($data)
	]
]);
$result = file_get_contents('https://your-domain/api/admin/v1/ntp-servers', false, $context);
JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.