You could potentially rely on the internet root servers, but the recommended approach is to configure DNS forwarding or conditional forwarding to resolve external queries:
1. Enable Forwarding for External Queries
- Open DNS Manager (
dnsmgmt.msc
). - Right-click on the DNS Server (not the zone).
- Click Properties.
- Go to the Forwarders tab.
- Click Edit and add public DNS servers, such as:
- Google DNS:
8.8.8.8
,8.8.4.4
- OpenDNS:
208.67.222.222
,208.67.220.220
- Google DNS:
- Click OK and Apply the changes.
2. Ensure the Zone is Not Configured as a Root Zone If your DNS server has a root (.) zone, it will prevent forwarding. To check:
- In DNS Manager, if you see a zone named
(root)
, delete it.
3. Configure Conditional Forwarding If you want more control and only forward specific domains, configure Conditional Forwarders instead of default Forwarders:
- In DNS Manager, expand the server node.
- Right-click Conditional Forwarders and select New Conditional Forwarder.
- Enter the external domain name (e.g.,
microsoft.com
). - Add external DNS servers (like
8.8.8.8
or1.1.1.1
). - Click OK to save.
If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar isues can easily find the solution. Your contribution is highly appreciated.
hth
Marcin