RHEL7: Configure a caching-only name server.

Share this link

Note: This is an RHCE 7 exam objective.

Presentation of Caching-only Name Server

A cache-only name server keeps a cache of all the results of the previous requests to the root DNS servers.

Configuration Procedure

Install the bind package:

# yum install -y bind

Edit the /etc/named.conf file and change the listen-on option from 127.0.0.1 to any:

listen-on port 53 { any; };

In the same file, change the allow-query option from localhost to any:

allow-query { any; };

In the same file, disable the dnssec-validation option:

dnssec-validation no;

Check the configuration file:

# named-checkconf

Add a new service to the firewall:

# firewall-cmd --permanent --add-service=dns
success

Reload the firewall configuration:

# firewall-cmd --reload
success

Activate the DNS service:

# systemctl enable named

Start the DNS service:

# systemctl start named

Time to Test

Check the configuration:

# nslookup cnn.com 127.0.0.1
# dig @127.0.0.1 cnn.com

Additional Resources

You can also read this nice article from Zytrax.com about the different DNS Configuration Types.
If you want to go any further, check the master DNS server tutorial.

(No Ratings Yet)
Loading...
34 comments on “RHEL7: Configure a caching-only name server.
  1. Shikaz says:

    In one of the tutorials I have seen they are installing unbound instead of bind, do you thing from the RHCE perspective it will matter to install bind or unbound?

  2. Jaz says:

    What if I put my interface ip address in listen-on port directive and add my network ip in allow-query directive during the exam even if not asked in the question?
    Because ‘any’ means no restriction.

  3. dan says:

    why set dnssec-validation to no?

    • CertDepot says:

      You can perfectly set dnssec-validation to yes but in this case you need to add some additional configuration.
      As this configuration is not needed for the RHCE exam, as far as I know, I didn’t add the corresponding instructions.

      • Oxygen says:

        It seems that disabling dnssec-validation can be safely omitted (correct me if I am wrong):
        “yes: DNSSEC validation is enabled, but a trust anchor must be manually configured. No validation will actually take place until you have manually configured at least one trusted key. This is the default.”

        • CertDepot says:

          When I wrote the tutorial 4 years ago, I had to set dnssec-validation no; otherwise it didn’t work.
          Since, I haven’t tried with new versions of the bind package. Sorry.

  4. bazouie says:

    Hi Guys,
    I haven’t seen any DNS question on RHCE mock test. Do you think that might be included in the exam ?

    Thank you

  5. mairj23 says:

    Hi everyone, when I configure a cache only dns server it doesn’t resolve any domain, but it works correctly when I add forwarders any ideas? If I ping a domain from shell it works…
    Thanks in advance

  6. asifshabir says:

    This cache only DNS server is supposed to work when you don’t have internet connection i.e. it should resolve the domain even if net is down.

    I have followed this guide. Everything mentioned in this guide works perfectly. But, when I disable Internet, it does not resolve any domain.

    Please correct me if I am on a wrong line.

    • CertDepot says:

      A cache-only DNS server doesn’t provide any translation, domain -> IP address, on its own. When it can’t solve a domain, it asks a forwarder (Google DNS, etc) and stores in its cache the answer. When you ask the same domain again, it doesn’t ask the forwarder but reads its cache. It’s all.

    • Lisenet says:

      “This cache only DNS server is supposed to work when you don’t have internet connection i.e. it should resolve the domain even if net is down.”

      This is incorrect.

      When a DNS server resolves a query, it returns the answer to the client. The DNS server also stores the answer in its cache for the period of time that was allowed by the records’ TTL value. This way any subsequent requests are processed faster when the nameserver is asked to resolve the same names again. This is about storing the answers in cache – nothing do to with lost internet connection.

      • asifshabir says:

        thank you for your reply,

        Just to rephrase the question.
        we have resolved some domains with cache only DNS . Now internet is down…. those resolved domains should also get resolved while cache DNS is offline ( No internet )??

        I just wanted to know proper way of testing this server.

        • Lisenet says:

          Yes, the domain names that were resolved while the server had internet connection will still be served from cache even though internet is down as long as TTL is valid.

          • Sam says:

            I don’t think there is a simple way of testing this. If you can’t wait, set up a local DNS, and propagate it with local domain names. Unless you can wait for your internet to become live again.

          • Lisenet says:

            There is. You log into your caching-only DNS server, the resolve some domain name of your choice, then disable networking simulating “the loss of internet”, and try to resolve the same domain name again. It will be served from local DNS cache as long as TTL is valid.

  7. Mike_ says:

    This might be obvious to some or all, but it was not to me.

    Following the examples above, I realized that my caching doesn’t work if I have a valid DNS host in my /etc/resolv.conf. I verified this dumping my cache after performing an nslookup and it was not present in the dump.

    e.g.
    On my system I configured dns caching:
    nslookup http://www.certdepot.net
    rndc dumpdb -cache
    grep certdepot /var/named/data/cache_dump.db (returns nothing)

    If I comment out the server from /etc/resolv.conf and perform same exercise, the certdepot is now in my cache.

    Just FYI: Just because you get a return from nslookup does not mean cache is woring, your resolve.conf could circumvent it. Or, I could be very wrong. 🙂

    • CertDepot says:

      Interesting. Thanks.

    • Lisenet says:

      Can you clarify on “caching doesn’t work if I have a valid DNS host in my /etc/resolv.conf”.

      What do you mean by saying “a valid DNS host”? What is a valid DNS host in this case? Or what would be an invalid DNS host?

      • Mike_ says:

        Lisenet,

        Sorry, I will clarify.

        When I logged onto my system to create a DNS caching server, I already had DNS resolution configured via /etc/resolv.conf. It either points to my home router, 192.168.1.1, or the KVM NAT gateway 192.168.122.1.

        I then install bind and configured it to be a DNS caching server, and provide DNS forwarders to be either another DNS server. e.g. The home router, the kvm gateway, or 8.8.8.8, etc.

        If after installing the bind to be a caching server, I attempt to test it via nslookup or dig, I am still using /etc/resolv.conf at that point. I must either force nslookup or dig to use my server as the resolver, or I have to change /etc/resolv.conf to point to the localhost.

        Does that make sense? Initially I did not and performed some nslookups, but noticed nothing was in my cache. Then I figured /etc/resolv.conf was still doing the work via home router. Once I modified it I was able to see results in cache via rdnc dump.

        Mike_

        • Lisenet says:

          Caching does work if you use your caching DNS server to do name resolution, it obviously does not work if you use some other DNS server be it your home router, KVM gateway or anything else.

          • Mike_ says:

            Exactly! In the directions above, updating ./etc/resolv.conf is omitted. Conversely, on your site, you use unbound, but you update the resolver to pont to localhost.

          • Lisenet says:

            There are instructions for both Unbound as well as Bind (scroll down the page), and I use nmcli to set “ipv4.dns 127.0.0.1” (don’t mess around with editing resolv.conf manually).

  8. ursabear333 says:

    So, to be safe in the exam change the localhost to any? and we are good?

    • Lisenet says:

      It really depends on how a question is worded, but as long as firewall does not allow (or does allow) DNS traffic, this setting does not make much of a difference. My point is that even if you change it to “any” but don’t allow traffic via firewall, not external clients will be able to use DNS services.

    • Sam says:

      I would recommend only changing the dns if you are requested to. Follow the exam instructions. This goes for all question. While you may/(may not) be able to change this, your goal is to pass the exam.

  9. muhammad.shakeeb says:

    Problem: Ping fails on internal host but nslookup and dig works.

    [root@node11 network-scripts]# cat ifcfg-ens33-1
    TYPE=Ethernet
    BOOTPROTO=none
    DEFROUTE=yes
    IPV4_FAILURE_FATAL=no
    IPV6INIT=no
    NAME=ens33
    UUID=6b34e1a6-1c93-435a-86fb-3f4280d2f521
    DEVICE=ens33
    ONBOOT=yes
    DNS1=192.168.92.150
    DOMAIN=com.pk
    PEERDNS=no
    HWADDR=00:0C:29:5C:3A:88
    IPADDR=192.168.92.160
    PREFIX=24
    GATEWAY=192.168.92.1
    _____________________________________________________________

    [root@node11 network-scripts]# getent hosts testserver.com.pk
    192.169.92.150 testserver.com.pk

    [root@node11 network-scripts]# nslookup testserver.com.pk
    Server: 192.168.92.150
    Address: 192.168.92.150#53

    Name: testserver.com.pk
    Address: 192.169.92.150

    [root@node11 network-scripts]# dig testserver.com.pk

    ; <> DiG 9.9.4-RedHat-9.9.4-37.el7 <> testserver.com.pk
    ;; global options: +cmd
    ;; Got answer:
    ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 55349
    ;; flags: qr aa rd; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 2
    ;; WARNING: recursion requested but not available

    ;; OPT PSEUDOSECTION:
    ; EDNS: version: 0, flags:; udp: 4096
    ;; QUESTION SECTION:
    ;testserver.com.pk. IN A

    ;; ANSWER SECTION:
    testserver.com.pk. 86400 IN A 192.169.92.150

    ;; AUTHORITY SECTION:
    com.pk. 86400 IN NS sanserver.com.pk.

    ;; ADDITIONAL SECTION:
    sanserver.com.pk. 86400 IN A 192.168.92.150

    ;; Query time: 1 msec
    ;; SERVER: 192.168.92.150#53(192.168.92.150)
    ;; WHEN: Sat Jul 28 23:21:25 PKT 2018
    ;; MSG SIZE rcvd: 102

    ____________________________________________________________________

    [root@node11 network-scripts]# ping testserver.com.pk
    PING testserver.com.pk (192.169.92.150) 56(84) bytes of data.

  10. Pat says:

    How do I know that the caching dns works? What should I expect typing nslookup cnn.com 127.0.0.1 dig @127.0.0.1 cnn.com?

    • Lisenet says:

      If DNS caching works, you should see the query time drop to zero on the second run because no lookup has to be made.

      The first run queries the DNS:

      # dig A google.com +noall +stats @127.0.0.1
      [...]
      ;; Query time: 67 msec

      The second run returns the result from the cache:

      # dig A google.com +noall +stats @127.0.0.1
      [...]
      ;; Query time: 0 msec

Leave a Reply

Upcoming Events (Local Time)

There are no events.

Follow me on Twitter

Archives

vceplus-200-125    | boson-200-125    | training-cissp    | actualtests-cissp    | techexams-cissp    | gratisexams-300-075    | pearsonitcertification-210-260    | examsboost-210-260    | examsforall-210-260    | dumps4free-210-260    | reddit-210-260    | cisexams-352-001    | itexamfox-352-001    | passguaranteed-352-001    | passeasily-352-001    | freeccnastudyguide-200-120    | gocertify-200-120    | passcerty-200-120    | certifyguide-70-980    | dumpscollection-70-980    | examcollection-70-534    | cbtnuggets-210-065    | examfiles-400-051    | passitdump-400-051    | pearsonitcertification-70-462    | anderseide-70-347    | thomas-70-533    | research-1V0-605    | topix-102-400    | certdepot-EX200    | pearsonit-640-916    | itproguru-70-533    | reddit-100-105    | channel9-70-346    | anderseide-70-346    | theiia-IIA-CIA-PART3    | certificationHP-hp0-s41    | pearsonitcertification-640-916    | anderMicrosoft-70-534    | cathMicrosoft-70-462    | examcollection-cca-500    | techexams-gcih    | mslearn-70-346    | measureup-70-486    | pass4sure-hp0-s41    | iiba-640-916    | itsecurity-sscp    | cbtnuggets-300-320    | blogged-70-486    | pass4sure-IIA-CIA-PART1    | cbtnuggets-100-101    | developerhandbook-70-486    | lpicisco-101    | mylearn-1V0-605    | tomsitpro-cism    | gnosis-101    | channel9Mic-70-534    | ipass-IIA-CIA-PART1    | forcerts-70-417    | tests-sy0-401    | ipasstheciaexam-IIA-CIA-PART3    | mostcisco-300-135    | buildazure-70-533    | cloudera-cca-500    | pdf4cert-2v0-621    | f5cisco-101    | gocertify-1z0-062    | quora-640-916    | micrcosoft-70-480    | brain2pass-70-417    | examcompass-sy0-401    | global-EX200    | iassc-ICGB    | vceplus-300-115    | quizlet-810-403    | cbtnuggets-70-697    | educationOracle-1Z0-434    | channel9-70-534    | officialcerts-400-051    | examsboost-IIA-CIA-PART1    | networktut-300-135    | teststarter-300-206    | pluralsight-70-486    | coding-70-486    | freeccna-100-101    | digitaltut-300-101    | iiba-CBAP    | virtuallymikebrown-640-916    | isaca-cism    | whizlabs-pmp    | techexams-70-980    | ciscopress-300-115    | techtarget-cism    | pearsonitcertification-300-070    | testking-2v0-621    | isacaNew-cism    | simplilearn-pmi-rmp    | simplilearn-pmp    | educationOracle-1z0-809    | education-1z0-809    | teachertube-1Z0-434    | villanovau-CBAP    | quora-300-206    | certifyguide-300-208    | cbtnuggets-100-105    | flydumps-70-417    | gratisexams-1V0-605    | ituonline-1z0-062    | techexams-cas-002    | simplilearn-70-534    | pluralsight-70-697    | theiia-IIA-CIA-PART1    | itexamtips-400-051    | pearsonitcertification-EX200    | pluralsight-70-480    | learn-hp0-s42    | giac-gpen    | mindhub-102-400    | coursesmsu-CBAP    | examsforall-2v0-621    | developerhandbook-70-487    | root-EX200    | coderanch-1z0-809    | getfreedumps-1z0-062    | comptia-cas-002    | quora-1z0-809    | boson-300-135    | killtest-2v0-621    | learncia-IIA-CIA-PART3    | computer-gcih    | universitycloudera-cca-500    | itexamrun-70-410    | certificationHPv2-hp0-s41    | certskills-100-105    | skipitnow-70-417    | gocertify-sy0-401    | prep4sure-70-417    | simplilearn-cisa    |
http://www.pmsas.pr.gov.br/wp-content/    | http://www.pmsas.pr.gov.br/wp-content/    |