Date: Tue, 19 Oct 1999 13:03:21 -0400 (EDT) From: Bill <ankzt@maine.60north.net> To: freebsd-questions@freebsd.org Subject: DNS Slave server not answering queries. Message-ID: <Pine.BSF.4.05.9910191224410.3819-100000@maine.60north.net>
next in thread | raw e-mail | index | archive | help
Hi there, Ill try not to confuse myself to much on the following
question. I have set up a slave dns server using bind 8. The machine the
slave is on consists of one ethernet card residing on two class c
networks via ifconfig alias.
host.fict.dom (198.201.102.11) Public net
tsoh.fict.dom (192.168.1.11)
Both networks are reachable, in and outbound. Zone transfers go smoothly
except when I HUP the named proccess bind complains about not being able
to delete interface 192.168.1.11.53 ( running named as non root ) i dont
see this as a problem since my primary masters are using the same configs
and they all work. NSLINT doesnt so much as blink at my configs.
Firing up nslookup I get:
*** Can't find server name for address 192.168.1.11: No responce from
server
Default Server: localhost.fict.dom
Address: 127.0.0.1
All queries return good using 127.0.0.1.
server 198.201.102.11 : all queries good.
I double checked the db files on my master, tsoh.fict.dom exists as NS PTR
& A records, as well, host.fict.dom exists as NS PTR & A throughout all
configs. named.conf configs read like...
options {
directory "/etc/namedb";
//forwarders { 208.216.228.253; 208.216.229.253; };
multiple-cnames yes;
pid-file "/etc/namedb/named.pid";
};
zone "fict.dom" {
type slave;
file "db.fict";
masters { 192.168.1.10; };
};
zone "0.0.127.IN-ADDR.ARPA" {
type master;
file "db.127.0.0";
};
zone "1.168.192.in-addr.arpa" {
type slave;
file "db.192.168.1";
masters { 192.168.1.10; };
};
zone "2.168.192.in-addr.arpa" {
type slave;
file "db.192.168.2";
masters { 192.168.1.10; };
};
zone "3.168.192.in-addr.arpa" {
type slave;
file "db.192.168.3";
masters { 192.168.1.10; };
};
zone "253.168.192.in-addr.arpa" {
type slave;
file "db.192.168.253";
masters { 192.168.1.10; };
};
zone "254.168.192.in-addr.arpa" {
type slave;
file "db.192.168.254";
masters { 192.168.1.10; };
};
zone "102.201.198.in-addr.arpa" {
type slave;
file "db.198.201.102";
masters { 192.168.1.10; };
};
zone "223.201.198.in-addr.arpa" {
type slave ;
file "db.198.201.223";
masters { 192.168.1.10; };
};
zone "." {
type hint;
file "named.root";
};
Im stumped. The O'Riely gods have forsaken me, help!
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.05.9910191224410.3819-100000>
