DNS Zone Types
I know DNS has been one of the boring topics. However, you should know that without DNS Active Directory has no existence, AD always needs a DNS in environment for its complete operations. Knowing DNS in and out can help you a lot to troubleshoot many name resolution and AD related problems.
DNS topic starts with one of the core concept called zones. It’s like some virtual division of authority for respective areas. In each zone there would a DNS to take care of all name resolution operations.
The table below lists the types of DNS zones:
Zone Type | Description |
Primary | The primary zone is the master copy of a zone database.
|
Secondary | A secondary zone is a read-only copy of the zone database.
|
Active Directory- integrated | An Active Directory-integrated zone holds zone data in Active Directory instead of a text file.
|
Stub | A stub zone is a zone with only a partial copy of the zone database.
|
GlobalNames | The GlobalNames zone is a special zone in the DNS database that is used for single- label name resolution. Use the GlobalNames zone to:
Be aware of the following when using the GlobalNames zone:
|
The zone types above describe the read-write capabilities and the storage location of zone data. In addition, zones are classified as one of two types:
- A forward lookup zone provides hostname-to-IP address resolution. Clients query the DNS server with the hostname, and receive the IP address in return.
- A reverse lookup zone provides IP address-to-hostname resolution. Clients query the DNS server with the IP address, and receive the hostname in return.
Quick Note – DNS Installation in Windows Server 2008
Don’t worry; I will explain the whole DNS installation with all the screen shot or videos in next posts. However, you should know the following facts about DNS installation in Windows Server 2008:
- To install DNS in Windows Server 2008, you must be a member of the Domain Admins group.
- You can install DNS on any version of Windows Server 2008 except for the Windows Server 2008 Web Server edition.
- You must assign the DNS server a static (or fixed) IP address.
- To install DNS on a server, use Server Manager and add the DNS role. To add the DNS role from a command prompt (or on Server Core), run: start /w ocsetup DNS-Server-Core-Role
- Run the oclist command to get a list of services (including DNS) installed on a server.
- Windows secondary servers can transfer data from non-Windows master servers, and vice versa, as long as the BIND versions are compatible. In some cases, Windows adds non-standard records or information to zone databases that make them incompatible with non-Windows DNS servers, especially servers running older versions of DNS.
- Use the DNS snap-in or the dnscmd command to manage DNS.
Recent Comments