Documentation Index
Fetch the complete documentation index at: https://mintlify.com/HewlettPackard/POSH-HPEOneView/llms.txt
Use this file to discover all available pages before exploring further.
Synopsis
Creates a new Logical Interconnect Group (LIG) resource that serves as a configuration template for logical interconnects.Syntax
C7000 enclosure
HPE Synergy
Import from file
Description
New-OVLogicalInterconnectGroup creates a Logical Interconnect Group (LIG) on the HPE OneView appliance. A LIG is a policy template that defines the desired state for interconnect modules installed in an enclosure group, including:
- Bay-to-module type assignments
- Uplink set definitions (Ethernet, Fibre Channel)
- SNMP configuration
- QoS policies
- Network loop and flood protection settings
- IGMP snooping configuration
- Internal network assignments
-Bays hashtable maps bay numbers (1–8) to interconnect module types (e.g., FlexFabric, FlexFabric-20/40 F8).
For HPE Synergy, three additional mandatory parameters define the fabric topology: -FrameCount (number of frames), -InterconnectBaySet (which bay set to use), and -FabricModuleType (the Synergy Virtual Connect module type).
After creating the LIG, use New-OVUplinkSet to add uplink sets that define the network connectivity through the interconnect module uplink ports.
New-OVLogicalInterconnectGroup returns an async task. Pipe to Wait-OVTaskComplete followed by Get-OVLogicalInterconnectGroup to retrieve the created LIG object for further operations.Parameters
The name for the new Logical Interconnect Group.Alias:
-ligname.A hashtable that maps interconnect bay numbers to module type strings. For C7000, key is the bay number and value is the module type name.Example:
@{1 = "FlexFabric"; 2 = "FlexFabric"}Supports pipeline input.(Synergy only, required) The number of Synergy frames in the logical enclosure group. Valid range: 1–5.
(Synergy only, required) The interconnect bay set number (1–3) that identifies which set of interconnect bays the fabric module occupies.
(Synergy only, required) The type of Synergy Virtual Connect fabric module. Accepted values:
SEVC100F32SEVC40F8SEVC32FCSEVC32GCFCSEVCFCSEVC16GbFCSAS
(Synergy only) The fabric redundancy mode. Accepted values:
HighlyAvailable, Redundant (default), ASide, BSide.The consistency checking policy for interconnect bay configuration. Accepted values:
Exact, None.When
$true, enables IGMP snooping on the interconnect. Default: $false.Alias: -IGMPSnoop.The interval (in seconds) before an idle IGMP membership is removed. Valid range: 130–1225. Default: 260.Alias:
-IGMPIdle.(C7000 only) When
$true (default), enables fast MAC cache failover to speed up network convergence.Alias: -FastMAC.(C7000 only) The interval (in minutes) between MAC cache refresh cycles. Valid range: 1–30. Default: 5.Alias:
-FastMACRefresh.When
$true (default), enables loop protection on downlink ports.Alias: -LoopProtect.When
$true (default), enables pause flood protection to prevent network storms caused by Ethernet pause frames.Alias: -PauseProtect.When
$true, enables LLDP (Link Layer Discovery Protocol) tagging. Default: $false.The IP addressing mode used for LLDP. Accepted values:
IPv4, IPv6, IPv4AndIPv6.A hashtable or SNMP configuration object that defines SNMP read community, access list, system contact, and trap destinations.Example hashtable keys:
readCommunity, enabled, systemContact, snmpAccess, trapDestinations.One or more Ethernet network objects to designate as internal (server-to-server only, not routed through uplinks).
A QoS configuration object (from
New-OVQosConfig or similar) that defines traffic classification and priority policies.Aliases: -qos, -QosConfig.One or more uplink set definition hashtables to pre-configure when creating the LIG. Typically you create uplink sets after LIG creation using
New-OVUplinkSet instead.One or more scope objects to assign to the new LIG.
Return the async task object immediately without waiting for completion.
Path to a JSON file containing a LIG definition to import.
The appliance connection object or name. Defaults to the default connected session.
Examples
Create a basic C7000 LIG with SNMP
Add uplink sets to the LIG after creation
Create a Synergy LIG
Import a LIG from a JSON file
Output
HPEOneView.Appliance.TaskResource when -Async is used, or the task result after completion. Pipe to Get-OVLogicalInterconnectGroup to retrieve the created LIG object.