- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Setting IPv4 DHCP Failover Association using API
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-22-2024 09:21 PM
Hello,
I was trying to test creating a DHCP range on a subnet using API. I have already added two DHCP members who are in FOA(failover association) on the subnet. Unfortunately, I only saw how to add one of the members using the grid member option using the sample payload below.
{ "start_addr": "1.1.1.3", "end_addr": "1.1.1.10", "server_association_type": "MEMBER", "member": { "_struct": "dhcpmember", "ipv4addr": "2.2.2.3" } }
Is it possible or does anyone have a sample payload on where the IPv4 DHCP Failover Association is selected on the payload?
Thank you!
Cheers!
Solved! Go to Solution.
Re: Setting IPv4 DHCP Failover Association using API
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-27-2024 08:24 AM
Here you are:
{ "start_addr": "10.20.30.128", "end_addr": "10.20.30.192", "server_association_type": "FAILOVER", "failover_association": "NYC-CHI-FOA", "network_view": "default" }
Re: Setting IPv4 DHCP Failover Association using API
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-01-2024 04:09 PM
It worked. Thank you so much!