Project

PowerInfoblox

PowerInfoblox is a PowerShell module to interact with Infoblox service

Stars10
Forks0
Open issues0
PowerShell Gallery downloads7340
Releasev1.0.36
Language: PowerShell Updated: 2026-01-26T16:25:23.0000000+00:00

Curated Examples

Connect and inspect a network

Use PowerInfoblox to connect to Infoblox and inspect a selected network.

This pattern is useful when you need to confirm API access and inspect a network before making changes.

It is adapted from Examples/Package/ExampleProd.ps1.

Example

Import-Module PowerInfoblox

$credential = Get-Credential
Connect-Infoblox -Server 'ipam.example.com' -Credential $credential -ApiVersion '2.13.1' -EnableTLS12

$network = Get-InfobloxNetwork -Network '192.0.2.0/24' -Verbose
$network | Format-Table *

Get-InfobloxIPAddress -Network '192.0.2.0/24' -Status Used -Verbose | Format-Table

Disconnect-Infoblox

What this demonstrates

  • connecting with an interactive credential
  • querying a selected network
  • reviewing used IP addresses before changing anything

Source