https://github.com/devblackops/infoblox
PowerShell module for interacting with InfoBlox IPAM solution
https://github.com/devblackops/infoblox
Last synced: 5 months ago
JSON representation
PowerShell module for interacting with InfoBlox IPAM solution
- Host: GitHub
- URL: https://github.com/devblackops/infoblox
- Owner: devblackops
- License: apache-2.0
- Created: 2015-11-11T06:15:52.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-01T06:19:11.000Z (over 9 years ago)
- Last Synced: 2025-04-03T20:51:16.687Z (10 months ago)
- Language: PowerShell
- Size: 61.5 KB
- Stars: 18
- Watchers: 7
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://ci.appveyor.com/project/devblackops/infoblox)
# InfoBlox
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
`Remove-IBResourceRecord -Reference $ref -GridServer myinfoblox.mydomain.com -Credential $Credential`
### Request-IBAvailableIP
Reservers an available IP from a Infoblox Gridserver
`Request-IBAvailableIP -GridServer myinfoblox.mydomain.com -Credential $Credential -Network '1.2.3.0/24' -Name 'server01' -Comment 'test server'`
### 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`