en-US/about_InfoBlox.help.txt

TOPIC
    about_InfoBlox

SHORT DESCRIPTION
    PowerShell module for interacting with InfoBlox IPAM via the REST API.

LONG DESCRIPTION
    PowerShell module for interacting with InfoBlox IPAM via the REST API.

EXAMPLES
    - Add-IBResourceRecordHost
      Add a host record on the Infoblox Gridserver

      Add-IBResourceRecordHost -IPv4Address '1.2.3.4' -HostName 'myserver.mydomain.com' -GridServer myinfoblox.mydomain.com -Credential $Credential

    - Get-IBNetwork
      Retrieves networks from an Infoblox Gridserver

      Get-IBNetwork -GridServer myinfoblox.mydomain.com -Credential $Credential -Network '1.2.3.0/24'

    - Get-IBNextAvailableIP
      Retrieves available IP addresses from an Infoblox Gridserver

      Get-IBNextAvailableIP -GridServer myinfoblox.mydomain.com -Credential $Credential -NetworkRef $ref -Quantity 10

    - Get-IBResourceRecord
      Retrieves resource records from a Infoblox Gridserver

      Get-IBResourceRecord -Type host -SearchField MyServer -GridServer myinfoblox.mydomain.com -Credential $Credential

    - New-IBNetwork
      Adds a network to an Infoblox Gridserver

      New-IBNetwork -GridServer myinfoblox.mydomain.com -Credential $Credential -Network '10.10.1.0/24' -Comment 'My New Network'

    - New-IBNetworkContainer
      Adds a network container to an Infoblox Gridserver

      New-IBNetworkContainer -GridServer myinfoblox.mydomain.com -Credential $Credential -Network '10.10.1.0/24' -Comment 'My New Network'

    - Remove-IBResourceRecord
      Removes a host record from an Infoblox Gridserver

    - Request-IBAvailableIP
      Remove-IBResourceRecord -Reference $ref -GridServer myinfoblox.mydomain.com -Credential $Credential

    - Set-IBResourceRecord
      Changes a host record on an Infoblox Gridserver

      Set-IBResourceRecord -Reference Reference -IPv4Address '1.2.3.4' -HostName myhost.mydomain.com -GridServer myinfoblox.mydomain.com -Credential $Credential

KEYWORDS
    InfoBlox, IPAM

SEE ALSO