Skip to content

Latest commit

 

History

History
executable file
·
191 lines (147 loc) · 3.99 KB

Edit-OMEFabricUplink.md

File metadata and controls

executable file
·
191 lines (147 loc) · 3.99 KB
external help file Module Name online version schema
DellOpenManage-help.xml
DellOpenManage
2.0.0

Edit-OMEFabricUplink

SYNOPSIS

Edit fabric uplink

SYNTAX

Edit-OMEFabricUplink [[-Name] <String>] [[-Description] <String>] [-Fabric] <Fabric> [-Uplink] <Uplink>
 [-UplinkFailureDetection] [[-Ports] <String>] [[-TaggedNetworks] <Network[]>] [[-UnTaggedNetwork] <Network>]
 [[-Mode] <String>] [<CommonParameters>]

DESCRIPTION

This script uses the OME REST API to edit fabric uplink attributes

EXAMPLES

EXAMPLE 1

Edit-OMEFabricUplink -Fabric $("SmartFabric01" | Get-OMEFabric) -Uplink $("EthernetUplink01" | Get-OMEFabricUplink -Fabric $("SmartFabric01" | Get-OMEFabric)) -Mode "Append" -TaggedNetworks $("VLAN 1005", "VLAN 1006" | Get-OMENetwork) -Verbose

Add ports to uplink

EXAMPLE 2

Edit-OMEFabricUplink -Fabric $("SmartFabric01" | Get-OMEFabric) -Uplink $("EthernetUplink01" | Get-OMEFabricUplink -Fabric $("SmartFabric01" | Get-OMEFabric)) -Mode "Append" -Ports "C38S9T2:ethernet1/1/41:2,CMWSV43:ethernet1/1/41:2" -Verbose

Add tagged networks to uplink

EXAMPLE 3

For more examples visit https://github.com/dell/OpenManage-PowerShell-Modules/blob/main/README.md

PARAMETERS

-Name

Name of the uplink

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Description

Description of the uplink

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Fabric

Object of type Fabric returned from Get-OMEFabric

Type: Fabric
Parameter Sets: (All)
Aliases:

Required: True
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Uplink

Object of type Uplink returned from Get-OMEFabricUplink

Type: Uplink
Parameter Sets: (All)
Aliases:

Required: True
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-UplinkFailureDetection

Add the uplink to the Uplink Failure Detection (UFD) group

Type: SwitchParameter
Parameter Sets: (All)
Aliases:

Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False

-Ports

Comma delimited string containing uplink ports (Example: C38S9T2:ethernet1/1/41:2,CMWSV43:ethernet1/1/41:2)

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 5
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-TaggedNetworks

Array of type Network returned from Get-OMENetwork

Type: Network[]
Parameter Sets: (All)
Aliases:

Required: False
Position: 6
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-UnTaggedNetwork

Object of type Network returned from Get-OMENetwork

Type: Network
Parameter Sets: (All)
Aliases:

Required: False
Position: 7
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Mode

String specifing operation to perform on TaggedNetworks and Ports, required with -TaggedNetworks or -Ports ("Append", "Replace", "Remove")

Type: String
Parameter Sets: (All)
Aliases:

Required: False
Position: 8
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

OUTPUTS

NOTES

RELATED LINKS