Skip to content

Get-OVAddressPoolRange

Syntax

Get-OVAddressPoolRange
    [-Type <String[]>]
    [-Name <String>]
    [-ApplianceConnection <Object>]
    [<CommonParameters>]
Get-OVAddressPoolRange
    [-InputObject <Object>]
    [-ApplianceConnection <Object>]
    [<CommonParameters>]

Description

An ID pool is a collection of one or more ranges that you can be randomly generate or specify to provide large address spaces. By default, one virtual ID pool each of contiguous MAC addresses, WWNs, and serial numbers are created automatically when you initialize the appliance. The pools are composed of address and ID ranges. You can individually enable or disable a range, or delete any unused ranges. ID pool ranges do not conflict with physical IDs, provided the virtual ranges you create exclude the physical ID ranges.

This Cmdlet will display configured address pool ranges defined on an HPE OneView appliance. Currently, the appliance supports the following address pool ranges:

  • VMAC
  • VWWN
  • VSN
  • IPv6
  • IPv4

You can specify one, some or all of the pool types.

Info

Minimum required privileges: Network administrator

(virtual MAC addresses and virtual WWNs), Infrastructure administrator (all ID types)

Examples

Example 1

[PS] C:\> Get-OVAddressPoolRange

Name Enabled Category  Total   Allocated Available Reserved Start                   End
---- ------- --------  -----   --------- --------- -------- -----                   ---
VMAC True    Generated 1048576 2         1048574   0        62:79:84:50:00:00       62:79:84:5F:FF:FF
VWWN True    Generated 1048576 0         1048576   0        10:00:92:5a:1f:b0:00:00 10:00:92:5a:1f:bf:ff:ff
VSN  True    Generated 46656   1         46655     0        VCGBWAB000              VCGBWABZZZ
VMAC True    Generated 1048576 0         1048576   0        F6:38:E6:90:00:00       F6:38:E6:9F:FF:FF
VWWN True    Generated 1048576 0         1048576   0        10:00:ce:58:fa:50:00:00 10:00:ce:58:fa:5f:ff:ff
VSN  True    Generated 46656   0         46656     0        VCGA290000              VCGA290ZZZ

Get all configured address pool ranges from all connected appliances.

Example 2

[PS] C:\> Get-OVAddressPoolRange -Type vmac

Name Enabled Category  Total   Allocated Available Reserved Start             End
---- ------- --------  -----   --------- --------- -------- -----             ---
VMAC True    Generated 1048576 2         1048574   0        62:79:84:50:00:00 62:79:84:5F:FF:FF
VMAC True    Generated 1048576 0         1048576   0        F6:38:E6:90:00:00 F6:38:E6:9F:FF:FF

Get a specific address pool range type (VMAC) from all connected appliances.

Parameters

-InputObject <Object>

Specify the address pool object from Get-OVAddressPool.

Aliases None
Required? True
Position? Named
Default value
Accept pipeline input? true (ByValue)
Accept wildcard characters? False

-Type <String[]>

Specify the type of address pool. Allowed values are:

  • IPv4
  • IPv6
  • VMAC
  • VWWN
  • VSN
  • All
Aliases Pool
Required? False
Position? Named
Default value all
Accept pipeline input? false
Accept wildcard characters? False

-ApplianceConnection <Object>

Specify one or more [HPEOneView.Appliance.Connection] object(s) or Name property value(s).

Aliases Appliance
Required? False
Position? Named
Default value (${Global:ConnectedSessions} | ? Default)
Accept pipeline input? true (ByPropertyName)
Accept wildcard characters? False

-Name <String>

Filter address ranges based on the name.

Aliases None
Required? False
Position? Named
Default value
Accept pipeline input? false
Accept wildcard characters? False

<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)

Input Types

Address pool resource object.

Return Values

Address pool range object.