- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Create a list of all of our subnets
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hello,
I'm running into a issue when using Curl to list out all the subnets in our IPAM. When I run the command,
curl -k -u admin:infoblox -X GET "https://<your-infoblox-grid-master-ip>/wapi/v2.12/network?network_container=10.0.0.0/8&_return_fields=network"
I get the message;
{ "Error": "AdmConProtoError: Result set too large (> 1000)",
"code": "Client.Ibap.Proto",
"text": "Result set too large (> 1000)"
}
If I run the command for a specific subnet the Curl command works. Its my assumption is that the error message comes form Infoblox not Curl. Can anyone tell me if there is a way to configure Infoblox to allow it to display more results?
Thanks,
Gordon
Re: Create a list of all of our subnets
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Using max_results you can get past the 1000 threshold
curl -k -u admin:infoblox -X GET "https://<your-infoblox-grid-master-ip>/wapi/v2.12/network?network_container=10.0.0.0/8&_return_fields=network&_max_results=X"
Replace X with the number of your choice