New-VBRFileRestoreLinuxHelperApplianceOptions
Short Description
Defines configuration settings for a temporary helper appliance.
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
New-VBRFileRestoreLinuxHelperApplianceOptions -Server <CHost> [-ResourcePool <CViResourcePoolItem>] [-NetworkInfo <IVBRServerNetworkInfo>] [-IP <IPAddress>] [-NetworkMask <String>] [-Gateway <IPAddress>] [-PreferredDNSServer <IPAddress>] [-AlternateDNSServer <IPAddress>] [-IPv6 <IPAddress>] [-IPv6PrefixLength <Int32>] [-IPv6Gateway <IPAddress>] [-IPv6PreferredDNSServer <IPAddress>] [-IPv6AlternateDNSServer <IPAddress>] [-FromNSS] [-EnableFTP] [-VLanId <Int32>] [<CommonParameters>] |
Detailed Description
This cmdlet defines configuration settings for a temporary helper appliance.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
AlternateDNSServer |
Specifies the IPv4 address of the alternate DNS server in the network where the helper appliance resides. |
|
False |
Named |
False |
|
EnableFTP |
Enables the FTP access to the restored file system. If you provide this parameter, users will be able to access the helper appliance over FTP, browse the file system of the restored VM and download necessary files on their own.
Default: |
|
False |
Named |
False |
|
FromNSS |
Defines that the cmdlet will deploy a specific appliance that supports the Novell Storage Services file system.
Default: |
|
False |
Named |
False |
|
Gateway |
Specifies the IPv4 address of the DNS server in the network where the helper appliance resides. |
|
False |
Named |
False |
|
IP |
Specifies the IPv4 address that you want to assign to the helper appliance. Note: The helper appliance must be placed in the same network where the backup server resides. |
|
False |
Named |
False |
|
IPv6 |
Specifies the IPv6 address that you want to assign to the helper appliance. Note: The helper appliance must be placed in the same network where the backup server resides. |
|
False |
Named |
False |
|
IPv6AlternateDNSServer |
Specifies the IPv6 address of the alternate DNS server in the network where the appliance resides. |
|
False |
Named |
False |
|
IPv6Gateway |
Specifies the IPv6 address of the default gateway in the network where the appliance resides. |
|
False |
Named |
False |
|
IPv6PreferredDNSServer |
Specifies the IPv6 address of the DNS server in the network where the helper appliance resides. |
|
False |
Named |
False |
|
IPv6PrefixLength |
For the IPv6 addresses specified. Specifies the length of the IPv6 prefix. |
|
False |
Named |
False |
|
NetworkInfo |
Specifies the network settings for the helper appliance. Note:
Accepts the |
|
False |
Named |
False |
|
NetworkMask |
For the Specifies the network mask that you want to assign to the helper appliance. Note: The helper appliance must be placed in the same network where the backup server resides. |
|
False |
Named |
False |
|
PreferredDNSServer |
Specifies the IPv4 address of the alternate DNS server in the network where the helper appliance resides. |
|
False |
Named |
False |
|
ResourcePool |
Specifies the resource pool to which the helper appliance must be placed.
Accepts the |
|
False |
Named |
True (ByPropertyName) |
|
Server |
Specifies the ESXi host on which the temporary helper appliance must be registered. Note: If you specify a host for the Novell file system proxy appliance, make sure that it allows running VMs with 64-bit guest OSes.
Accepts the |
|
True |
Named |
True (ByPropertyName) |
|
VLanId |
Specifies an ID of an isolated network. The cmdlet will create the isolated network with the specified ID. |
|
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 VBRFileRestoreLinuxHelperApplianceOptions object that defines settings for a temporary helper appliance.
Examples
Defining Temporary Helper Appliance for File Restore from CDP Replica
This example shows how to define settings for a temporary helper appliance for file restore from a CDP replica. The helper appliance will be deployed on the ESXi01 ESXi host in the Servers resource pool.
|
$server = Get-VBRServer -Name "ESXi01" $resourcepool = Find-VBRViResourcePool -Server $server -Name "Servers" $helper = New-VBRFileRestoreLinuxHelperApplianceOptions -Server $server -ResourcePool $resourcepool |
Perform the following steps:
- Run the
Get-VBRServerReturns hosts connected to the backup infrastructure. cmdlet. Specify theNameparameter value. Save the result to the$servervariable. - Run the
Find-VBRViResourcePoolReturns VMware resource pools. cmdlet. Set the$servervariable as theServerparameter value. Specify theNameparameter value. Save the result to the$resourcepoolvariable. - Run the
New-VBRFileRestoreLinuxHelperApplianceOptionscmdlet. Set the$servervariable as theServerparameter value. Set the$resourcepoolvariable as theResourcePoolparameter value. Save the result to the$helpervariable.