Reply
Topic Options
- 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
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
256     0
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
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 weeks ago
257     0
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
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
a week ago
257     0
It worked. Thank you so much!