Set-VBRCloudTenantNetworkAppliance
Short Description
Modifies a network extension appliance.
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Requires a VCP license.
Syntax
|
Set-VBRCloudTenantNetworkAppliance -Appliance <VBRCloudTenantNetworkAppliance> [-Name <String>] [-ProductionNetwork <IVBRServerNetworkInfo>] [-IpAddress <IPAddress>] [-DefaultGateway <IPAddress>] [-Ipv6Address <IPAddress>] [-Ipv6PrefixLength <String>] [-Ipv6DefaultGateway <IPAddress>] [-EnableIpv4Interface <Boolean>] [-EnableIpv6Interface <Boolean>] [-ObtainIpAddressAutomatically] [-ObtainIpv6AddressAutomatically] [-SubnetMask <String>] [<CommonParameters>] |
Detailed Description
This cmdlet modifies a network extension appliance. You can modify the network extension appliance for the cloud tenants of the following types:
- Simple cloud tenant accounts
- Cloud Director tenant accounts
Important |
|
The cmdlets in this section operate only with the network appliances created by service providers. To create a network appliance, a service provider must run the |
Note |
|
To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. |
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Appliance |
Specifies the network appliance you want to modify.
Accepts the |
True |
Named |
True (ByPropertyName, ByValue) |
|
|
DefaultGateway |
Specifies the IPv4 address of the default gateway. The appliance will use this IP address. |
|
False |
Named |
False |
|
EnableIpv4Interface |
Enables the IPv4 settings. If you provide this parameter, you will be able to specify the following settings.
Note: If you set this parameter to |
|
False |
Named |
False |
|
EnableIpv6Interface |
Enables the IPv6 settings. If you provide this parameter, you will be able to specify the following settings.
Note: If you set this parameter to |
|
False |
Named |
False |
|
IpAddress |
Specifies the IPv4 address that you want to assign to the appliance. |
|
False |
Named |
False |
|
Ipv6Address |
Specifies the IPv6 address that you want to assign to the appliance. |
|
False |
Named |
False |
|
Ipv6DefaultGateway |
Specifies the IPv6 address of the default gateway. The appliance will use this IP address. |
|
False |
Named |
False |
|
Ipv6PrefixLength |
Specifies the length of an IPv6 prefix. |
|
False |
Named |
False |
|
Name |
Specifies a name of the network appliance. |
|
False |
Named |
False |
|
ObtainIpAddressAutomatically |
Defines that the cmdlet will assign the IPv4 address automatically. |
|
False |
Named |
False |
|
ObtainIpv6AddressAutomatically |
Defines that the cmdlet will assign the IPv6 address automatically. |
|
False |
Named |
False |
|
ProductionNetwork |
Specifies the network. The appliance will be connected to this network. |
|
False |
Named |
False |
|
SubnetMask |
Specifies a subnet mask for IPv4 address. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
VBRCloudTenantNetworkAppliance
Examples
Modifying IPv4 Settings of Network Appliance
This example shows how to modify the Cloud Appliance for ABC Company network appliance settings. The cmdlet will modify the IPv4 address, subnet mask and the default gateway settings.
|
$appliance = Get-VBRCloudTenantNetworkAppliance -Name "Cloud Appliance for ABC Company" Set-VBRCloudTenantNetworkAppliance -Appliance $appliance -Name "New Cloud Appliance for ABC Company" -EnableIpv4Interface:$True -IpAddress 172.15.15.10 -SubnetMask 255.255.255.0 -DefaultGateway 172.15.15.1 |
Perform the following steps:
- Run the
Get-VBRCloudTenantNetworkApplianceReturns network extension appliances. cmdlet. Specify theNameparameter values. Save the result to the$appliancevariable. - Run the
Set-VBRCloudTenantNetworkAppliancecmdlet. Specify the following settings:- Set the
$appliancevariable as theApplianceparameter value. - Specify the
Nameparameter value. - Provide the
EnableIpv4Interfaceparameter and set its value to:$True. - Specify the
IpAddressparameter value. - Specify the
SubnetMaskparameter value. - Specify the
DefaultGatewayparameter value..
- Set the
Related Commands
Get-VBRCloudTenantNetworkApplianceReturns network extension appliances.Get-VBRHvServerNetworkInfoReturns virtual networks for a Hyper-V host.Get-VBRViServerNetworkInfoReturns virtual networks for a VMware host.