From 8fa71e17a9271f1fbd1b812d4f2e909016bb2d3c Mon Sep 17 00:00:00 2001 From: dstagnol Date: Wed, 27 Aug 2025 09:23:01 +0200 Subject: [PATCH 1/2] adding troubleshooting section --- .../guide.en-gb.md | 25 ++++++++++++++++++- .../guide.fr-fr.md | 25 ++++++++++++++++++- 2 files changed, 48 insertions(+), 2 deletions(-) diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-gb.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-gb.md index eccd8c9b19d..a58a4147bff 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-gb.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-gb.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -155,6 +155,29 @@ Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/objec \*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)** +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux** +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact OVHcloud Support for further analysis. + ## Go further If you need training or technical assistance to implement our solutions, contact your sales representative or click on [this link](/links/professional-services) to get a quote and ask our Professional Services experts for a custom analysis of your project. diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.fr-fr.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.fr-fr.md index d9f73640875..d85f54341df 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.fr-fr.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.fr-fr.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migration de charges VMware vers OVHcloud SecNumCloud avec Veeam Replication excerpt: "Découvrez comment migrer vos charges de travail VMware on-premises vers un environnement Hosted Private Cloud SecNumCloud d’OVHcloud à l’aide de Veeam Replication." -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objectif @@ -153,6 +153,29 @@ Suivez les étapes décrites dans notre guide « [Object Storage - Utiliser Obje 1 : S3 est une marque déposée d’Amazon Technologies, Inc. Le service d’OVHcloud n’est ni sponsorisé, ni approuvé, ni affilié de quelque manière que ce soit à Amazon Technologies, Inc. +## Dépannage + +### Vérifier l’accessibilité des hôtes ESXi + +Si vous rencontrez des difficultés pour accéder à l’infrastructure Hosted Private Cloud lors de l’exécution de vos sauvegardes, testez l’accès pour chacun des hôtes du cluster depuis vos composants Veeam (serveur, proxy). + +Exemple pour l’hôte .50 : + +**Sous Windows (PowerShell)** +```powershell +Test-NetConnection -ComputerName [IP_Host_PCC] -Port 950 +``` + +**Sous Linux** +```bash +nc -vz [IP_Host_PCC] 950 +``` + +>[!primary] +> - Si les hôtes ne sont pas accessibles, créez une règle sortante sur vos composants Veeam afin d’autoriser la plage de ports **950-999**. +> - Selon le nombre d’hôtes, vous pouvez également devoir ouvrir les plages **1100-1255** et **1300-1551**. +> - Si les hôtes sont accessibles malgré l’erreur rencontrée, rapprochez-vous du support OVHcloud afin d’analyser la problématique. + ## Aller plus loin Si vous avez besoin d'une formation ou d'une assistance technique pour la mise en œuvre de nos solutions, contactez votre Technical Account Manager ou demandez une analyse personnalisée de votre projet à nos experts de l’équipe [Professional Services](/links/professional-services). From f5011f06ac2c1fe1a845a53eb3712231a5b48fcc Mon Sep 17 00:00:00 2001 From: Yoann Cosse Date: Wed, 27 Aug 2025 11:28:24 +0200 Subject: [PATCH 2/2] Proofreading & duplication --- .../guide.de-de.md | 31 +++++++++++++++++-- .../guide.en-asia.md | 31 +++++++++++++++++-- .../guide.en-au.md | 31 +++++++++++++++++-- .../guide.en-ca.md | 31 +++++++++++++++++-- .../guide.en-gb.md | 12 ++++--- .../guide.en-ie.md | 31 +++++++++++++++++-- .../guide.en-sg.md | 31 +++++++++++++++++-- .../guide.en-us.md | 31 +++++++++++++++++-- .../guide.es-es.md | 31 +++++++++++++++++-- .../guide.es-us.md | 31 +++++++++++++++++-- .../guide.fr-ca.md | 31 +++++++++++++++++-- .../guide.fr-fr.md | 10 +++--- .../guide.it-it.md | 31 +++++++++++++++++-- .../guide.pl-pl.md | 31 +++++++++++++++++-- .../guide.pt-pt.md | 31 +++++++++++++++++-- 15 files changed, 377 insertions(+), 48 deletions(-) diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.de-de.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.de-de.md index eccd8c9b19d..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.de-de.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.de-de.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -149,11 +149,36 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. + +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)**: + +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux**: + +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-asia.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-asia.md index eccd8c9b19d..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-asia.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-asia.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -149,11 +149,36 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. + +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)**: + +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux**: + +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-au.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-au.md index eccd8c9b19d..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-au.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-au.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -149,11 +149,36 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. + +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)**: + +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux**: + +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-ca.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-ca.md index eccd8c9b19d..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-ca.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-ca.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -149,11 +149,36 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. + +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)**: + +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux**: + +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-gb.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-gb.md index a58a4147bff..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-gb.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-gb.md @@ -149,11 +149,11 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. ## Troubleshooting @@ -163,12 +163,14 @@ If you experience issues accessing the Hosted Private Cloud infrastructure durin Example for host .50: -**On Windows (PowerShell)** +**On Windows (PowerShell)**: + ```powershell Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 ``` -**On Linux** +**On Linux**: + ```bash nc -vz [PCC_Host_IP] 950 ``` @@ -176,7 +178,7 @@ nc -vz [PCC_Host_IP] 950 >[!primary] > - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. > - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. -> - If the hosts are reachable but errors persist, please contact OVHcloud Support for further analysis. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-ie.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-ie.md index eccd8c9b19d..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-ie.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-ie.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -149,11 +149,36 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. + +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)**: + +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux**: + +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-sg.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-sg.md index eccd8c9b19d..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-sg.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-sg.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -149,11 +149,36 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. + +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)**: + +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux**: + +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-us.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-us.md index eccd8c9b19d..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-us.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.en-us.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -149,11 +149,36 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. + +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)**: + +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux**: + +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.es-es.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.es-es.md index eccd8c9b19d..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.es-es.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.es-es.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -149,11 +149,36 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. + +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)**: + +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux**: + +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.es-us.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.es-us.md index eccd8c9b19d..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.es-us.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.es-us.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -149,11 +149,36 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. + +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)**: + +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux**: + +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.fr-ca.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.fr-ca.md index d9f73640875..870d5487125 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.fr-ca.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.fr-ca.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migration de charges VMware vers OVHcloud SecNumCloud avec Veeam Replication excerpt: "Découvrez comment migrer vos charges de travail VMware on-premises vers un environnement Hosted Private Cloud SecNumCloud d’OVHcloud à l’aide de Veeam Replication." -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objectif @@ -147,16 +147,41 @@ Consultez le guide « [VMware Storage vMotion](/pages/hosted_private_cloud/hoste ### Étape 17 : Créer des jobs de sauvegarde -Protégez vos VMs à long terme en créant des jobs de sauvegarde Veeam vers le **stockage objet OVHcloud** (compatible S3(1)). +Protégez vos VMs à long terme en créant des jobs de sauvegarde Veeam vers le **stockage objet OVHcloud** (compatible S31). Suivez les étapes décrites dans notre guide « [Object Storage - Utiliser Object Storage avec Veeam](/pages/storage_and_backup/object_storage/s3_veeam) ». 1 : S3 est une marque déposée d’Amazon Technologies, Inc. Le service d’OVHcloud n’est ni sponsorisé, ni approuvé, ni affilié de quelque manière que ce soit à Amazon Technologies, Inc. +## Dépannage + +### Vérifier l’accessibilité des hôtes ESXi + +Si vous rencontrez des difficultés pour accéder à l’infrastructure Hosted Private Cloud lors de l’exécution de vos sauvegardes, testez l’accès pour chacun des hôtes du cluster depuis vos composants Veeam (serveur, proxy). + +Exemple pour l’hôte .50 : + +**Sous Windows (PowerShell)** : + +```powershell +Test-NetConnection -ComputerName [IP_Host_PCC] -Port 950 +``` + +**Sous Linux** : + +```bash +nc -vz [IP_Host_PCC] 950 +``` + +>[!primary] +> - Si les hôtes ne sont pas accessibles, créez une règle sortante sur vos composants Veeam afin d’autoriser la plage de ports **950-999**. +> - Selon le nombre d’hôtes, vous pouvez également devoir ouvrir les plages **1100-1255** et **1300-1551**. +> - Si les hôtes sont accessibles malgré l’erreur rencontrée, rapprochez-vous du [support OVHcloud](https://help.ovhcloud.com/csm?id=csm_get_help) afin d’analyser la problématique. + ## Aller plus loin Si vous avez besoin d'une formation ou d'une assistance technique pour la mise en œuvre de nos solutions, contactez votre Technical Account Manager ou demandez une analyse personnalisée de votre projet à nos experts de l’équipe [Professional Services](/links/professional-services). Posez des questions, donnez votre avis et interagissez directement avec l’équipe qui construit nos services Hosted Private Cloud sur le canal [Discord](https://discord.gg/ovhcloud) dédié. -Échangez avec notre [communauté d'utilisateurs](/links/community). \ No newline at end of file +Échangez avec notre [communauté d'utilisateurs](/links/community). diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.fr-fr.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.fr-fr.md index d85f54341df..b58f761f071 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.fr-fr.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.fr-fr.md @@ -147,7 +147,7 @@ Consultez le guide « [VMware Storage vMotion](/pages/hosted_private_cloud/hoste ### Étape 17 : Créer des jobs de sauvegarde -Protégez vos VMs à long terme en créant des jobs de sauvegarde Veeam vers le **stockage objet OVHcloud** (compatible S3(1)). +Protégez vos VMs à long terme en créant des jobs de sauvegarde Veeam vers le **stockage objet OVHcloud** (compatible S31). Suivez les étapes décrites dans notre guide « [Object Storage - Utiliser Object Storage avec Veeam](/pages/storage_and_backup/object_storage/s3_veeam) ». @@ -161,12 +161,14 @@ Si vous rencontrez des difficultés pour accéder à l’infrastructure Hosted P Exemple pour l’hôte .50 : -**Sous Windows (PowerShell)** +**Sous Windows (PowerShell)** : + ```powershell Test-NetConnection -ComputerName [IP_Host_PCC] -Port 950 ``` -**Sous Linux** +**Sous Linux** : + ```bash nc -vz [IP_Host_PCC] 950 ``` @@ -174,7 +176,7 @@ nc -vz [IP_Host_PCC] 950 >[!primary] > - Si les hôtes ne sont pas accessibles, créez une règle sortante sur vos composants Veeam afin d’autoriser la plage de ports **950-999**. > - Selon le nombre d’hôtes, vous pouvez également devoir ouvrir les plages **1100-1255** et **1300-1551**. -> - Si les hôtes sont accessibles malgré l’erreur rencontrée, rapprochez-vous du support OVHcloud afin d’analyser la problématique. +> - Si les hôtes sont accessibles malgré l’erreur rencontrée, rapprochez-vous du [support OVHcloud](https://help.ovhcloud.com/csm?id=csm_get_help) afin d’analyser la problématique. ## Aller plus loin diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.it-it.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.it-it.md index eccd8c9b19d..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.it-it.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.it-it.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -149,11 +149,36 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. + +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)**: + +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux**: + +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.pl-pl.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.pl-pl.md index eccd8c9b19d..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.pl-pl.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.pl-pl.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -149,11 +149,36 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. + +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)**: + +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux**: + +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further diff --git a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.pt-pt.md b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.pt-pt.md index eccd8c9b19d..538cac4dd8f 100644 --- a/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.pt-pt.md +++ b/pages/hosted_private_cloud/hosted_private_cloud_powered_by_vmware/vmware_migration_veeam_secnumcloud/guide.pt-pt.md @@ -1,7 +1,7 @@ --- title: Move2Cloud - Migrating VMware Workloads to OVHcloud SecNumCloud with Veeam Replication excerpt: Learn how to migrate your on-prem VMware workloads to an OVHcloud Hosted Private Cloud SecNumCloud environment using Veeam Replication -updated: 2025-04-18 +updated: 2025-08-27 --- ## Objective @@ -149,11 +149,36 @@ Learn more in the [Storage vMotion guide](/pages/hosted_private_cloud/hosted_pri ### Step 17: Create backup jobs -To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S3\*-compatible). +To protect your VMs long-term, configure backup jobs in Veeam that use **OVHcloud Object Storage** (S31-compatible). Follow the steps in our [dedicated backup guide](/pages/storage_and_backup/object_storage/s3_veeam). -\*: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. +1: S3 is a trademark of Amazon Technologies, Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies, Inc. + +## Troubleshooting + +### Verify ESXi host accessibility + +If you experience issues accessing the Hosted Private Cloud infrastructure during your backups, test connectivity to each host in the cluster from your Veeam components (server, proxy). + +Example for host .50: + +**On Windows (PowerShell)**: + +```powershell +Test-NetConnection -ComputerName [PCC_Host_IP] -Port 950 +``` + +**On Linux**: + +```bash +nc -vz [PCC_Host_IP] 950 +``` + +>[!primary] +> - If the hosts are not reachable, create an outbound rule on your Veeam components to allow the port range **950-999**. +> - Depending on the number of hosts, you may also need to open ranges **1100-1255** and **1300-1551**. +> - If the hosts are reachable but errors persist, please contact [OVHcloud Support](https://help.ovhcloud.com/csm?id=csm_get_help) for further analysis. ## Go further