Home > Articles > Certification > Other IT

This chapter is from the book

Installing DNS on SLES 9

TEST OBJECTIVE COVERED:

  1. Configure a DNS server using BIND.

To implement a DNS service on your SLES 9 server, you can choose from several packages. However, the most widely implemented DNS package is Berkeley Internet Name Domain (BIND) package. For your CLE 9 certification, this is the package you need to know how to deploy.

Let's briefly discuss the BIND package itself.

About BIND

BIND was originally developed in the early 1980s at the University of California at Berkeley. Its initial development was funded by a grant from the United States Department of Defense.

Subsequent versions, up to version 4.9, were sponsored by DEC. Versions since have been maintained by the Internet Systems Consortium (ISC). The latest versions of BIND can be downloaded from http://www.isc.org. However, you don't need to do that because the BIND 9 package is included on your SUSE Linux Enterprise Server 9 CD 3; as shown in Figure 3.9:

03fig09.jpg

Figure 3.9 BIND package on SLES 9 CD 3.

Let's now review how to install the BIND package on your SLES 9 server.

Installing BIND

You install BIND on a SLES 9 server the same as you would any other software package. You can use either YaST or the rpm command-line utility. Let's look at how to do this with YaST. Complete the following:

  1. From your SLES 9 desktop, select YaST.
  2. When prompted, provide your root password.
  3. In the left frame, select Software.
  4. In the right frame, select Install and Remove Software. The screen in Figure 3.10 appears:
    03fig10.jpg

    Figure 3.10 YaST software management screen.

  5. In the Search field, enter bind ; then select Search.
  6. In the right frame, mark the bind and the bind-utils packages; as shown in Figure 3.11.
    03fig11.jpg

    Figure 3.11 Installing BIND packages.

  7. Select Accept.
  8. When prompted, insert the appropriate CDs.
  9. Wait while the packages are installed and SuSEconfig is run; as shown in Figure 3.12.
    03fig12.jpg

    Figure 3.12 Running SuSEconfig after installing BIND.

  10. Close YaST by selecting Close.

If you want to use the rpm utility to install the package from a shell prompt, do the following:

  1. Insert your SLES 9 CD 3 into your server's CD-ROM drive.
  2. Open a terminal session and enter rpm -i /media/cdrecorder/suse/i586/bind-9.2.3-76.9.i586.rpm .

If you followed the steps in the lab exercises in the previous chapter, your SLES 9 system should already have the BIND package installed.

To verify that it's there, open YaST and select Software, Install and Remove Software. In the search field, enter bind , and then select Search. You should see the bind and bind-utils packages marked with blue check marks, as shown in Figure 3.13:

03fig13.jpg

Figure 3.13 BIND is already installed.

If, for some reason, the BIND packages aren't installed on your SLES 9 system, follow the preceding steps to install them.

After the BIND packages are installed, the service is started and stopped using the named (pronounced "name dee") init script in /etc/init.d, as shown in Figure 3.14:

03fig14.jpg

Figure 3.14 The BIND startup script.

The actual binary that provides this service is the named executable located in /usr/sbin shown in Figure 3.15.

03fig15.jpg

Figure 3.15 BIND binary.

Like other daemons, you use the /etc/init.d/named script to start, stop, or restart named. This is done by simply calling the script and supplying the appropriate parameter. Some examples of commands you can use include the following:

  • /etc/init.d/named start— Starts the named daemon.
  • /etc/init.d/named stop— Stops the named daemon.
  • /etc/init.d/named restart— Restarts the named daemon.

If you don't want to use the full path, you can also enter rcnamed from the shell prompt along with the start, stop, or restart parameters to manage the named daemon.

After BIND is installed on your system, you're ready to configure and start the service on your server. However, before doing so, you need to have a solid understanding of the BIND configuration files.

BIND Configuration Files

In this chapter, we're going to use YaST to set up the named service on your SLES 9 server. However, as discussed in Chapter 2, "Introduction to SUSE LINUX Enterprise Server 9," I believe that it's critical that you thoroughly understand what's happening "under the hood" of YaST's graphical interface.

With that in mind, let's look at the files that are used to configure the named service running on your server.

CONFIGURING named USING named.conf

The first file you need to be familiar with is named.conf. This file resides in /etc, as shown in Figure 3.16:

03fig16.jpg

Figure 3.16 The named.conf file in /etc.

The named.conf file is the main configuration file for the named service. named.conf is composed of directives along with blocks of information associated with those directives.

The directives within the named.conf file include the following:

  • options— This directive defines general configuration options for the named service.
  • logging— This directive configures logging channels for the named service. These channels could include sending logging information to the syslog service or to a specific file.
  • zone— These directives define zones serviced by named.

The named.conf file has many configuration parameters. At this point, we're going to focus on two of them. We'll look at several of the others later on in the chapter.

The first parameter you need to be aware of is the directory parameter within the options directive, shown in Figure 3.17:

03fig17.gif

Figure 3.17 Setting the working directory for named.

This option specifies the directory where the zone database files used by the named service will reside. By default, these reside in /var/lib/named, as shown in Figure 3.18:

03fig18.jpg

Figure 3.18 Files for named in /var/lib/named.

Anytime a filename is specified in any directive that follows the directory parameter in the named.conf file, it is assumed to reside in the specified directory.

The second set of parameters you need to be familiar with are the zone directives. These are found farther down in the file after the options directive, as shown in Figure 3.19.

03fig19.gif

Figure 3.19 Zone directives in /etc/named.conf.

The zone directives in named.conf define the zones that will be serviced by named. Notice in Figure 3.19 that a zone directive is composed of several parts:

  • Zone Name— The zone name comes right after the zone directive. The zone name is enclosed in quotes. In Figure 3.19, three zones have been defined: ., localhost, and 0.0.127-in-addr.arpa:
  • Name Space— The name space declaration comes after the zone name. In Figure 3.19, each of the three zones has been configured to use the Internet name space, denoted by in.
  • Type— The type declaration identifies whether the server will be a master DNS server or a slave DNS server.
  • File— The file declaration identifies the file where the zone data is stored. The file name is enclosed in quotes. The file is assumed to be in the directory specified in the options directive.

In Figure 3.19, you can see that three zones are defined by default in named.conf. The first zone is called . and is configured as a hint file. The records in this zone point to the root-level name servers on the Internet. This zone is used by named when it receives a request to resolve a hostname residing in a zone for which it isn't authoritative. The IP address for these root-level name servers is contained in the root.hint file, shown in Figure 3.20:

03fig20.gif

Figure 3.20 Root-level DNS server IP addresses in root.hint.

The root.hint file is automatically copied to /var/lib/named when the BIND package is installed.

The next default zone defined in named.conf is localhost. This zone contains only a single record that simply maps localhost to the IP address 127.0.0.1.

The last default zone is called 0.0.127.in-addr.arpa. That name may sound a little confusing, but it actually isn't. This zone is a reverse zone. It maps the IP address 127.0.0.1 to the localhost hostname. We'll look at reverse-lookup zones a little later.

As you may have noticed, these three default zones don't define any real DNS zones. Can the named service installed on the server do any meaningful work in this configuration? Your first impression might be that it can't. What can it resolve if it has records only for the localhost hostname? However, it can actually function very nicely. In this default configuration, the named service operates as a caching-only name server.

Recall, as discussed earlier in this chapter, that a DNS server will query root-level name servers when it's asked to resolve a hostname that it isn't authoritative for. The DNS server will use the information supplied by the root-level DNS server to locate an authoritative DNS server for the requested hostname.

When the hostname is finally resolved, the DNS server stores that information in its cache. The next time it receives a request to resolve the same hostname, it simply pulls the information out of its cache.

This type of configuration is appropriate for situations where you don't have your own domain and you want to provide users with the capability to browse the web.

However, it's more likely that you will need to provide resolution services for a domain using the name daemon. To do this, you will need to create your own zone files and configure named to use them.

Let's talk about how to do that next.

CREATING ZONE FILES

Suppose you are the system administrator for an organization named CLE9 (what a coincidence!). You've secured the cle9.com domain name for your organization. Previously, you configured your SLES 9 server to be a caching-only name server. However, now you need to configure named to provide authoritative resolution services for the cle9.com zone. What do you need to do?

First, you need to edit your /etc/named.conf file and add a new zone directive. This is shown in Figure 3.21:

03fig21.gif

Figure 3.21 Adding a New Zone to named.conf.

In this example, we've added the cle9.com zone. The DNS server will be a master, authoritative server for the zone. The next thing we need to do is to create a file for the zone. Notice that we've specified the file to be master/cle9.com. Because we've specified that our directory is /var/lib/named, the zone file will, therefore, be /var/lib/named/master/cle9.com.

After saving the file, the next thing we need to do is open the zone file and add the appropriate information. This is where things get a little more complicated. I'm going to show you a basic zone file I've created for the cle9.com zone. This is shown in Figure 3.22:

03fig22.gif

Figure 3.22 The cle9.com zone.

In this zone, there are three hosts: fs1, fs2, and gateway. Let's explore each element of the zone file in a little more depth:

  • $TTL— This stands for Time To Live. This value specifies the default time to live for each record. If a record has an explicit time to live value, it takes precedence over the TTL value specified here. If no unit is specified, the value is assumed to reference seconds. Figure 3.22 shows 2 seconds, which is probably too small a value. You can also specify units in days by placing a D after the value; for example, 2D.
  • IN— Specifies that the file uses the Internet namespace.
  • SOA— SOA stands for Start Of Authority. The SOA is actually a record, just like the records you see in Figure 3.22 for fs1 and fs2. However, the SOA record has a special purpose. It must be placed immediately after the $TTL parameter. The role of the SOA record is to identify the following:
    • Which DNS server is the authoritative server for the zone? In Figure 3.22, fs1.cle9.com. is identified as the authoritative DNS server for the cle9.com zone.
    • The email address of the system administrator who maintains the zone. In this example, this is root@fs1.cle9.com.
    • The zone's serial number. This number is used by slave DNS servers for this zone to determine whether they should update their databases. You can use any initial value you want in this field. However, the general practice is to use the date the zone file was created concatenated with a zero. In Figure 3.22, the zone file was created on April 8, 2005. If you use YaST to update your zone, this number will be auto- matically incremented (that's why we start with a zero at the end). If you update the zone file with a text editor, you should manually increment the last digit of the serial number. This tells slave DNS servers that the zone file has changed and that they need to update their database from the master server.
    • The periodic interval, specified by the refresh parameter at which slave DNS server should update their databases from the master server. Notice in Figure 3.22, the refresh interval is set to 3 hours.
    • How many attempts slave servers should make before giving up when updating their database from the master server. This is specified by the retry parameter.
    • How long before zone data on slave servers expire. This is specified by the expiry parameter. If zone data expires, slave servers will not be allowed to respond to name resolution requests until it downloads updated zone data from the master server.
    • How long failed name resolution requests should be stored in the cache of slave servers. This is specified by the minimum parameter.
  • Hostname records— After the SOA record come a series of records for network hosts. The general syntax is:
    host_name         name_space      record_type     IP address or host_name.
    
    Let's review each of these parameters:
    • Hostname— This the hostname assigned to the particular system.
    • Name space— This specifies the name space used for the record. More than likely, you will always used the Internet (IN) namespace.
    • Record type— This parameter specifies what type of DNS record this is.
    • IP address or hostname— This parameter specifies the IP address or hostname you are mapping a the hostname to. Remember, if you use a hostname, you have two options. First, you can just specify the hostname being mapped to. If you do this, it will be assumed to be in the zone specified in the SOA. Second, you can use a FQDN. If you do, you must use a trailing period.

When creating DNS records, you can create several types. These include the following:

  • NS— An NS record is used to specify the hostname of the DNS server that hosts the specified zone. Instead of mapping to an IP address, an NS record maps to the hostname of the DNS server. The DNS server referenced by the NS record must, itself, be represented by an A record in the zone.
  • A— An A record maps a hostname to an IP address. The host is usually just the hostname, as shown in Figure 3.22. In this case, the host is assumed to be in the zone specified in the SOA record. However, you can also specify a FQDN (with a trailing period).
  • CNAME— A CNAME record is an alias. Instead of mapping to an IP address, it maps a hostname to another hostname in the zone. For example, in Figure 3.22, you could create a CNAME record that maps the hostname of MyServer to fs1. If you do this, you must create an A record for the hostname being mapped to. In preceding example, you would have to have an A record for fs1.
  • MX— An MX record represents a mail server. Like a CNAME record, an MX record maps a hostname to another hostname instead of an IP address. For example, suppose fs2 in Figure 3.22 is running a mail service. You could create an MX record in your zone for the hostname mail that points to fs2. Like a CNAME record, you must have an A record in the DNS zone that maps the second hostname to an IP address.

At this point, we need to discuss an interesting fact about the way named handles records in a zone file. The question frequently arises as to how to handle hosts with multiple IP addresses. This situation arises for two reasons.

First, to provide a degree of fault tolerance and to balance the network load between the NICs, many network administrators will install multiple NICs in their servers. In this situation, a server may have two or more IP addresses.

Second, many network administrators will provide a given service on multiple hosts. For example, to accommodate network load, an organization may divide its HTTP service among several servers in a server farm. For example, if you use dig or nslookup to resolve www.yahoo.com, you will see that there are multiple A records for this single hostname, as shown in Figure 3.23:

03fig23.gif

Figure 3.23 Multiple address for www.yahoo.com.

If you are in either situation, you need to configure your zone file so that named will resolve multiple IP addresses to a single hostname. Additionally, you probably want to make sure that named doesn't give out the same address for the multiaddress hostname over and over. One of your major goals behind implementing a multi-NIC server or a multiserver service is to balance the load. This goal would be undermined if your DNS server resolves only one of the addresses assigned to the hostname.

So what do you do? The good news is that named is designed with this scenario in mind. If you have a hostname that has multiple IP addresses, all you have to do is create multiple A records for the same hostname in your zone; each resolving to a different IP address. The named daemon will then automatically rotate which address is resolved to the hostname, thereby distributing the network load on your server or service for you. Pretty powerful stuff!

At this point, we need to switch gears. Everything we've been talking about in this topic has been based on forward-lookup zones. Before continuing, we need to also review how to create reverse zones.

CONFIGURING REVERSE-LOOKUP ZONES

As discussed earlier in this chapter, a reverse-lookup zone operates in the opposite manner of a standard forward-lookup zone. Instead of resolving hostnames into IP addresses, a reverse zone resolves IP addresses into hostnames.

Before your named daemon can perform this type of lookup, you need to configure a companion reverse zone for your forward zone. An example of a reverse zone for the cle9.com zone is shown in Figure 3.24:

03fig24.gif

Figure 3.24 The reverse-lookup zone for cle9.com.

You'll notice that the $TTL parameter and the SOA record are pretty much the same as the forward-lookup zone. However, similarities end there.

Locate the NS record in Figure 3.24. Notice the odd zone name used. Instead of cle9.com, the zone's name is 1.168.192.in-addr.arpa.. Reverse zone names are constructed in the following way:

reversed_network_address.in-addr.arpa.

For example, in Figure 3.24, the network address for the hosts in the zone is 192.168.1.0. Therefore, the zone name is 1.168.192.in-addr.arpa..

Accordingly, the hosts in the zone are referenced in the following way:


   host_portion_address.reversed_network_address.in-addr.arpa.

For example, the reverse hostname for fs1.cle9.com is 47.1.168.192.in-addr.arpa..

With the reverse zone running, you can send reverse resolution requests, as shown in Figure 3.25:

03fig25.gif

Figure 3.25 Performing a reverse-lookup.

In this example, the DNS server has resolved the IP address of 192.168.1.47 to fs1.cle9.com.

Now that you know about forward and reverse zone as well as the files that compose them, you are ready to configure BIND on your server. Let's do that next.

Configuring BIND on SLES 9

To configure BIND on SLES 9, you basically have two options: You can manually create and edit the necessary files or you can use YaST. For your CLE 9 certification, you need to know how to do this with YaST. Let's dig right in and do it. To configure BIND on SLES 9, complete the following:

  1. From the desktop of your SLES 9 server, start YaST.
  2. Select Network Services, DNS Server, as shown in Figure 3.26:
    03fig26.jpg

    Figure 3.26 Configuring DNS in YaST.

  3. Configure the named files directory by completing the following:
    1. In the left frame, select Basic Options. The screen in Figure 3.27 is displayed:
      03fig27.jpg

      Figure 3.27 Configuring named Basic Options.

    2. In the Option drop-down list, select Directory.
    3. In the Value field, enter the directory where the named files reside, enclosed in quotes.
    4. Select Change.
  4. To configure named logging, complete the following:
    1. In the left frame, select Logging. The screen in Figure 3.28 is displayed.
      03fig28.jpg

      Figure 3.28 Configuring named Logging options.

    2. If you want named to use the system log, mark Log to System Log. (This is the default behavior.)
    3. If you want named to write log information to a separate log file, mark Log to File; then enter a filename, maximum log size (in MB), and a maximum number of log versions to be saved.
    4. If you want to log the requests for name resolution that the named daemon receives from clients, mark Log Named Queries under Additional Logging.
    5. If you want to log modifications made to the zone, mark Log Zone Updates.
    6. If you want to log zone transfers, mark Log Zone Transfers.
  5. Configure your zones by completing the following:
    1. In the left frame, select DNS Zones. The screen shown in Figure 3.29 is displayed.
      03fig29.jpg

      Figure 3.29 Configuring DNS Zones in YaST.

    2. To create a new zone, enter the name of the zone in the Zone Name field.
    3. Select Add.
    4. Under Configured DNS Zones, select the zone you just created, and then select Edit Zone.
    5. Select the NS Records tab. The screen in Figure 3.30 appears.
      03fig30.jpg

      Figure 3.30 Configuring NS Records in YaST.

    6. In the Name Server to Add field, enter the FQDN of the server that is running named.
    7. Select Add.
    8. Select the SOA tab. The screen shown in Figure 3.31 is displayed:
      03fig31.jpg

      Figure 3.31 Configuring the SOA Record in YaST.

    9. Configure your SOA directives as desired.
    10. Select the Records tab. The screen in Figure 3.32 is displayed.
      03fig32.jpg

      Figure 3.32 Configuring Zone Records in YaST.

    11. In the Record field, enter the hostname or the FQDN for a host you want to add to the zone.
    12. In the Type drop-down list, select the type of record you are adding.
    13. In the value field, enter the IP address (for A records) or FQDN (for CNAME records) assigned to the host.
    14. Select Add.
    15. Repeat these steps for all the hosts you want to add to the zone.
    16. When you're done, select OK.
  6. Configure startup options for the named daemon by completing the following:
    1. In the left frame, select Start-Up to display the screen shown in Figure 3.33:
      03fig33.jpg

      Figure 3.33 Configuring named Startup Options in YaST.

    2. To start named, select Start DNS Server Now.
    3. If you want named to automatically start on boot, mark On under Booting.
  7. Apply the changes by selecting Finish.

That's all there is to it. You're probably ready to get your own DNS server up and running; let's do that in Lab Exercise 3.1.

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