Use this file to discover all available pages before exploring further.
HPE OneView models the network fabric as a hierarchy: individual networks are grouped into network sets, logical interconnects are defined by logical interconnect groups (LIGs), and uplinks are defined in uplink sets within a LIG.
FC networks use -type FibreChannel. Set -fabricType to FabricAttach (default, connects through a SAN fabric) or DirectAttach (flat SAN, directly attached to the server).
# Fabric-attached FC networks (connects through a Brocade or Cisco SAN)New-OVNetwork -Name "Production Fabric A" -Type FC -typicalBandwidth 4000 -autoLoginRedistribution $trueNew-OVNetwork -Name "Production Fabric B" -Type FC -typicalBandwidth 4000 -autoLoginRedistribution $true# Direct-attach FC (no SAN switch)New-OVNetwork -Name "DirectAttach Fabric A" -Type FC -typicalBandwidth 4000 -autoLoginRedistribution $true -fabrictype DirectAttachNew-OVNetwork -Name "DirectAttach Fabric B" -Type FC -typicalBandwidth 4000 -autoLoginRedistribution $true -fabrictype DirectAttach
For fabric-attached networks, add a SAN manager first (Add-OVSanManager) and then use -managedSan to associate the network with a managed SAN zone.
A network set groups multiple Ethernet networks so a server profile connection can carry multiple VLANs on a single NIC. The -UntaggedNetwork specifies which network sends and receives untagged frames.
A logical interconnect group (LIG) defines the desired configuration of the interconnect modules inside an enclosure. You specify which module goes in which bay, SNMP settings, and whether IGMP snooping is enabled.
You must re-fetch the LIG object after each New-OVUplinkSet call because the task updates the object on the appliance. Using a stale in-memory object will cause the next uplink set to overwrite the previous one.
After changing a LIG, push the changes to the deployed logical interconnects:
# Get all logical interconnects that are inconsistent with their groupGet-OVLogicalInterconnect | Where-Object complianceState -NE Consistent | Update-OVLogicalInterconnect
Updating a logical interconnect may briefly disrupt network traffic while interconnect modules are reconfigured. Schedule updates during a maintenance window.
# All Ethernet networksGet-OVNetwork -Type Ethernet# All FC networksGet-OVNetwork -Type FibreChannel# All networks (Ethernet and FC)Get-OVNetwork# Network setsGet-OVNetworkSet# A specific network setGet-OVNetworkSet -Name "Production Networks"