Skip to main content
Skip table of contents

Обновление DHCP пула

Обновление DHCP пула

Обновление DHCP пула в рамках одной группы

PUT /api/admin/v1/dhcp-subnets/{subnet}

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

int subnet, уникальный идентификатор DHCP пула


ipv4 network, сеть


integer mask, маска подсети


string relay_list, IP-адреса релея


ipv4 option_routers, адрес роутера


array pools, массив подсетей

object array

ipv4 pools. REQUIRED, .end_address конечный IP


ipv4 pools. REQUIRED, .end_address конечный IP


integer dhcp_subnet_group_id, id группы DHCP пулов, в рамках которой нужно создать DHCP пул

200 OK

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

JSON
{
    "id": 1807,
    "subnet": "192.168.204.0/24",
    "relay": "[\"192.168.204.1\"]",
    "option_routers": "192.168.204.1",
    "pools": [
        {
            "id": 1862,
            "start_address": "192.168.204.240",
            "end_address": "192.168.204.253"
        }
    ],
    "dhcp_subnet_group": {
        "id": 65,
        "title": "Группа"
    }
}

401 Unauthorized

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

cURL
BASH
curl -k --request POST \
	--url 'https://your-domain/api/admin/v1/dhcp-subnets/{subnet}' \
	--header 'Content-Type: application/json' \
	--header 'Accept: application/json' \
	--data '{
    "subnet": 0,
    "network": "ipv4",
    "mask": "integer",
    "relay_list": "string",
    "option_routers": "ipv4",
    "pools": {
        "": "ipv4"
    },
    "pools.": "void",
    "dhcp_subnet_group_id": "integer"
}'
PHP
PHP
$data = array (
  'subnet' => 0,
  'network' => 'ipv4',
  'mask' => 'integer',
  'relay_list' => 'string',
  'option_routers' => 'ipv4',
  'pools' => 
  array (
    '' => 'ipv4',
  ),
  'pools.' => 'void',
  'dhcp_subnet_group_id' => 'integer',
);
$context = stream_context_create([
	'ssl'=>['verify_peer' => false],
	'http' => [
		'method' => 'PUT',
		'header' => "Content-Type: application/json\r
Accept: application/json",
		'content'=>json_encode($data)
	]
]);
$result = file_get_contents('https://your-domain/api/admin/v1/dhcp-subnets/{subnet}', false, $context);
JavaScript errors detected

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

If this problem persists, please contact our support.