Hi Handian Sudianto. I wanted to check in and see if you've been able to resolve your issue. Please don't hesitate to reach out if you have any questions—I'm always here to help!
Azure AD DNS
When we use traditional Active Directory then all endpoint joined to the domain will create or have entry in the DNS so we can easily access the other workstation by hostname.
But in Azure AD environment how we can access other workstation using hostname?
Windows for business | Windows 365 Enterprise
3 answers
Sort by: Most helpful
-
Tracy Le 3,555 Reputation points Independent Advisor
2026-03-07T01:49:51.2633333+00:00 -
Tracy Le 3,555 Reputation points Independent Advisor
2026-03-06T01:34:01.0966667+00:00 Hi Handian Sudianto,
Azure AD (now Microsoft Entra ID) does not natively provide device-to-device DNS resolution like traditional Active Directory.To access other workstations by hostname, you need to implement a DNS or routing solution based on your specific environment. Here are the most effective approaches:
- For Azure VMs or Windows 365 (Cloud PCs): You need to deploy Microsoft Entra Domain Services (Entra DS) or set up a custom DNS server within your Azure Virtual Network. Devices joined to this network will dynamically register their hostnames, replicating the traditional AD DNS behavior.
- For Physical Laptops on a Local Office Network: Entra ID does not manage local LAN traffic. You must configure your local office router/DHCP server to act as the DNS server to register client hostnames, or simply ensure network discovery (mDNS/LLMNR) is enabled on the Windows endpoints.
- For Remote/Work-From-Home Devices: If your workstations are strictly cloud-joined and geographically separated, you cannot resolve their hostnames natively. You will need a VPN, SD-WAN, or a Zero-Trust network solution like Microsoft Entra Private Access to securely route traffic between them.
I hope this information is helpful. If this answer clarifies your issue, please click "Accept answer" so that other community members facing similar issues can find the solution.
-
Q&A Assist2026-03-06T00:41:08.9866667+00:00 AI generated content. This question contains an answer created with AI from Q&A Assist. Learn moreIn a traditional AD DS domain, DNS records are created in an AD‑integrated DNS zone and clients resolve each other by hostname. In a pure Azure AD environment, there is no built‑in equivalent host‑name registration and resolution between workstations; Azure AD by itself does not provide device‑to‑device DNS like AD DS.
To access other workstations by hostname in an Azure‑based environment, a DNS solution must be added and clients configured to use it:
- Use AD DS (or Microsoft Entra Domain Services) with DNS
- Deploy Active Directory Domain Services (AD DS) or a managed domain (Microsoft Entra Domain Services) in Azure.
- AD DS uses DNS for domain controller location and name resolution; domain‑joined clients dynamically register their hostnames in the AD‑integrated DNS zone and can resolve each other by hostname.
- Configure client DNS settings so that workstations point to the AD DS / Entra DS DNS servers.
- Use custom DNS servers in Azure virtual networks
- For Windows 365 / Cloud PCs or Azure VMs, configure the Azure virtual network to use custom DNS servers (for example, domain controllers or standalone DNS servers) instead of the default Azure DNS.
- Domain‑joined Windows clients in that network can then use secure dynamic DNS (DDNS) to register their hostnames in that DNS server, enabling hostname‑based access between machines.
- Use Azure DNS private zones for complex topologies
- For multi‑region or multi‑domain architectures, Azure DNS private zones and Azure DNS Private Resolver can be used to centralize and route DNS queries between Azure networks and on‑premises DNS.
- Workstations still need a DNS server that holds or can resolve the host records (for example, AD‑integrated DNS plus conditional forwarders or private resolver).
Key points:
- Azure AD alone does not provide workstation hostname resolution.
- Hostname‑based access requires DNS infrastructure (AD DS/Entra DS DNS, custom DNS servers, and optionally Azure DNS private zones) and client DNS settings pointing to that infrastructure.
References:
- Use AD DS (or Microsoft Entra Domain Services) with DNS