Puede cargar la imagen Unified Access Gateway .vhd en Azure.

Procedimiento

  1. Obtenga de VMware un archivo de imagen Unified Access Gateway .vhd de la versión de Unified Access Gateway específica.
  2. Use los siguientes comandos de PowerShell de ejemplo para cargar la imagen .vhd en el contenedor vhds creado anteriormente.
    $imageURI = "https://<storage_account_name>.blob.core.windows.net/vhds/euc-unified-access-gateway-3.4.0.0-11037344_OVF10.vhd"
    $imagePath = "E:\UAGImages\euc-unified-access-gateway-3.4.0.0-11037344_OVF10.vhd"
    
    $location="<Azure regions names with availability zone support>"
    PowerShell 5:
    Set-Item -Path Env:\SuppressAzureRmModulesRetiringWarning -Value $true
    Add-AzureRmVhd -ResourceGroupName $resourceGroup -LocalFilePath $imagePath ` 
    -Destination $imageURI -NumberOfUploaderThreads 32
    PowerShell 7:
    Add-AzVhd -ResourceGroupName $resourceGroup -LocalFilePath $imagePath ` 
    -Destination $imageURI -NumberOfUploaderThreads 32
    La imagen .vhd cargada aparece en el contenedor vhds.

    Para la zona de disponibilidad

    $location="uk south"
    
    $resourceGroup="uagrg"

    PowerShell 5:

    $imageConfig = New-AzureRmImageConfig -Location $location
    Set-AzureRmImageOsDisk -Image $imageConfig -OsType Linux -OsState Generalized -BlobUri $imageURI
    New-AzureRmImage -Image $imageConfig -ImageName $imageName -ResourceGroupName $resourceGroup

    PowerShell 7:

    $imageConfig = New-AzImageConfig -Location $location
    $imageConfig = Set-AzImageOsDisk -Image $imageConfig -OsType Linux -OsState Generalized -BlobUri $imageURI
    $image = New-AzImage -ImageName $imageName -ResourceGroupName $resourceGroup -Image $imageConfig