Home > Articles > Operating Systems, Server > Microsoft Servers

The Domain Name System

Deploying DNS Servers

DNS is exceptionally scalable, as it has to be to handle name services on the Internet. This scalability is possible because the workload can be distributed across many DNS servers. There are several ways to combine DNS servers to enhance DNS service capabilities:

  • Two or more name servers can serve as redundant authorities for the same domain. Clients can query any authoritative name server to retrieve records for the domain.

  • Authority for subdomains can be delegated.

  • Cache-only name servers can reduce query traffic by consolidating the results of recent queries.

You have already seen how DNS enables us to establish subdomains with their own name servers. Let's take a look at the theory behind the other two scalability techniques, redundant name servers and cache-only name servers.

Servicing a Zone with Multiple Name Servers

There are two excellent reasons for having at least two name servers with authority for a zone:

  • Fault tolerance. The zone can advertise all the available name servers, so that clients have an alternative if one name server fails.

  • Scaling. Clients can distribute their queries across all available name servers, enhancing the responsiveness of queries to the zone.

The Windows 2000 DNS service provides two means of supporting a domain with more than one name server. There is the traditional method with statically defined primary and secondary servers, but the Windows 2000 DNS service can also create zones that are integrated with the Active Directory. Let's discuss the merits of both approaches.

Primary and Secondary Zones

With most DNS servers, such as BIND and Windows NT 4, a master copy of a domain database is placed in a primary zone. All changes to the domain database must be made in the primary zone.

Under this approach, you can configure additional name servers with secondary zones that store copies of the zone data obtained from either the primary zone or another secondary zone. The source of the zone data is called a DNS master, and the process of transferring zone data from a DNS master to a secondary zone is called a zone transfer. Figure 3.3 illustrates the relationships that are possible among primary and secondary DNS zones.

Figure 3.3 Secondary zones can obtain zone data from the primary zone or from other secondary zones.

DNS servers supporting secondary zones retain copies of the zone data in case the server for the primary zone becomes unavailable. However, the zone data can only be updated in the primary zone, after which secondary zones are updated through zone transfers.

The databases for primary and secondary zones are usually stored in text files. The default location for the DNS database files on Windows 2000 is the folder %SystemRoot%\System32\Dns. These files are formatted to be compatible with BIND DNS servers, enabling you to import or export zones from BIND configuration files. (Windows NT 4 can read and write BIND-format data files but stores its working copy of DNS zone data in the Registry.)

Windows 2000 DNS supports primary and secondary zones so that it can interoperate with BIND and other standard DNS servers. A Windows 2000 DNS server can host a secondary zone that is transferred from an outside name server. Alternatively, you configure a BIND server with a secondary zone that is copied from a Windows 2000 Server system. A secondary zone doesn't have to accept dynamic updates, but it does need to support the SRV resource record if you are running Active Directory.

Active Directory–Integrated Zones

If you are running your primary name servers on Windows 2000 Server and have set up Active Directory, you can avoid many of the limitations of conventional primary and secondary zones by taking advantage of zones that are integrated with Active Directory.

The data for Active Directory–integrated zones are stored in Active Directory, extending to DNS data the advantages of Active Directory such as multimaster replication and enhanced security. Zone data are replicated to Domain Controllers (DCs) through normal Active Directory replication, and there is no need to explicitly configure zone transfers. Transfer of zone data is made more efficient because Active Directory replicates only properties that change, whereas a zone transfer requires replication of the entire zone database. Because each DC has a copy of the Active Directory database for the domain, any DC can become a DNS server for an Active Directory–integrated zone simply by adding the zone to its DNS server configuration. All DNS servers that are authoritative for an Active Directory–integrated zone are peers, and there is no distinction between primary and secondary zones. Consequently, it is not necessary to manage zone data only on the DNS server that supports the primary copy of the zone.

Active Directory–integrated zones support secure dynamic updating. When you integrate a zone into Active Directory, Access Control Lists are enabled that determine the users and groups that can update the zone or specific resource records. Windows 2000 DNS clients can update the zone directly, whereas legacy clients update the zone using DHCP as a proxy.

Delegating Authority

If you have a small organization, you will probably be quite happy with a single DNS domain. Management is simplified, and short names are better for users. When was the last time you typed a DNS name with more than three levels in addition to the hostname?

But there are at least two good reasons for creating subdomains and delegating their authority to additional name servers:

  • Scaling. If your domain has grown too large, or the demand on your servers has become too great, delegation provides a method of scaling by hosting several smaller domains on multiple DNS servers.

  • Delegation of Control. If your organization has multiple sites or departments, it might be necessary to delegate control of some of your DNS namespace. This can only be done by creating subdomains.

Let's look at two scenarios for Pseudo Corp, with sites in Chicago, Paris, and Tokyo. There are several questions to answer:

  • Do we want to create subdomains for locations, for example, tokyo.pseudo-corp.com?

  • Do we want to create subdomains for departments, for example, sales. pseudo-corp.com or sales.chicago.pseudo-corp.com?

Remember that there is no fixed relationship between a host's domain name and its physical location or the department in which it is used. http://www.pseudo-corp.com doesn't have to be in a tokyo.pseudo-corp.com domain, even if it is located in Tokyo. A given host can even be known by two names. You might call a host http://www.tokyo.pseudo-corp.com for administrative purposes, so that you make it clear where the machine is located. You could also give it the name http://www.pseudo-corp.com because that's what the public expects your Web server to be called. DNS is very flexible.

So let's investigate two scenarios, one a simplified approach with central administration of the entire DNS database, and one, more elaborate, with delegated control of subdomains.

Centralized DNS

First, let's assume that the DNS database will be centrally controlled. A name server in Chicago will host the primary zone database, and we will locate a DNS server at each site to host secondary copies of the zone. To keep things simple, we won't create zones for locations. All the resource records will be stored in the pseudo-corp.com domain.

Figure 3.4 illustrates this simplified approach. Each site has a DNS server that can respond to local queries. Once a day, zone transfers are scheduled to copy changes made to the primary zone database in Chicago to the DNS servers in Tokyo and Paris.

Figure 3.4 The DNS server in Chicago maintains all DNS data in a primary zone. Secondary copies of the zone are transferred to DNS servers in Tokyo and Paris.

An advantage of this approach is that all DNS administration is centralized. Secondary zones are essentially maintenance free, so the staff in Tokyo and Paris don't require a lot of DNS expertise.

Strictly speaking, it is not necessary to place DNS servers at Tokyo and Paris. Users there could easily configure their systems to use the DNS servers in Chicago. But local servers reduce WAN traffic, and WAN bandwidth is expensive. Also, local DNS servers provide added fault tolerance.

Tokyo and Paris might not be too happy with this approach. When a name change is needed at one of those locations, they must send the change request to Chicago and wait while staff in Chicago make the change, and a zone transfer takes place. Either because of the delay involved, or because Tokyo and Paris demand control of their local namespace, it might be necessary to establish location subdomains and delegate control of those subdomains to local administrators.

Decentralized DNS

You can't delegate control for part of a domain. The only way to give Tokyo control of its local domain names is to give Tokyo its own domain. So let's set up chicago.pseudo-corp.com, tokyo.pseudo-corp.com, and paris.pseudo-corp.com domains along with a suitable array of primary and secondary zones. The result looks like Figure 3.5.

Why doesn't Figure 3.5 include a zone for chicago.pseudo-corp.com? A separate zone isn't necessary. Chicago is a subdomain of pseudo-corp.com. Because the Chicago name servers will have the primary copies of data for the parent and child domains, chicago can be placed in the zone for pseudo-corp.com. A single zone takes care of both the parent and the child.

This approach doesn't require more hardware than the centrally managed approach in Figure 3.4. It does require that administrators in Paris and Tokyo understand DNS, and it does add another level to the organization's DNS names. The decision to centralize or distribute DNS authority within an organization requires careful consideration.


Note

As you will see later in the chapter, these concerns are less prominent when DNS is integrated with Active Directory. The distinction between primary and secondary zones disappears, and it becomes possible to administer DNS from any location.


Figure 3.5 DNS authority has been distributed so that each site has control of its local database.

Reducing WAN Traffic with Forwarding DNS Servers

The value of a forwarding DNS server is a bit difficult to comprehend unless you picture a large enterprise network that has multiple DNS servers, such as the organization shown in Figure 3.6. A DNS server maintains a cache of recently resolved names. If a client requests resolution of a name, the DNS server first looks for the name in its cache. Thus, if many clients are making the same request, the DNS server can respond using the data in its cache after making a single outside lookup request.

It is particularly desirable to cache name lookups made through WANs such as the Internet because WAN connections have bandwidth limitations, and it is a waste of WAN capacity to repeatedly look up the same names. But, what happens if a large enterprise has many DNS servers independently making DNS queries to the Internet? There is a good chance that information on one DNS server might satisfy a lookup request that is received by another DNS server. However, knowing what we know now, there is no way for the DNS servers to consolidate the data in their caches. In Figure 3.6, suppose that several clients are requesting DNS to resolve the name http://www.microsoft.com. Because the DNS servers operate independently, each must process the query.

Figure 3.6 This organization has multiple DNS servers that function independently.

That's where a forwarding DNS server, also referred to as a forwarder, or a cache-only name server, comes in. Typically, the forwarder is not used directly by DNS clients and is not authoritative for any domains. Rather, as shown in Figure 3.7, local DNS servers send to the forwarding DNS server all queries that they cannot resolve using data in their cache or in zones for which they have copies. Consequently, the forwarding server has in its cache the results of every outside DNS query generated by the enterprise. This makes it much more likely that a DNS request can be satisfied locally without generating traffic on the WAN.

Reverse Lookup Zones

Until now, we have been looking only at the way DNS resolves a hostname to an IP address. Occasionally, it is necessary to take a known IP address and match it to a domain name. Resolving an IP address to a domain name is called a reverse lookup.

There is an entire naming hierarchy on the Internet just for reverse lookups. Reverse-naming zones are also called in-addr.arpa zones because the top two levels of the reverse-naming tree are named arpa (top level) and in-addr (second level). (Welcome to one of the fossils that will, perhaps forever, remind us of the days before the ARPAnet became known as the Internet.)

Figure 3.7 A forwarding DNS server stores all outside lookups in its cache and can provide them to any internal DNS server.

Figure 3.8 shows how the in-addr.arpa hierarchy is structured and the procedure for resolving the IP address 172.25.133.110 to a resource record that identifies the domain name of the host with that IP address. In this case, the name is drew.pseudo-corp.com. Layers three through six in the hierarchy correspond to octets in the available IP addresses, beginning with the first octet in level three and proceeding to the fourth octet at level six.

Thus, searching down the tree, you can find a domain that matches every possible netid for a Class A, B, or C network. Within the in-addr.arpa domains, Pointer (PTR) resource records match the last octet of a host's IP address to its hostname.

After subjecting you to that explanation, I'll point out that you might never need to set up a reverse-naming zone. Very, very few processes perform reverse lookups. I encountered the need for reverse lookup capability once on the Internet when I tried to download some "not for export" encryption software. The host system did a reverse lookup to ensure that I was working from a host that was in a domain registered in the United States. You might run into an occasional process that demands reverse lookups, but they are few in number. (One notable exception is the NSLOOKUP utility described later in the chapter. NSLOOKUP queries DNS to determine the domain names of the DNS servers that correspond to the IP addresses specified in the client's DNS servers configuration parameters.)

Figure 3.8 Structure of the in-addr.arpa reverse lookup hierarchy.


Note

The domain structure in Figure 3.8 implies that reverse lookups are supported only for class-based IP addresses that divide netids from hostids on eight-bit boundaries. A classless reverse lookup scheme is documented for Windows NT 4.0 DNS.

If your ISP has assigned your organization a classless IP address range, you will probably need to obtain the cooperation of the ISP to maintain your reverse lookup zones on their DNS servers. In some cases the ISP will insist on managing all the reverse lookup zones for the IP addresses they support, but some ISPs are willing to delegate responsibility to the organization using the address range.

The classless reverse lookup scheme for Windows NT 4 is documented in Microsoft Knowledge Base article Q174419, available at http://support.Microsoft.com/search/default.asp. I have been unable to find documentation for a similar scheme for Windows 2000, but I have been able to get the Windows NT 4 scheme working on Windows 2000. See the section "Configuring Reverse Lookup Zones to Support Classless IP Addresses" later in the chapter for more information.


InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020