Unable to resolve global.rdc.infrastructure.microsoft.com from Azure VM (NXDOMAIN from 8.8.8.8 and 1.1.1.1)

Michael Fowler 20 Reputation points
2025-04-23T05:19:24.48+00:00
  • I'm deploying AVD in Azure. DNS resolution to global.rdc.infrastructure.microsoft.com fails even when using the Azure-provided DNS (168.63.129.16) inside my VNet. Public resolvers like 8.8.8.8 and 1.1.1.1 also return NXDOMAIN — as expected. But this domain should resolve internally for AVD to provision. Is DNS resolution to control plane endpoints blocked in certain new Azure subscriptions or regions?
Azure Virtual Desktop
Azure Virtual Desktop
A Microsoft desktop and app virtualization service that runs on Azure. Previously known as Windows Virtual Desktop.
1,756 questions
{count} votes

Accepted answer
  1. Pramidha Yathipathi 325 Reputation points Microsoft External Staff
    2025-04-24T09:59:57.7866667+00:00

    Hi Michael Fowler,

    In your new subscription, the Microsoft.DesktopVirtualization provider must be registered. Even if it shows as registered, sometimes unregistering and re-registering triggers the DNS control plane endpoint propagation.

    Check and (Re)Register the Required Azure Resource Provider

    Check registration:

    az provider show --namespace Microsoft.DesktopVirtualization --query "registrationState"
    

     If it’s Registered, unregister it:

    az provider unregister --namespace Microsoft.DesktopVirtualization
    

    Then re-register:

    az provider register --namespace Microsoft.DesktopVirtualization
    

    Wait about 2-5 minutes for registration and propagation.

    and then restart the Azure VM

    Once the provider is registered again:

    az vm restart --resource-group <YourResourceGroup> --name <YourVMName>
    

    This ensures the VM picks up the latest internal DNS control plane zones.

    Test DNS Resolution Again

    From inside your VM:

    nslookup global.rdc.infrastructure.microsoft.com 168.63.129.16

    https://learn.microsoft.com/en-us/azure/virtual-desktop/private-link-setup?tabs=azure%2Cportal%2Cportal-2#initial-feed-discovery

    As the information was helpful, please click "Upvote" and "Accept Answer" on the post to let us know.

    Accepted answer will help other community members navigate to the appropriate solutions.

    User's image

    Thank you.

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.