Link to home
Start Free TrialLog in
Avatar of jskfan
jskfanFlag for Cyprus

asked on

understanding DNS

1-What's the benefits of using stub zone over secondary zone?
-What the difference between creating a stub zone and making it AD integrated or just primary?
-If I created a stub zone, can I right-click and created host records in it just like any other zone?

2-what protocol or machanism that DNS uses to transfer primary to secondary zone, or AD Integrated to secondary zone, Does it use RPC, KCC,etc..?
3-Which scavenging setting will override, the one set up at the DNS server level or at the zone level?
4-what 's the difference between the DNS zone of the child domain created through the DC promo wizard and the DNS zone of the child domain created at the DNS server in the parent domain by right-clicking and selecting New Domain?
Avatar of Chris Dent
Chris Dent
Flag of United Kingdom of Great Britain and Northern Ireland image


1. Stub is much lighter than a Secondary and is much more like a Conditional Forwarder than a Secondary Zone.

Advantages of a Stub Zone are:

 - Does not require permission to Transfer a zone
 - Is able to adapt if the Name Server records for a zone change

Disadvantages of a Stub Zone are:

 - Requires the servers listed in the NS records for the zone to answer the request

When comparing that to a Secondary zone, the server hosting the Secondary zone answers the request for the client directly. Secondary Zones allow for a much greater degree of fault tolerance.

2. It uses a Zone Transfer request on TCP Port 53. The operation is entirely within DNS, it doesn't touch on any external protocols or applications (such as RPC, or the KCC, etc).

The actual operation of Zone Transfers is discussed in RFC 1034, then again in  RFC 1995 which discusses Incremental Zone Transfers (changes only rather than entire zones):

http://www.ietf.org/rfc/rfc1034.txt
http://www.ietf.org/rfc/rfc1995.txt

3. You can set the Aging Defaults at the server level, however those are the defaults only. The Aging properties set on the zone itself take precedence over the server defaults.

4. There shouldn't be any difference at all. Both just create containers for the child domain to store data in DNS.

Chris
Avatar of jskfan

ASKER

1- so resolving request through stub zone is much more slower, because it needs to connect the servers in the NS tab.
can you right-click and created host records in it just like any other zone?
Does not require permission to Transfer a zone, what does that mean?



ASKER CERTIFIED SOLUTION
Avatar of Chris Dent
Chris Dent
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jskfan

ASKER

Thanks Chris for the clarification!