Apply deployment options from an IPv4 network template to a DHCP range.
Request
POST http://<Gateway_url>/Apply-Template/configuration/{configName}/ip/v4/dhcp-range/{dhcpRange}/template/{templateName}
Parameters
| Parameter | Description |
|---|---|
| configName | The object ID of the configuration. |
| dhcpRange | The IP addresses of the DHCP range. For example, 10.0.0.1-10.0.0.5. |
| templateName | The name of the IPv4 network template. |
Successful
response
{
status: "SUCCESS",
payload: {
template_options: 2,
option_success: [
{
option: {
id: 396827,
type: "DHCPClient",
name: "ntp-server",
...
},
option: {
id: 396828,
type: "DHCPVendorClient",
name: "test",
...
}
],
option_fail: []
}
}