
Editing Connection to Service Provider
You can edit the following parameters for a connection to a Veeam Cloud Connect service provider:
- Display name of the Veeam Cloud Connect service provider
- IP address and port used to connect to the cloud gateway
To change a name for the SP, use the following command:
veeamconfig cloud edit --name <new_sp_name> for --name <old_sp_name> |
veeamconfig cloud edit --name <new_sp_name> for --id <sp_id> |
- <old_sp_name> — current name of the SP.
- <new_sp_name> — desired name for the SP.
- <sp_id> — ID of the SP.
user@srv01:~$ veeamconfig cloud edit --name SP for --id 7d3022de-4f4d-4c70-85eb-e8a946a555cd |
Changing IP Address and Port for Cloud Gateway
veeamconfig cloud edit --address <sp_address> --port <sp_port> for --name <sp_name> |
veeamconfig cloud edit --address <sp_address> --port <sp_port> for --id <sp_id> |
- <sp_address> — IP address or full DNS name of the cloud gateway that the SP or your backup administrator has provided to you.
- <sp_port> — port over which Veeam Agent for Linux must communicate with the cloud gateway. The default port used for communication with the cloud gateway is 6180.
user@srv01:~$ veeamconfig cloud edit --address 172.17.53.67 --port 6180 for --name SP |
Changing Account to Connect to SP
To change an account whose credentials will be used to connect to the SP, use the following command:
veeamconfig cloud edit --login <username> --password <password> for --name <sp_name> |
veeamconfig cloud edit --login <username> --password <password> for --id <sp_id> |
- <username> — user name of the tenant or subtenant account that the SP or your backup administrator has provided to you. The user name of the subtenant account must be specified in the TENANT\SUBTENANT format.
- <password> — password of the tenant or subtenant account used to connect to the service provider.
user@srv01:~$ veeamconfig cloud edit --login ABC_Compan\User01 --password P@ssw0rd for --name SP |