Replies: 2 comments 4 replies
-
I don't think the I'm honestly curious - what's your use case for using |
Beta Was this translation helpful? Give feedback.
4 replies
-
I'd like to bring up that it could be an option to move the IP Ranges, known from the security app, to the core ipam. This would also solve some other issues we currently face to migrate an existing IPAM to nautobot as we have to handle non CIDR expressable IP Ranges for things like DHCP Pools. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
hello,
i'm currently trying to query available IPs from a /16 network and tried using the offset parameter for the endpoint
/ipam/prefixes/{id}/available-ips/
but it seems the parameter does not exist or does not work (or i just don't know how to use the API endpoint)I am using the latest version
# nautobot-server --version Nautobot version: 2.4.5 Django version: 4.2.20
I tried the following querys, but it always falls back to using no offset and also does not tolerate the limit of 20.
curl -k -H "Authorization: Token <token>" -H "Accept: application/json; charset=UTF-8" https://10.0.0.45/api/ipam/prefixes/5236f93d-eb94-4510-9938-37504e588d20/available-ips/?offset=10&limit=20
curl -k -H "Authorization: Token <token>" -H "Accept: application/json; charset=UTF-8" https://10.0.0.45/api/ipam/prefixes/5236f93d-eb94-4510-9938-37504e588d20/available-ips/?offset=10
The documentation thats shipped in this version tells me that the parameter exists but i can't manage to make it work.
The Prefix exists and i do get the first 50 available ip entrys.
Any tips or does someone see my mistake?
Beta Was this translation helpful? Give feedback.
All reactions