Set-VBRViProxy
Short Description
Modifies a VMware backup proxy.
Platform: VMware
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRViProxy -Proxy <CViProxy> [-Description <String>] [-TransportMode <VBRProxyTransportMode>] [-ConnectedDatastoreMode <VBRProxyConnectedDatastoreMode>] [-Datastore <VBRViDatastore[]>] [-EnableFailoverToNBD] [-EnableHostToProxyEncryption] [-MaxTasks <Int32>] [<CommonParameters>] |
Detailed Description
This cmdlet modifies settings of the selected VMware backup proxy server.
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 |
|---|---|---|---|---|---|
|
ConnectedDatastoreMode |
Specifies the mode that a proxy will use to connect to datastores:
Default: |
|
False |
Named |
False |
|
Datastore |
Specifies a list of datastores to which a backup proxy has a direct SAN or NFS connection.
Accepts the |
|
False |
Named |
False |
|
Description |
Specifies a description of a VMware proxy. |
|
False |
Named |
False |
|
EnableFailoverToNBD |
Enables failover to the Network transport mode if a backup proxy fails to transport data using the Direct storage access or Virtual appliance transport mode.
Default:
Note: To disable this option, set the parameter value to |
|
False |
Named |
False |
|
EnableHostToProxyEncryption |
Enables a VM data transportation over an encrypted SSL connection in the Network transport mode.
Default: |
|
False |
Named |
False |
|
MaxTasks |
Specifies the number of concurrent tasks that can be assigned to a proxy simultaneously.
Allowed values:
Default: |
|
False |
Named |
False |
|
Proxy |
Specifies an array of VMware proxies you want to modify.
Accepts the |
|
True |
Named |
True (ByPropertyName, ByValue) |
|
TransportMode |
Specifies the transport mode used by a backup proxy:
Default: |
|
False |
Named |
False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
The cmdlet returns the CViProxy[] that contains an array of VMware backup proxy servers added to the backup infrastructure.
Examples
Modifying VMware Backup Proxy
This example shows how to modify the VMware backup proxy named LocalProxy.
|
$proxy = Get-VBRViProxy -Name "LocalProxy" Set-VBRViProxy -Proxy $proxy -TransportMode HotAdd -EnableFailoverToNBD |
Perform the following steps:
- Run the
Get-VBRViProxyReturns a list of VMware backup proxies. cmdlet. Specify theNameparameter value. Save the result to the$proxyvariable. - Run the
Set-VBRViProxycmdlet. Set the$proxyvariable as theProxyparameter value. Set theHotAddoption for theTransportModeparameter. Provide theEnableFailoverToNBDparameter.
Related Commands
Get-VBRViProxyReturns a list of VMware backup proxies.