<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
<META NAME="Generator" CONTENT="MS Exchange Server version 6.5.7652.24">
<TITLE>Re: [tclug-list] DNS connection refused</TITLE>
</HEAD>
<BODY>
<!-- Converted from text/plain format -->

<P><FONT SIZE=2>This is from my blackberry so I might not have seen it all, but maybe the listen-on port 53 (127.00.1) is the problem. Shouldn't that ip be the external interface?<BR>
<BR>
<BR>
-----<BR>
Sent from my wireless device<BR>
<BR>
-----Original Message-----<BR>
From: tclug-list-bounces@mn-linux.org &lt;tclug-list-bounces@mn-linux.org&gt;<BR>
To: tclug-list@mn-linux.org &lt;tclug-list@mn-linux.org&gt;<BR>
Sent: Wed Jul 02 21:40:11 2008<BR>
Subject: [tclug-list] DNS connection refused<BR>
<BR>
Howdy,<BR>
<BR>
I have Fedora 9 installed and would like to use it as the DNS system in the house.<BR>
<BR>
The setup is as follows<BR>
<BR>
options {<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; listen-on port 53 { 127.0.0.1; };<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; listen-on-v6 port 53 { ::1; };<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; directory&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;/var/named&quot;;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; dump-file&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &quot;/var/named/data/cache_dump.db&quot;;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; statistics-file &quot;/var/named/data/named_stats.txt&quot;;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; memstatistics-file &quot;/var/named/data/named_mem_stats.txt&quot;;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; allow-query&nbsp;&nbsp;&nbsp;&nbsp; { localhost; };<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; recursion yes;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; forwarders {<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 68.87.77.130;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 68.87.72.130;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; };<BR>
};<BR>
logging {<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; channel default_debug {<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; file &quot;data/named.run&quot;;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; severity dynamic;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; };<BR>
};<BR>
zone &quot;.&quot; IN {<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type hint;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; file &quot;named.ca&quot;;<BR>
};<BR>
<BR>
<BR>
include &quot;/etc/named.rfc1912.zones&quot;;<BR>
<BR>
zone &quot;home.local&quot; {<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type master;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; file &quot;/var/named/home.local.hosts&quot;;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; };<BR>
<BR>
zone &quot;1.168.192.in-addr.arpa&quot; {<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; type master;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; file &quot;1.168.192.in-addr.arpa.zone&quot;;<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; allow-update { key &quot;rndckey&quot;; };<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; notify yes;<BR>
<BR>
<BR>
I have the files in /var/named setup and configured. From the DNS system I can type<BR>
nslookup 43p and get the following<BR>
[root@fc9 named]# vi /etc/named.conf<BR>
[root@fc9 named]# nslookup 43p<BR>
Server:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 127.0.0.1<BR>
Address:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 127.0.0.1#53<BR>
Name:&nbsp;&nbsp; 43p.home.local<BR>
Address: 192.168.1.52<BR>
<BR>
From a windows system I get the following<BR>
C:\Users\dalan&gt;nslookup 43p<BR>
Server:&nbsp; UnKnown<BR>
Address:&nbsp; 192.168.1.50:53<BR>
*** UnKnown can't find 43p: Query refused<BR>
<BR>
From the AIX system I get<BR>
(43p-aix) [dalan] nslookup 43p<BR>
*** Can't find server name for address 192.168.1.50:Query refused<BR>
*** Default servers are not available<BR>
(43p-aix) [dalan]<BR>
<BR>
I have shut off the firewall and SE-Linux on the Fedora system. I'm not sure why the fedora system is blocking/refusing the request coming from another system.<BR>
I even put the following entries in iptables.<BR>
SERVER_IP=&quot;192.168.1.50&quot;<BR>
iptables -A INPUT -p udp -s 0/0 --sport 1024:65535 -d $SERVER_IP --dport 53 -m state --state NEW,ESTABLISHED -j ACCEPT<BR>
iptables -A OUTPUT -p udp -s $SERVER_IP --sport 53 -d 0/0 --dport 1024:65535 -m state --state ESTABLISHED -j ACCEPT<BR>
iptables -A INPUT -p udp -s 0/0 --sport 53 -d $SERVER_IP --dport 53 -m state --state NEW,ESTABLISHED -j ACCEPT<BR>
iptables -A OUTPUT -p udp -s $SERVER_IP --sport 53 -d 0/0 --dport 53 -m state --state ESTABLISHED -j ACCEPT<BR>
iptables -A INPUT -p tcp -s 0/0 --sport 1024:65535 -d $SERVER_IP --dport 53 -m state --state NEW,ESTABLISHED -j ACCEPT<BR>
iptables -A OUTPUT -p tcp -s $SERVER_IP --sport 53 -d 0/0 --dport 1024:65535 -m state --state ESTABLISHED -j ACCEPT<BR>
iptables -A INPUT -p tcp -s 0/0 --sport 53 -d $SERVER_IP --dport 53 -m state --state NEW,ESTABLISHED -j ACCEPT<BR>
iptables -A OUTPUT -p tcp -s $SERVER_IP --sport 53 -d 0/0 --dport 53 -m state --state ESTABLISHED -j ACCEPT<BR>
<BR>
I still have the same effect.<BR>
<BR>
Running the following shows that the system is refusing the connection.<BR>
/usr/sbin/tcpdump -X port 53<BR>
<BR>
[root@fc9 named]# /usr/sbin/tcpdump -X port 53<BR>
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode<BR>
listening on eth0, link-type EN10MB (Ethernet), capture size 96 bytes<BR>
21:39:38.512926 IP aix.sparish.local.52686 &gt; fc9.sparish.local.domain: 46304+ PTR? 50.1.168.192.in-addr.arpa. (43)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x0000:&nbsp; 4500 0047 ac22 0000 1e11 6ccd c0a8 0134&nbsp; E..G.&quot;....l....4<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x0010:&nbsp; c0a8 0132 cdce 0035 0033 7c2c b4e0 0100&nbsp; ...2...5.3|,....<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x0020:&nbsp; 0001 0000 0000 0000 0235 3001 3103 3136&nbsp; .........50.1.16<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x0030:&nbsp; 3803 3139 3207 696e 2d61 6464 7204 6172&nbsp; 8.192.in-addr.ar<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x0040:&nbsp; 7061 0000 0c00 01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pa.....<BR>
21:39:38.519048 IP fc9.sparish.local.domain &gt; aix.sparish.local.52686: 46304 Refused- 0/0/0 (43)<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x0000:&nbsp; 4500 0047 0000 4000 4011 b6ef c0a8 0132&nbsp; E..G..@.@......2<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x0010:&nbsp; c0a8 0134 0035 cdce 0033 fc26 b4e0 8105&nbsp; ...4.5...3.&amp;....<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x0020:&nbsp; 0001 0000 0000 0000 0235 3001 3103 3136&nbsp; .........50.1.16<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x0030:&nbsp; 3803 3139 3207 696e 2d61 6464 7204 6172&nbsp; 8.192.in-addr.ar<BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0x0040:&nbsp; 7061 0000 0c00 01&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pa.....<BR>
<BR>
<BR>
Any help would be welcome<BR>
<BR>
Thanks<BR>
</FONT>
</P>

</BODY>
</HTML>