[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

12/13/2004 at 11:35AM PST, ID: 21240803
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

5.8

status SERVFAIL on dig with domain-to-search

Asked by klukac in Linux Networking

Tags: servfail, dig

I have a RH9 primary dns machine running apache and have installed SuSE on another machine which I am trying to configure as alternate dns (eventually I'll get around to installing a mail server).  I have followed the guidelines on primary/secondary dns config at http://www.yolinux.com/TUTORIALS/LinuxTutorialWebSiteConfig.html, but I have now lost the ability to resolve any URLs on the Internet from both Linux machines.  Of course, dig www.gmk-rep.com doesn't work, I get a SERVFAIL response, and the named.gmk-rep.com file does not copy from RH9 to the alternate dns server as advertised.  

I have no errors on named startup in /var/log/messages, and if I use dig, or dig www.gmk-rep.com@127.0.0.1, I get no errors on RH9.  Copying named.conf etc to this window would take some work since I am writing you from a Windows PC, but I'm fairly confident I followed the website instructions correctly, and these were:  

Primary server (master):
File: /etc/named.conf

options {
        version "Bind";                       - Don't disclose real version to hackers
        directory "/var/named";
        allow-transfer { XXX.XXX.XXX.XXX; };  - IP address of secondary DNS
        recursion no;
        fetch-glue no;                  - Bind 8 only! Not used by version 9
};
zone "your-domain.com"{
        type master;
        file "named.your-domain.com";
        notify yes;
};
zone "0.0.127.in-addr.arpa"{
        type master;
        file "named.local";
        allow-update { none; };
};


Note the omission of zone "."

File: /var/named/named.your-domain.com

$TTL 604800              - Bind 9 (and some of the later versions of Bind 8) requires $TTL statement. Measured in seconds. This value is 7 days.
your-domain.com.    IN      SOA  ns1.your-domain.com.  hostmaster.your-domain.com. (
                        2000021600 ; serial        - Many people use year+month+day+integer as a system. Never greater than 2147483647 for a 32 bit processor.
                        86400 ; refresh            - How often secondary servers should check in for changes in serial number. Measured in seconds. This value is equivalent to 24 hours.
                        7200 ; retry               - How long secondary server should wait for a retry if contact failed.
                        1209600 ; expire           - Secondary server to purge info after this length of time.
                        604800 ) ; default_ttl     - How long data is held in cache by remote servers.
                IN A            XXX.XXX.XXX.XXX    - Note that this is the default IP address of the domain. I put the web server IP address here so that domain.com points to the same servers as www.domain.com
;
; Name servers for the domain
;
                IN NS           ns1.your-domain.com.
                IN NS           ns2.your-domain.com.
;
; Mail server for domain
;
                IN MX    5      mail                             - Identify "mail" as the node handling mail for the domain. Do NOT specify an IP address!
;
; Nodes in domain
;
node1           IN A          XXX.XXX.XXX.XXX    - Note that this is the IP address of node1
ns1             IN A            XXX.XXX.XXX.XXX    - Optional: For those hosting your own primary name server. Note that this is the IP address of ns1
ns2             IN A            XXX.XXX.XXX.XXX    - Optional: For those hosting your own secondary name server. Note that this is the IP address of ns2
mail            IN A            XXX.XXX.XXX.XXX    - Identify the IP address for node mail.
                IN MX    5      XXX.XXX.XXX.XXX    - Identify the IP address for mail server named "mail".
;
; Aliases to existing nodes in domain
;
www             IN CNAME        node1                            - Define the webserver "www" to be node1.

Secondary server (slave):
File: /etc/named.conf

options {
        version "Bind";                 - Don't disclose real version to hackers
        directory "/var/named";
        allow-transfer { none; };
        recursion no;
        fetch-glue no;                  - Bind 8 only! Not used by version 9
};
zone "your-domain.com"{
        type slave;
        file "named.your-domain.com";
        masters { XXX.XXX.XXX.XXX; };   - IP address of primary DNS
};
zone "0.0.127.in-addr.arpa"{
        type master;
        file "named.local";
};

[+][-]12/13/04 01:18 PM, ID: 12813417

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/13/04 07:12 PM, ID: 12815876

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/13/04 07:35 PM, ID: 12815977

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/14/04 02:07 PM, ID: 12824714

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/14/04 03:39 PM, ID: 12825523

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/14/04 04:35 PM, ID: 12825832

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/14/04 06:30 PM, ID: 12826269

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/15/04 08:29 AM, ID: 12831569

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/15/04 09:31 AM, ID: 12832392

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/15/04 04:03 PM, ID: 12836020

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/15/04 05:31 PM, ID: 12836436

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/15/04 07:02 PM, ID: 12836933

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/15/04 07:29 PM, ID: 12837207

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/16/04 01:56 PM, ID: 12845567

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/16/04 02:11 PM, ID: 12845677

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/16/04 05:27 PM, ID: 12846991

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/16/04 06:43 PM, ID: 12847263

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/16/04 07:53 PM, ID: 12847513

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/16/04 08:08 PM, ID: 12847575

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/16/04 08:30 PM, ID: 12847662

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/17/04 11:48 AM, ID: 12853326

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/17/04 12:16 PM, ID: 12853535

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/17/04 12:25 PM, ID: 12853615

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/17/04 05:28 PM, ID: 12855399

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/17/04 05:40 PM, ID: 12855431

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/17/04 08:31 PM, ID: 12855879

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/17/04 09:12 PM, ID: 12855991

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/18/04 09:34 AM, ID: 12858356

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/18/04 10:46 AM, ID: 12858606

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Linux Networking
Tags: servfail, dig
Sign Up Now!
Solution Provided By: jlevie
Participating Experts: 1
Solution Grade: A
 
 
[+][-]12/18/04 06:10 PM, ID: 12859972

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/18/04 07:18 PM, ID: 12860087

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/19/04 06:49 PM, ID: 12863969

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/19/04 07:55 PM, ID: 12864163

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]12/20/04 07:39 AM, ID: 12867223

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]12/20/04 01:24 PM, ID: 12870675

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 30-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]03/01/05 02:19 PM, ID: 13434332

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20091111-EE-VQP-91