Add-VBRESX
Short Description
Adds ESX hosts to Veeam Backup & Replication.
|
This cmdlet is obsolete and will not be supported the next version. |
Applies to
Platform: VMware
Product Edition: Standard, Enterprise, Enterprise Plus
Syntax
This cmdlet provides 2 parameter sets.
- For authenticating with username/password:
Add-VBRESX [-Name] <string> [-User] <string> [-Password] <string> [-Port <int>] [-SSHUser <string>] [-SSHPassword <string>] [-SSHPort <int>] [-SSHEnable] [-Description <string>] [-SSHCredentials <CCredentials>] [<CommonParameters>] |
- For authenticating with credentials:
Add-VBRESX [-Name] <string> -Credentials <CCredentials> [-Port <int>] [-SSHUser <string>] [-SSHPassword <string>] [-SSHPort <int>] [-SSHEnable] [-Description <string>] [-SSHCredentials <CCredentials>] [<CommonParameters>] |
Detailed Description
This cmdlet adds ESX servers to the Veeam Backup & Replication managing console.
If an ESX host is a part of a vCenter Server, it is recommended to add the vCenter Server instead of a single ESX host.
When adding a new ESX server, you will need to provide either username and password or credentials. Use an appropriate parameter set for each case.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Name | Specifies the full DNS name or IP address of the ESX host. | True | 1 | False | False |
User | Specifies the user name you want to use for authenticating with the ESX host. | True | 2 | False | False |
Password | Specifies the password you want to use for authenticating with the ESX host. | True | 3 | False | False |
Credentials | Specifies the credentials you want to use for authenticating with the ESX server. | True | Named | False | False |
Port | Specifies the Web service port for connection to the ESX host. Default: 443. | False | Named | False | False |
SSHUser | Specifies the user name of the account used for service console connection to the host (recommended). | False | Named | False | False |
SSHPassword | Specifies the password of the account used for service console connection to the host (recommended). | False | Named | False | False |
SSHPort | Specifies the service console port (recommended). | False | Named | False | False |
SSHEnable | For SSH connection. Indicates that the ESX host is connected using service console connection. | False | Named | False | False |
Description | Specifies the description of the ESX server. | False | Named | False | False |
SSHCredentials | For SSH connection. Specify credentials you want to use to authenticate with the service console. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Example 1
This command adds the ESX host with 172.16.11.188 IP address. The username is "root" and the password is "qwerty".
Example 2
This command adds the ESX host with 172.16.11.188 IP address. The credentials to authenticate with the host are obtained with Get-VBRCredentials and assigned to the $Administrator variable beforehand.
Related Commands