Set-VBRDefaultGateway
Short Description
Modifies cloud default gateways.
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRDefaultGateway -Gateway <VBRDefaultGateway> [-IpAddress <String>] [-NetworkMask <String>] [-Ipv6Address <String>] [-Ipv6SubnetAddress <String>] [-Ipv6PrefixLength <Byte>] [-PassThru] [<CommonParameters>] |
Detailed Description
This cmdlet modifies the default cloud gateway.
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 |
|---|---|---|---|---|---|
|
Gateway |
Specifies the default cloud gateway you want to modify.
Accepts the |
True |
Named |
True (ByPropertyName, ByValue) |
|
|
IpAddress |
Specifies the IP address you want to assign to the default gateway. |
|
False |
Named |
False |
|
Ipv6Address |
Specifies the IPv6 address that you want to assign to the default gateway. |
|
False |
Named |
False |
|
Ipv6PrefixLength |
Specifies the length of an IPv6 prefix. |
|
False |
Named |
False |
|
Ipv6SubnetAddress |
Specifies the production IPv6 network. |
|
False |
Named |
False |
|
NetworkMask |
Specifies the network mask you want to assign to the default gateway. |
|
False |
Named |
False |
|
PassThru |
Defines that the command returns the output object to the Windows PowerShell console. |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
Examples
Setting IP Address and Network Mask for Selected Default Gateway
This example shows how to set the IP address and the network mask for the selected default gateway.
|
$config = Get-VBRDefaultGatewayConfiguration $alldefaultgateways = $config.Defaultgateway.name $alldefaultgateways $defaultgateway = $c.Defaultgateway[0] Set-VBRDefaultGateway -Gateway $defaultgateway -IpAddress "172.16.2.232" -NetworkMask "255.255.0.0" |
Perform the following steps:
- Run the
Get-VBRDefaultGatewayConfigurationReturns configuration of default gateways. cmdlet. Save the result to the$configvariable. - Get all default gateways by name. Save the array of gateways to the
$alldefaultgatewaysvariable. - Run the
$alldefaultgatewaysvariable to see all the names of all gateways available. - Select the first default gateway from the array. Save the result to the
$config.Defaultgateway.namevariable. - Run the
Set-VBRDefaultGatewaycmdlet. Set the$defaultgatewayvariable as theGatewayparameter value. Specify theIPAddressand theNetworkMaskparameter values.
Related Commands
Set-VBRDefaultGatewayConfigurationModifies default gateway configuration.