InfoBlox Integration

vanceturner
Kilo Explorer

I am looking for the following.

Infoblox DDI activity pack

Infoblox DDI activity pack

I need to install it and see how far this actually goes.

I wand the InfoBlox Grid Server and Service Now CMDB to automatically stay in sync.

Right now the FQDN field isn't populated, and I want this to be populated directly from InfoBlox.

If I need to script this, I will but I need som help to understand the process and/or if I need to use REST API to do this.

I saw some code in Python and Perl and need to know more.

15 REPLIES 15

Yes, of course.

Here we hace our Infoblox integration.

find_real_file.png

 

We did created this methods:

find_real_file.png

For example, the ipamGetIP method:

find_real_file.png

When you replace the ${host} parameter with the value (for test with the value in the Variable Substitutions related list) obtains the host's IP

find_real_file.png

If you want to call this from a workflow in a script activity can use:

find_real_file.png

//REST call ipamGetHostnameIP
try{
	var r = new sn_ws.RESTMessageV2('IPAM', 'ipamGetHostIP');
	var host = splitNombres[i].trim() + '.domain.com';
	r.setStringParameter('host', host);
	response = r.execute();
	responseBody = response.haveError() ? response.getErrorMessage() : response.getBody();
	status = response.getStatusCode();
} catch(ex) {
	responseBody = ex.getMessage();
	status = '500';
} finally {
	requestBody = r ? r.getRequestBody():null;
}

 

Please, mark correct or useful if I helped you

Thanks

Ariel

Thank you Ariel

Hi. Did you need orchestration to do this or were APIs created all custom?

Hi Anfield,

With APIs REST calls in a custom way.

There is a spoke in Integration Hub for integrate Infoblox too.

 

Please If I helped you, mark helpful or correct.
Thanks
Ariel

Hi Ariel,

We are looking to integrate Infoblox and serviceNow for DNS activities currently but we may have to for IPAM as well.

Can you provide some information on how you have implemented? Are you using DDI Activity pack or Infoblox Spoke or custom? Appreciate any inputs on this.

Thanks
Srivani