PowerCLI Reference

Set-OrgNetwork

Synopsis

This cmdlet modifies the configuration of the specified organization network.

Syntax

Set-OrgNetwork [-OrgNetwork] <OrgNetwork[]> [-Name <String>] [-Description <String>] [-PrimaryDns <IPAddress>] [-SecondaryDns <IPAddress>] [-DnsSuffix <String>] [-StaticIPPool <IPRangeList>] [-Server <CIServer[]>] [-InformationAction <ActionPreference>] [-InformationVariable <String>] [-PipelineVariable <String>] [-WhatIf] [-Confirm] [<CommonParameters>]

Related Commands

Online version
Get-OrgNetwork
New-OrgNetwork
Remove-OrgNetwork

Detailed Description

This cmdlet modifies the configuration of the specified organization network. Note: This cmdlet is only available to Provider Administrators.

Parameters

NameTypeDescriptionRequired?Pipeline InputDefault Value
OrgNetworkOrgNetwork[]Specifies the organization network that you want to configure.truetrue (ByValue)
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
DescriptionStringSpecifies a new description for the organization network that you want to configure.falsefalse
DnsSuffixStringSpecifies a new DNS suffix for the organization network that you want to configure.falsefalse
InformationActionActionPreferencefalsefalse
InformationVariableStringfalsefalse
NameStringSpecifies a new name for the organization network that you want to configure.falsefalse
PipelineVariableStringfalsefalse
PrimaryDnsIPAddressSpecifies a new primary DNS for the organization network that you want to configure.falsefalse
SecondaryDnsIPAddressSpecifies a new secondary DNS for the organization network that you want to configure.falsefalse
ServerCIServer[]Specifies the cloud servers 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-CIServer.falsefalse
StaticIPPoolIPRangeListSpecifies a new range of static IP addresses that the organization network will allocate to virtual machines.falsefalse
WhatIfSwitchParameterIndicates that the cmdlet is run only to display the changes that would be made and actually no objects are modified.falsefalse

Return Type

Zero or more modified OrgNetwork objects

Notes

Examples

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

$myOrgNetwork = Get-OrgNetwork -Name 'MyInternalOrgNetwork'
Set-OrgNetwork -OrgNetwork $myOrgNetwork -DnsSuffix "myOrgNewDns" -PrimaryDns "192.168.10.1" -SecondaryDns "192.168.10.2"

Modifies the DNS settings for the specified internal organization network.

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

$myOrgNetwork = Get-OrgNetwork -Name 'MyInternalOrgNetwork'
Set-OrgNetwork -OrgNetwork $myOrgNetwork -StaticIpPool "192.168.10.42-192.168.10.66"

Changes the range of static IP addresses that are available for the organization network to allocate to virtual machines.


Copyright © VMware, Inc. All rights reserved.