NSX-T Data Center REST API
Create an ip pool for a DHCP IPv6 server (Deprecated)
Create an ip pool for a local DHCP IPv6 server Deprecated: Please use Policy API: PUT /policy/api/v1/infra/segments/{segment-id} { "display_name" : "segment-1", "subnets": [ { "gateway_address": "2019::200.1.0.1/128", "dhcp_ranges": [ "2019::200.1.0.0-2019::200.255.255.255" ], "dhcp_config": { "resource_type": "SegmentDhcpV6Config", "lease_time": 84600 }, "network": "2019::200.1.1.1/128" } ], "dhcp_config_path" : "/infra/dhcp-server-configs/dhcp-server-profile", "connectivity_path": "/infra/tier-1s/mgw", "_revision" : 0 }Request:
Method:
POST
URI Path(s):
/api/v1/dhcp/servers/{server-id}/ipv6-ip-pools
Request Headers:
n/a
Query Parameters:
n/a
Request Body:
DhcpV6IpPool+
Example Request:
{ "display_name" : "dhcp-v6-ip-pool-1", "ranges" : [ { "start" : "2019::200.1.0.0", "end" : "2019::200.255.255.255" }] }Successful Response:
Response Code:
201 Created
Response Headers:
Content-type: application/json
Response Body:
DhcpV6IpPool+