PowerCLI Reference

New-VDSwitch

Synopsis

This cmdlet creates vSphere distributed switches.

Syntax

New-VDSwitch -BackupPath <String> [-KeepIdentifiers] -Location <VIContainer> [-Name <String>] [-RunAsync] [-Server <VIServer[]>] [-WithoutPortGroups] [-Confirm] [-WhatIf] [<CommonParameters>]

New-VDSwitch [-ContactDetails <String>] [-ContactName <String>] [-LinkDiscoveryProtocol <LinkDiscoveryProtocol>] [-LinkDiscoveryProtocolOperation <LinkDiscoveryOperation>] -Location <VIContainer> [-MaxPorts <Int32>] [-Mtu <Int32>] -Name <String> [-Notes <String>] [-NumUplinkPorts <Int32>] [-RunAsync] [-Server <VIServer[]>] [-Version <String>] [-Confirm] [-WhatIf] [<CommonParameters>]

New-VDSwitch -Location <VIContainer> -Name <String> -ReferenceVDSwitch <VDSwitch> [-RunAsync] [-Server <VIServer[]>] [-WithoutPortGroups] [-Confirm] [-WhatIf] [<CommonParameters>]

Related Commands

Online Version
Get-VDSwitch
Remove-VDSwitch
Set-VDSwitch
Export-VDSwitch

Detailed Description

This cmdlet creates vSphere distributed switches. You can create a new vSphere distributed switch with custom properties, specify a reference vSphere distributed switch to clone its configuration, or provide a backup profile to import the switch configuration.


Note: Creating vSphere distributed switches from a reference switch or a backup profile requires vCenter Server 5.1 or later.

Parameters

NameTypeDescriptionRequired?Pipeline InputDefault Value
BackupPathStringSpecifies the full file path to the .zip file containing the backup configuration that you want to import. Only .zip files created with the Export-VDSwitch cmdlet are supported.


Note: This parameter is supported only on vSphere 5.1 and later.
trueFalse
ConfirmSwitchParameterIf the value is $true, indicates that the cmdlet asks for confirmation before running. If the value is $false, the cmdlet runs without asking for user confirmation.falseFalse
ContactDetailsStringSpecifies the contact details of the vSphere distributed switch administrator.falseFalse
ContactNameStringSpecifies the name of the vSphere distributed switch administrator.falseFalse
KeepIdentifiersSwitchParameterIndicates that the original vSphere distributed switch and port group identifiers will be preserved. You cannot specify this parameter, when the Name parameter is specified.


Note: This parameter is supported only on vSphere 5.1 and later.
falseFalse
LinkDiscoveryProtocolLinkDiscoveryProtocolSpecifies the discovery protocol type of the vSphere distributed switch that you want to create. This parameter accepts CDP and LLDP values. If you do not set a value for this parameter, the default server setting is used.falseFalse
LinkDiscoveryProtocolOperationLinkDiscoveryOperationSpecifies the link discovery protocol operation for the vSphere distributed switch that you want to create. This parameter accepts Advertise, Listen, Both, and Disabled values. If you do not set a value for this parameter, the default server setting is used.falseFalse
LocationVIContainerSpecifies the location where you want to create the vSphere distributed switch. This parameter accepts Datacenter and Folder objects.


Note: You cannot create distributed port groups with identical names in the same location. If you want to import or clone a vSphere distributed switch with its distributed port groups, you need to specify a location that does not contain identically named distributed port groups.
trueFalse
MaxPortsInt32Specifies the maximum number of ports allowed on the vSphere distributed switch that you want to create.falseFalse
MtuInt32Specifies the maximum MTU size for the vSphere distributed switch that you want to create. Valid values are positive integers only.falseFalse
NameStringSpecifies a name for the new vSphere distributed switch that you want to create. You cannot specify this parameter, when the KeepIdentifiers parameter is specified.trueFalse
NotesStringSpecifies a description for the vSphere distributed switch that you want to create.falseFalse
NumUplinkPortsInt32Specifies the number of uplink ports on the vSphere distributed switch that you want to create.falseFalse
ReferenceVDSwitchVDSwitchSpecifies a reference vSphere distributed switch. The properties of the new vSphere distributed switch will be cloned from the reference vSphere distributed switch.


Note: This parameter is supported only on vSphere 5.1 and later.
trueTrue (ByValue)
RunAsyncSwitchParameterIndicates that the command returns immediately without waiting for the task to complete. In this mode, the output of the cmdlet is a Task object. For more information about the RunAsync parameter run "help About_RunAsync" in the VMware PowerCLI console.falseFalse
ServerVIServer[]Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is given to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer.falseFalse
VersionStringSpecifies the version of the vSphere distributed switch that you want to create. This parameter accepts 4.0, 4.1.0, 5.0.0, 5.1.0, 5.5.0, 6.0.0, and 6.5.0 values. You cannot specify a version that is incompatible with the version of the vCenter Server system you are connected to.falseFalse
WhatIfSwitchParameterIndicates that the cmdlet is run only to display the changes that would be made and actually no objects are modified.falseFalse
WithoutPortGroupsSwitchParameterIndicates that the new vSphere distributed switch will be created without importing the port groups from the specified backup file or reference vSphere distributed switch.falseFalse

Return Type

The newly created VDSwitch object

Notes

Examples

-------------------------- Example 1 --------------------------

$myDatacenter = Get-Datacenter -Name "MyDatacenter"
New-VDSwitch -Name "MyVDSwitch" -Location $myDatacenter -LinkDiscoveryProtocol "LLDP" -LinkDiscoveryProtocolOperation "Listen" -MaxPorts 256 -Version "5.0.0"

Creates a new vSphere distributed switch with the specified name, version, maximum number of ports, and link discovery protocol settings in the specified datacenter.

-------------------------- Example 2 --------------------------

$myFolder = Get-Folder -Name "MyFolder"
Get-VDSwitch -Name "MyReferenceSwitch" | New-VDSwitch -Name "MyVDSwitch" -Location $myFolder -WithoutPortGroups

Creates a new vSphere distributed switch by cloning the configuration of the existing vSphere distributed switch named "MyReferenceSwitch". The new vSphere distributed switch is created without cloning the existing port groups and is stored in the specified folder.

-------------------------- Example 3 --------------------------

$myFolder = Get-Folder -Name "MyFolder"
New-VDSwitch -Name "MyVDSwitch" -Location $myFolder -WithoutPortGroups -BackupPath "c:\MyDistributedSwitchProfile.zip"

Creates a new vSphere distributed switch by importing the specified backup profile.


Copyright © VMware, Inc. All rights reserved.