ASR Deployment Planner

Bechir Gharbi 301 Reputation points
2022-09-23T18:56:52.733+00:00

Hi folks,
I want to use ASR Deployment Planner with VMware vCenter, ESXi 7.0. In MS documentation the VMware PowerCLI should be 6.0 R3 but it is does not work with vCenter 7.
vCenter 7 needs PowerCLI 12.x but is does not work with ASR deployment planner. Is there any workaround ?

Azure Site Recovery
Azure Site Recovery
An Azure native disaster recovery service. Previously known as Microsoft Azure Hyper-V Recovery Manager.
641 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. JimmySalian-2011 41,926 Reputation points
    2022-09-24T13:14:18.807+00:00

    Hi,

    Seems like a issue with vCenter as per the guidelines the pre-reqs and configuration is from Microsoft, did you raise a support case with VMware on this?

    Worth submitting a case with Microsoft and VMware for this and also submit a feedback with MS over here - 3ccca344-2d25-ec11-b6e6-000d3a4f0f84

    create-ticket

    ==
    Please "Accept the answer" if the information helped you. This will help us and others in the community as well.


  2. Bechir Gharbi 301 Reputation points
    2022-09-30T17:53:51.653+00:00

    Hello,
    I solved the issue. In effect, when trying to connect to vsphere 7, Powercli 6 uses tls 1.0/1.1 but with vSphere 6.7 or later, only tls 1.2 is enabled by default.
    So, finally, before to connect to vsphere with the command line connect-viserver, just run a connection over TLS 1.2 protocol with this line:
    [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12

    0 comments No comments