An Azure backup service that provides built-in management at scale.
Would try to bring in something that was not added already in the other answer.
Bharath YP has summed up it very well, I think i can add some perspective.
Based on the test results, each recovery option appears to be failing at a different stage of the recovery workflow, which helps narrow down the underlying dependency involved.
Recover to Original Instance
The restore operation fails with Error ID 130001/3111, which generally indicates that the recovery process cannot complete communication with Azure services during the restore workflow.
Rather than focusing only on the restore job itself, it may be useful to validate whether the MABS server can successfully reach the Azure Backup service endpoints outside of the recovery operation. If endpoint access, name resolution, or outbound HTTPS communication is interrupted, cloud recovery jobs may fail before the VM data is fully restored.
Key areas to review include:
- Outbound HTTPS (TCP 443) connectivity.
- DNS resolution of Azure Backup and Azure Storage endpoints.
- Proxy and firewall configuration.
- MARS agent health and registration status.
Recover as Virtual Machine to Any Host
This recovery path appears to have successfully recovered the VM payload itself, which is a useful diagnostic outcome because it confirms that:
- The recovery point is valid.
- Recovery data can be downloaded from Azure Backup.
- MABS is capable of completing the restore process.
The remaining issue is not the recovery operation itself, but the placement of the recovered disks. Since the disks are attached through a temporary staging volume path rather than a Cluster Shared Volume (CSV), the VM does not meet the storage requirements typically expected for High Availability workloads and Azure Local integration.
A practical next step would be to migrate the restored virtual disks to permanent clustered storage and then validate HA registration and Azure Arc visibility from that location.
Copy to Network Folder
Error 100072 indicates that the recovery process exhausted available local staging capacity before completion.
An important point is that cloud recovery operations often require temporary local space even when the final destination is a network share. As a result, sufficient free space is required both for staging and for the target recovery location.
Consider validating:
- Available free space on the MABS staging volume.
- Scratch/staging location configuration.
- Available capacity and permissions on the destination share
Overall Assessment
The most significant finding is that the alternate-host recovery completed successfully, which suggests that the Azure recovery point itself is healthy and usable.
Based on the observed behaviour:
- The Original Instance recovery appears to be blocked by a communication or endpoint-access dependency.
- The Network Folder recovery appears to be blocked by a local capacity constraint.
- The Alternate Host recovery successfully restored the workload, leaving only post-recovery storage placement and HA configuration activities to complete.
This makes the alternate-host recovery path the strongest indicator that the backup data is intact and recoverable, while the remaining issues are environmental rather than recovery-point related.
Help make this community better for everyone: if this answer resolved your issue, please accept it or leave an upvote. If not, share more details in a comment so we can continue the discussion and find the right solution.