- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
Creation of an unmanaged entry via REST API
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-09-2016 05:23 AM
Dear Infoblox team,
I am currently using an Infoblox appliance's v1.6.1 WAPI.
I am trying to assign some addresses in my IP range to be marked as unmanaged using WAPI, but the API guide I have managed to put my hands on offers no instructions on how should it be done.
Any help on the issue of marking an address as unmanaged using WAPI v1.6.1 would be appreciated.
Thanks,
D.
Re: Creation of an unmanaged entry via REST API
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2017 01:21 PM
If by "unmanaged" you mean not added to DNS, the configure for DNS = false does the trick.
payload = '{"ipv4addrs": [{"configure_for_dhcp": false, \
"ipv4addr": "' + ipv4addr + '"}], \
"configure_for_dns": false, \
"name": "' + fqdn }'
r = requests.post(url=ibx_url, auth=(username,password), verify=False, data=payload)
Re: Creation of an unmanaged entry via REST API
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-18-2017 09:12 AM
Hi,
Unmanaged IP Address entries in IPAM refers to used IP addresses which are discovered via IPAM discovery or Network Discovery. These are called unmanaged to specify that they are not 'created' in Infoblox or that Infoblox does not know about them apart from the discovered data.
Hence these entries cannot be created via API or GUI.
Regadrs,
Sandeep