From owner-freebsd-questions Tue Oct 19 10: 3:34 1999 Delivered-To: freebsd-questions@freebsd.org Received: from maine.60north.net (maine.60north.net [198.143.201.10]) by hub.freebsd.org (Postfix) with ESMTP id 200E1176F5 for ; Tue, 19 Oct 1999 10:03:25 -0700 (PDT) (envelope-from ankzt@maine.60north.net) Received: from localhost (ankzt@localhost) by maine.60north.net (8.9.3/8.9.2) with ESMTP id NAA03896 for ; Tue, 19 Oct 1999 13:03:21 -0400 (EDT) (envelope-from ankzt@maine.60north.net) Date: Tue, 19 Oct 1999 13:03:21 -0400 (EDT) From: Bill To: freebsd-questions@freebsd.org Subject: DNS Slave server not answering queries. Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG 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