Hi @Seb Reins
Thank you for posting this in Microsoft Q&A.
I understand you are facing some challenges with DNS resolution in your Microsoft Entra Domain Services (MEDS) environment. Based on the information you provided, it appears that you are trying to resolve external website domain names from a workstation joined to MEDS, and you suspect a split-brain DNS issue.
Setting up conditional forwarders could potentially help in resolving external domain names correctly without breaking the VM. Conditional forwarders allow you to forward DNS queries for specific domain names to external DNS servers for resolution. This can help in resolving external domain names while still maintaining the internal DNS resolution for your MEDS environment.
can I set up conditional forwarders by once again following this article https://learn.microsoft.com/en-us/entra/identity/domain-services/manage-dns#create-conditional-forwarders and add the external IP's or will this break the VM?
Steps to Configure Conditional Forwarders:
- Install RSAT: DNS Server Tools on your MEDS-joined VM (if not installed already).
- Open DNS Manager (
dnsmgmt.msc
). - Right-click Conditional Forwarders and select New Conditional Forwarder.
- Enter abc.com as the domain name.
- Add the external public DNS servers (such as your domain registrar’s or a public DNS like Google’s
8.8.8.8
and8.8.4.4
). - Click OK to save the settings.
No, this should not break the VM as long as you only configure the conditional forwarder for external resolution and do not modify the core DNS settings required for MEDS (e.g., 10.0.1.4
and 10.0.1.5
).
You can try below approach as well
Editing the Hosts File:
On the VM, add an entry in C:\Windows\System32\drivers\etc\hosts: <IP_Address> <Hostname> This is a manual workaround but should work immediately.
For your reference: https://techcommunity.microsoft.com/blog/appsonazureblog/hostfile-entry-on-windows-and-linux-machine/4111820
Hope this helps. Do let us know if you any further queries.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.