Skip to main content

Update DHCP Server Configuration (v2.3)

PUT 

/sdwan/v2.3/api/sites/:site_id/dhcpservers/:dhcp_server_id

Update an existing DHCP server configuration for a subnet.

Request

Path Parameters

    site_id stringrequired

    ID of the site. More details on the site can be retrieved by querying the sites API.

    dhcp_server_id stringrequired

    ID of the DHCP server configuration.

Body

Details of dhcp server config to be Updated

    address_family stringrequired

    Possible values: [IPV4, IPV6]

    The DHCP config address values.

    broadcast_address string

    The address of the site.

    custom_options CustomDHCPOptions[]

    Custom options defined for the DHCP server.

  • Array [
  • option_definition stringrequired

    Custom option definition. Max length supported is 1024.

    option_value stringrequired

    Custom option value. Max length supported is 8192.

    vendor_class_identifier string

    Vendor Class Identifier

  • ]
  • default_lease_time int64

    The lease time each client will get if a user does not request a particular lease time.

    description

    Description of each instance of the DHCP server, per subnet.

    disabled boolean

    Uncheck to enable the configuration.

    dns_servers string[]

    The domain name servers for clients to resolve DNS requests. Max number is 3.

    domain_name string

    The domain name for clients. Max length is 256.

    gateway string

    The default gateway for clients.

    id string

    The DHCP server ID.

    ip_ranges IPRange[]required

    The valid IPv4 address range for defined subnet.

  • Array [
  • end_ip stringrequired

    The original end IP address for the defined subnet.

    start_ip stringrequired

    The original start IP address for the defined subnet.

  • ]
  • max_lease_time int64

    The maximum lease time the clients can use.

    network_context_id string

    ID of the network context, if configured.

    static_mappings StaticMappingV2[]

    IP addresses assigned to clients by statically mapping IPs to MAC addresses of the clients.

  • Array [
  • client_duid string

    The DHCP server config duid provided for static mapping.

    ip_address stringrequired

    IP addresses assigned mapped to MAC addresses of the clients.

    mac string

    The mac addresses that need to be mapped.

    name stringrequired

    The name of the static mapping. Max length supported is 256.

  • ]
  • subnet stringrequired

    The subnet for which the DHCP server is being configured.

    tags string[]

    An information field that can be added to identify the DHCP server.

    vrf_context_id string

    The VRF (Virtual Routing and Forwarding) ID.

Responses

Successful Operation

Schema
    address_family stringrequired

    Possible values: [IPV4, IPV6]

    The DHCP config address values.

    broadcast_address string

    The address of the site.

    custom_options CustomDHCPOptions[]

    Custom options defined for the DHCP server.

  • Array [
  • option_definition stringrequired

    Custom option definition. Max length supported is 1024.

    option_value stringrequired

    Custom option value. Max length supported is 8192.

    vendor_class_identifier string

    Vendor Class Identifier

  • ]
  • default_lease_time int64

    The lease time each client will get if a user does not request a particular lease time.

    description

    Description of each instance of the DHCP server, per subnet.

    disabled boolean

    Uncheck to enable the configuration.

    dns_servers string[]

    The domain name servers for clients to resolve DNS requests. Max number is 3.

    domain_name string

    The domain name for clients. Max length is 256.

    gateway string

    The default gateway for clients.

    id string

    The DHCP server ID.

    ip_ranges IPRange[]required

    The valid IPv4 address range for defined subnet.

  • Array [
  • end_ip stringrequired

    The original end IP address for the defined subnet.

    start_ip stringrequired

    The original start IP address for the defined subnet.

  • ]
  • max_lease_time int64

    The maximum lease time the clients can use.

    network_context_id string

    ID of the network context, if configured.

    static_mappings StaticMappingV2[]

    IP addresses assigned to clients by statically mapping IPs to MAC addresses of the clients.

  • Array [
  • client_duid string

    The DHCP server config duid provided for static mapping.

    ip_address stringrequired

    IP addresses assigned mapped to MAC addresses of the clients.

    mac string

    The mac addresses that need to be mapped.

    name stringrequired

    The name of the static mapping. Max length supported is 256.

  • ]
  • subnet stringrequired

    The subnet for which the DHCP server is being configured.

    tags string[]

    An information field that can be added to identify the DHCP server.

    vrf_context_id string

    The VRF (Virtual Routing and Forwarding) ID.

Loading...