devokris wrote: » Hello, I'd like to know how to prevent DNS loops in the following scenario: There's an internal DNS domain called "mycompany.com", not resolvable from the Internet. It is hosted by a DNS server A. It is a critical central server, the nerve of the company. This server forwards to the Internet all the unsolved requests. someentity.mycompany.com must be hosted by a separate DNS server B. The company has little control over DNS server B. This server has a conditional or default forward to DNS server A, for all unsolved requests. The company doesn't have a "." internal domain. "Disable Recursion" is configured on all the DNS servers. My question: How would you configure the link from DNS server A to resolve DNS server B? - Simple Delegation: Does it works? I mean, will DNS server A forward a request for "someentity.mycompany.com" to DNS server B knowing that recursion is disabled? Is so, are DNS loops prevented? - Conditional Forwarding: If the zone someentity.mycompany.com is deleted from DNS server B, will it lead to an infinite DNS loop? How to prevent it? Thanks.