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

Find next available network

Use PowerInfoblox to ask Infoblox for available child networks.

This pattern is useful when a script needs Infoblox to suggest available network space.

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

Example

Import-Module PowerInfoblox

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

Get-InfobloxNetworkContainer -Network '198.51.100.0/24' -Verbose | Format-Table
Get-InfobloxNetworkNextAvailableNetwork -Network '198.51.100.0/24' -Quantity 5 -Cidr 28 -Verbose | Format-Table

Disconnect-Infoblox

What this demonstrates

  • checking a network container
  • asking for candidate child networks
  • keeping credentials and IPAM endpoints out of the public example

Source