forward working from master but not slave

David_Cress at dlc.dqe.com David_Cress at dlc.dqe.com
Thu Aug 26 20:23:48 UTC 1999


OK. I'm stumped.  I have an Ultra 10, Solaris 7 and BIND 8.2.1 as my master
DNS, the slave is an E10000 domain running Solaris 2.6 latest patch cluster
and BIND 8.2.1.

the domain I'm serving is bvpsint.dqe.com.

On the master, if I use the Solaris 7 nslookup for dlcproxy.dqe.com it
works fine.

     bvuxgs01# nslookup dlcproxy

However if I use /usr/local/bin/nslookup, wich is the nslookup compiled and
installed from BIND 8.2.1 I get the dreaded

     Non-existant host/domain

On the slave, it does not matter what nslookup I use I get the
"Non-existant host/domain"  error.  However... from a local PC running
WinNT 4.SP5 I have the slave as the only DNS server the PC knows about.
WINS is disabled.  If i bring up a DOS prompt and do a nslookup for
'dlcproxy' it works fine, it shows that it got the info from the slave.

I have no clue what I've missed.  Bellow I included the named.conf from
master and slave.

named.conf from master
-------------------------------------------------------------------------------------------

logging {
     category lame-servers { null; };
     category cname { null; };
};

controls {
     unix "/usr/local/etc/ndc" perm 0600 owner 0 group 10;
};

options {
     directory "/var/named";
};

zone "bvpsint.dqe.com" in {
     type master;
     file "master/bvpsint.db";
};

zone "199.10.in-addr.arpa" in {
     type master;
     file "master/199.10.rev";
};

zone "77.167.in-addr.arpa" in {
     type master;
     file "master/77.167.rev";
};

zone "100.100.129.in-addr.arpa" in {
     type master;
     file "master/100.100.129.rev";
};

zone "200.100.192.in-addr.arpa" in {
     type master;
     file "master/200.100.192.rev";
};

zone "dqe.com" in {
     type forward;
     forward first;
     forwarders { 167.77.130.169; 167.77.130.167; };
};

zone "." in {
     type hint;
     file "named.cache";
};

zone "0.0.127.in-addr.arpa" in {
     type master;
     notify no;
     file "master/0.0.127";
};


named.conf from slave
-------------------------------------------------------------------------------------------------

logging {
     category lame-servers { null; };
     category cname { null; };
};

controls {
     unix "/usr/local/etc/ndc" perm 0600 owner 0 group 10;
};

options {
     directory "/var/named";
};

zone "bvpsint.dqe.com" in {
     type slave;
     file "slave/bvpsint.db";
     masters { 10.199.0.52; };
};

zone "199.10.in-addr.arpa" in {
     type slave;
     file "slave/199.10.rev";
     masters { 10.199.0.52; };
};

zone "77.167.in-addr.arpa" in {
     type slave;
     file "slave/77.167.rev";
     masters { 10.199.0.52; };
};

zone "100.100.129.in-addr.arpa" in {
     type slave;
     file "slave/100.100.129.rev";
     masters { 10.199.0.52; };
};

zone "200.100.192.in-addr.arpa" in {
     type slave;
     file "slave/200.100.192.rev";
     masters { 10.199.0.52; };
};

zone "dqe.com" in {
     type forward;
     forward first;
     forwarders { 167.77.130.169; 167.77.130.167; };
};

zone "." in {
     type hint;
     file "named.cache";
};

zone "0.0.127.in-addr.arpa" in {
     type master;
     notify no;
     file "master/0.0.127";
};



More information about the bind-users mailing list