Set-VBRViLinuxProxy
Short Description
Modifies settings of Linux backup proxies.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Set-VBRViLinuxProxy -Proxy <CViProxy> [-Description <String>] [-ProxyVM <CViVmItem>] [-TransportMode <VBRProxyTransportMode>] [-ConnectedDatastoreMode <VBRProxyConnectedDatastoreMode>] [-Datastore <VBRViDatastore[]>] [-EnableFailoverToNBD] [-EnableHostToProxyEncryption] [-MaxTasks <Int32>] [-Force] [<CommonParameters>] |
Detailed Description
This cmdlet modifies settings of Linux backup proxy servers.
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 the Linux proxy will use to connect to datastores:
Default: |
|
False |
Named |
False |
|
Datastore |
Specifies an array of datastores to which the backup proxy has a direct SAN or NFS connection.
Accepts the |
|
False |
Named |
False |
|
Description |
Specifies a description of a Linux backup 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 VM data transportation over an encrypted SSL connection in the Network transport mode.
Default: |
|
False |
Named |
False |
|
Force |
Defines that the cmdlet will add a Linux backup proxy without showing warnings in the PowerShell console. |
|
False |
Named |
False |
|
MaxTasks |
Specifies the number of concurrent tasks that can be assigned to the backup proxy simultaneously.
Permitted values:
Default: |
|
False |
Named |
False |
|
Proxy |
Specifies a Linux backup proxy. The cmdlet will modify the settings of this backup proxy.
Accepts the |
|
True |
Named |
True (ByPropertyName, ByValue) |
|
ProxyVM |
Specifies a Linux VM that is added to the VMware environment. The cmdlet will assign a backup proxy role explicitly to this Linux VM.
Accepts the |
|
False |
Named |
False |
|
TransportMode |
Specifies a data transport mode that the Linux proxy will apply to retrieve VM data from the source and write VM data to the target. You can specify one of the following transport mode type: Specifies the transport mode used by the 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 VBRHvServerVolume object that contains settings of Linux backup proxy added to the backup infrastructure.
Examples
Modifying Number of Concurrent Tasks
This example shows how to modify a number of concurrent tasks for the Linux server.
|
$proxy = Get-VBRViProxy -Name "LinProxy" Set-VBRViLinuxProxy -Proxy $proxy -MaxTasks 4 |
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-VBRViLinuxProxycmdlet. Set the$proxyvariable as theProxyparameter value. Specify theMaxTasksparameter value.
Related Commands
Get-VBRViProxyReturns a list of VMware backup proxies.