en-US/about_InfoBlox.help.txt

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
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