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 uplink set resource on a logical interconnect or Logical Interconnect Group.Syntax
Ethernet uplink set
Fibre Channel uplink set
Passthru (returns modified LIG object without saving)
Description
New-OVUplinkSet creates an uplink set on an existing logical interconnect or Logical Interconnect Group. An uplink set associates a set of uplink ports on an interconnect module with one or more networks, defining how network traffic flows between the server-side downlinks and the data center fabric.
- Ethernet uplink sets carry tagged or untagged Ethernet traffic. They reference Ethernet network objects and optionally a native (untagged) network.
- Fibre Channel uplink sets carry FC SAN traffic. They reference Fibre Channel network objects and the FC HBA ports on the interconnect module.
-InputObject parameter accepts a logical interconnect or LIG object. When used against a LIG, changes are committed as a LIG update. When used against a logical interconnect directly, the update applies immediately.
Uplink ports are specified using the format "BAYn:Xm" (e.g., "BAY1:X4"). Multiple ports can be specified as an array.
After adding an uplink set, retrieve the LIG again with
Get-OVLogicalInterconnectGroup before adding additional uplink sets. The object returned by New-OVUplinkSet may not reflect the updated state.Parameters
The logical interconnect or Logical Interconnect Group object to add the uplink set to. Supports pipeline input.Aliases:
-li, -lig, -ligName, -Resource.The name for the new uplink set.Alias:
-usName.The type of uplink set. Accepted values:
Ethernet— tagged Ethernet networksFibreChannel— FC SAN networksUntagged— single untagged Ethernet networkTunnel— pass-through (no VLAN awareness)ImageStreamer— HPE Synergy Image Streamer deployment network
-usType.One or more network objects (from
Get-OVNetwork) to associate with the uplink set.Alias: -usNetworks.One or more network set objects to associate with this Ethernet uplink set. All member networks of the set are included.
When specified, copies the individual networks from the provided network sets into the uplink set rather than referencing the set directly.
The Ethernet network to designate as the native (untagged) VLAN on this uplink set. Must also be listed in
-Networks.Aliases: -usNativeEthNetwork, -Native, -PVID.An array of uplink port identifiers in
"BAYn:Xm" format (e.g., "BAY1:X4", "BAY2:X5").Alias: -usUplinkPorts.The Ethernet port aggregation mode. Accepted values:
Auto(default) — use LACP to negotiate port aggregationFailover— active/standby failover without LACP
-usEthMode.The LACP PDU transmission interval. Accepted values:
Short (default), Long.The LACP load balancing algorithm. Accepted values:
None (default), DestinationIp, DestinationMac, SourceAndDestinationIp, SourceAndDestinationMac, SourceIp, SourceMac.Condition that triggers LACP failover. Accepted values:
None, AllActiveUplinksOffline, FailoverActiveMemberThreshold, FailoverBandwidthThreshold.The primary uplink port for
Failover mode, in "n:m" format (e.g., "1:4").The Ethernet uplink port speed override. Accepted values:
Auto (default), 100M, 1G, 10G, 40G, 100G.The Fibre Channel uplink port speed. Accepted values:
Auto (default), 2, 4, 8, 16, 32.Forward error correction mode. Accepted values:
Auto, Cl108, Cl74, Cl91, None.When
$true, enables FC trunking on the uplink ports. Applies to FC uplink sets only.The consistency checking policy for this uplink set. Accepted values:
Exact, None.Return the modified LIG object without committing changes to the appliance. Useful for building complex LIG definitions before a single save operation.
Return the async task object immediately without waiting for completion.
The appliance connection object or name. Defaults to the default connected session.
Examples
Add an Ethernet uplink set to a LIG
Add Fibre Channel uplink sets
Full LIG creation workflow: C7000 with Ethernet and FC uplink sets
Active/Active VC networking: per-side uplink sets
Output
HPEOneView.Appliance.TaskResource when -Async is used. Without -Async, the cmdlet waits for task completion. Use -Passthru to return the modified LIG object without saving.