Skip to content

A Node Module that Implements a Subnet of the Infoblox NIOS Web API (2.1)

Notifications You must be signed in to change notification settings

casajaso/infoblox

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Infoblox API

This project implements a subset of the Infoblox API via REST API using NodeJS

Installation

npm install infoblox

Usage

Example:

var Infoblox = require('infoblox');

var ipam = new Infoblox({
  ip: 'ip/hostname',
  apiVersion: '2.1'  
});

ipam.login('username', 'password').then(function(res) {
  if(res) {
    ipam.getAdminGroup().then(function(admGrps) {
      console.log(admGrps);
    })
  }
})

About

A Node Module that Implements a Subnet of the Infoblox NIOS Web API (2.1)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%