<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Installing and configuring BIND9 DNS server</title>
	<atom:link href="http://linuxgravity.com/video-tutorial-installing-and-configuring-bind9-dns-on-red-hat-5-and-centos-5/feed" rel="self" type="application/rss+xml" />
	<link>http://linuxgravity.com/video-tutorial-installing-and-configuring-bind9-dns-on-red-hat-5-and-centos-5</link>
	<description>Linux tutorials, guides, howtos, tips, tricks and hacks</description>
	<lastBuildDate>Mon, 26 Jul 2010 05:02:33 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: amjad</title>
		<link>http://linuxgravity.com/video-tutorial-installing-and-configuring-bind9-dns-on-red-hat-5-and-centos-5/comment-page-1#comment-263</link>
		<dc:creator>amjad</dc:creator>
		<pubDate>Thu, 27 May 2010 15:36:16 +0000</pubDate>
		<guid isPermaLink="false">http://linuxgravity.com/?p=441#comment-263</guid>
		<description>Try fully qualified domain name like

dig mainserver.mydomain.com

I suspect, your have different search domain in /etc/resolv.conf.</description>
		<content:encoded><![CDATA[<p>Try fully qualified domain name like</p>
<p>dig mainserver.mydomain.com</p>
<p>I suspect, your have different search domain in /etc/resolv.conf.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashid Iqbal</title>
		<link>http://linuxgravity.com/video-tutorial-installing-and-configuring-bind9-dns-on-red-hat-5-and-centos-5/comment-page-1#comment-262</link>
		<dc:creator>Rashid Iqbal</dc:creator>
		<pubDate>Thu, 27 May 2010 08:42:30 +0000</pubDate>
		<guid isPermaLink="false">http://linuxgravity.com/?p=441#comment-262</guid>
		<description>here is my complete configuration files:
vi  /var/named/chroot/etc/named.conf
options {
  directory           &quot;/var/named&quot;; 
  dump-file           &quot;data/cache_dump.db&quot;;
  statistics-file     &quot;data/named_stats.txt&quot;;
  memstatistics-file  &quot;data/named_mem_stats.txt&quot;;
  version             &quot;currently unavailable&quot;;
};

zone &quot;mydomain.com&quot; in {
  type master;
  file &quot;mydomain.com.ns&quot;;
  allow-update { none; };
};


zone &quot;12.168.192.in-addr.arpa&quot; in {
  type master;
  file &quot;12-168-192.in-addr.arpa.ns&quot;;
  allow-update { none; };
};

vi  /var/named/chroot/var/named/mydomain.com.ns
****
$TTL    1d

@              IN    SOA    ns.mydomain.com. root (
;mydomain.com.  IN    SOA   ns.mydomain.com. hostmaster.mydomain.com. (
    2010031500 ; se = serial number
    3h         ; ref = refresh
    15m        ; ret = update retry
    3w         ; ex = expiry
    3h         ; min = minimum
    )

    IN    NS    ns.mydomain.com.

; private hosts
         IN   NS      192.168.12.3

ns	   IN	 A    192.168.12.3
fish       IN    A    192.168.12.4
whale      IN    A    192.168.12.5
monkey     IN    A    192.168.12.6
horse      IN    A    192.168.12.7
cow        IN    A    192.168.12.8
mainserver IN    A    192.168.12.2

***********************

vi  /var/named/chroot/var/named/12-168-192.in-addr.arpa.ns

*******
$TTL    1d
@   IN    SOA   ns.mydomain.com. hostmaster.mydomain.com. (
    2010031500 ; se = serial number
    3h         ; ref = refresh
    15m        ; ret = update retry
    3w         ; ex = expiry
    3h         ; min = minimum
    )

@    IN    NS    ns.mydomain.com.

; private hosts, reverse lookup
3     IN    PTR    ns.mydomain.com.

2     IN   PTR     mainserver.mydomain.com.
3     IN   PTR     centos.mydomain.com.
4     IN    PTR    fish.mydomain.com.
5     IN    PTR    whale.mydomain.com.
6     IN    PTR    monkey.mydomain.com.
7     IN    PTR    horse.mydomain.com.
8     IN    PTR    cow.mydomain.com.

****************************************








the error is 

[root@centos etc]# nslookup 192.168.12.2
Server:         192.168.12.3
Address:        192.168.12.3#53

2.12.168.192.in-addr.arpa       name = mainserver.mydomain.com.

[root@centos etc]# nslookup mainserver
Server:         192.168.12.3
Address:        192.168.12.3#53

** server can&#039;t find mainserver: NXDOMAIN

[root@centos etc]# 

kindly guide.


Best Regards,</description>
		<content:encoded><![CDATA[<p>here is my complete configuration files:<br />
vi  /var/named/chroot/etc/named.conf<br />
options {<br />
  directory           &#8220;/var/named&#8221;;<br />
  dump-file           &#8220;data/cache_dump.db&#8221;;<br />
  statistics-file     &#8220;data/named_stats.txt&#8221;;<br />
  memstatistics-file  &#8220;data/named_mem_stats.txt&#8221;;<br />
  version             &#8220;currently unavailable&#8221;;<br />
};</p>
<p>zone &#8220;mydomain.com&#8221; in {<br />
  type master;<br />
  file &#8220;mydomain.com.ns&#8221;;<br />
  allow-update { none; };<br />
};</p>
<p>zone &#8220;12.168.192.in-addr.arpa&#8221; in {<br />
  type master;<br />
  file &#8220;12-168-192.in-addr.arpa.ns&#8221;;<br />
  allow-update { none; };<br />
};</p>
<p>vi  /var/named/chroot/var/named/mydomain.com.ns<br />
****<br />
$TTL    1d</p>
<p>@              IN    SOA    ns.mydomain.com. root (<br />
;mydomain.com.  IN    SOA   ns.mydomain.com. hostmaster.mydomain.com. (<br />
    2010031500 ; se = serial number<br />
    3h         ; ref = refresh<br />
    15m        ; ret = update retry<br />
    3w         ; ex = expiry<br />
    3h         ; min = minimum<br />
    )</p>
<p>    IN    NS    ns.mydomain.com.</p>
<p>; private hosts<br />
         IN   NS      192.168.12.3</p>
<p>ns	   IN	 A    192.168.12.3<br />
fish       IN    A    192.168.12.4<br />
whale      IN    A    192.168.12.5<br />
monkey     IN    A    192.168.12.6<br />
horse      IN    A    192.168.12.7<br />
cow        IN    A    192.168.12.8<br />
mainserver IN    A    192.168.12.2</p>
<p>***********************</p>
<p>vi  /var/named/chroot/var/named/12-168-192.in-addr.arpa.ns</p>
<p>*******<br />
$TTL    1d<br />
@   IN    SOA   ns.mydomain.com. hostmaster.mydomain.com. (<br />
    2010031500 ; se = serial number<br />
    3h         ; ref = refresh<br />
    15m        ; ret = update retry<br />
    3w         ; ex = expiry<br />
    3h         ; min = minimum<br />
    )</p>
<p>@    IN    NS    ns.mydomain.com.</p>
<p>; private hosts, reverse lookup<br />
3     IN    PTR    ns.mydomain.com.</p>
<p>2     IN   PTR     mainserver.mydomain.com.<br />
3     IN   PTR     centos.mydomain.com.<br />
4     IN    PTR    fish.mydomain.com.<br />
5     IN    PTR    whale.mydomain.com.<br />
6     IN    PTR    monkey.mydomain.com.<br />
7     IN    PTR    horse.mydomain.com.<br />
8     IN    PTR    cow.mydomain.com.</p>
<p>****************************************</p>
<p>the error is </p>
<p>[root@centos etc]# nslookup 192.168.12.2<br />
Server:         192.168.12.3<br />
Address:        192.168.12.3#53</p>
<p>2.12.168.192.in-addr.arpa       name = mainserver.mydomain.com.</p>
<p>[root@centos etc]# nslookup mainserver<br />
Server:         192.168.12.3<br />
Address:        192.168.12.3#53</p>
<p>** server can&#8217;t find mainserver: NXDOMAIN</p>
<p>[root@centos etc]# </p>
<p>kindly guide.</p>
<p>Best Regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashid Iqbal</title>
		<link>http://linuxgravity.com/video-tutorial-installing-and-configuring-bind9-dns-on-red-hat-5-and-centos-5/comment-page-1#comment-261</link>
		<dc:creator>Rashid Iqbal</dc:creator>
		<pubDate>Thu, 27 May 2010 08:41:58 +0000</pubDate>
		<guid isPermaLink="false">http://linuxgravity.com/?p=441#comment-261</guid>
		<description>yes ..
where is the reverse lookup zone file

vi /var/named/2.168.192.in-addr.arpa.zone

***************
$TTL    1d
@   IN    SOA   ns.mydomain.com. hostmaster.mydomain.com. (
    2010031500 ; se = serial number
    3h         ; ref = refresh
    15m        ; ret = update retry
    3w         ; ex = expiry
    3h         ; min = minimum
    )

@    IN    NS    ns.mydomain.com.

; private hosts, reverse lookup
3     IN    PTR    ns.mydomain.com.

2     IN   PTR     mainserver.mydomain.com.
3     IN   PTR     centos.mydomain.com.
4     IN    PTR    fish.mydomain.com.
5     IN    PTR    whale.mydomain.com.
6     IN    PTR    monkey.mydomain.com.
7     IN    PTR    horse.mydomain.com.
8     IN    PTR    cow.mydomain.com.

****************************************



but configuring all this and all seems ok
service starts properly but when i do nslookup get below mentioned error:

[root@centos etc]# nslookup 192.168.12.2
Server:         192.168.12.3
Address:        192.168.12.3#53

2.12.168.192.in-addr.arpa       name = mainserver.mydomain.com.

[root@centos etc]# nslookup mainserver
Server:         192.168.12.3
Address:        192.168.12.3#53

** server can&#039;t find mainserver: NXDOMAIN</description>
		<content:encoded><![CDATA[<p>yes ..<br />
where is the reverse lookup zone file</p>
<p>vi /var/named/2.168.192.in-addr.arpa.zone</p>
<p>***************<br />
$TTL    1d<br />
@   IN    SOA   ns.mydomain.com. hostmaster.mydomain.com. (<br />
    2010031500 ; se = serial number<br />
    3h         ; ref = refresh<br />
    15m        ; ret = update retry<br />
    3w         ; ex = expiry<br />
    3h         ; min = minimum<br />
    )</p>
<p>@    IN    NS    ns.mydomain.com.</p>
<p>; private hosts, reverse lookup<br />
3     IN    PTR    ns.mydomain.com.</p>
<p>2     IN   PTR     mainserver.mydomain.com.<br />
3     IN   PTR     centos.mydomain.com.<br />
4     IN    PTR    fish.mydomain.com.<br />
5     IN    PTR    whale.mydomain.com.<br />
6     IN    PTR    monkey.mydomain.com.<br />
7     IN    PTR    horse.mydomain.com.<br />
8     IN    PTR    cow.mydomain.com.</p>
<p>****************************************</p>
<p>but configuring all this and all seems ok<br />
service starts properly but when i do nslookup get below mentioned error:</p>
<p>[root@centos etc]# nslookup 192.168.12.2<br />
Server:         192.168.12.3<br />
Address:        192.168.12.3#53</p>
<p>2.12.168.192.in-addr.arpa       name = mainserver.mydomain.com.</p>
<p>[root@centos etc]# nslookup mainserver<br />
Server:         192.168.12.3<br />
Address:        192.168.12.3#53</p>
<p>** server can&#8217;t find mainserver: NXDOMAIN</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sree</title>
		<link>http://linuxgravity.com/video-tutorial-installing-and-configuring-bind9-dns-on-red-hat-5-and-centos-5/comment-page-1#comment-233</link>
		<dc:creator>sree</dc:creator>
		<pubDate>Wed, 09 Dec 2009 04:17:31 +0000</pubDate>
		<guid isPermaLink="false">http://linuxgravity.com/?p=441#comment-233</guid>
		<description>thanks a lot. This is very helpful. And more over could u help in configuring the reverse lookup .......</description>
		<content:encoded><![CDATA[<p>thanks a lot. This is very helpful. And more over could u help in configuring the reverse lookup &#8230;&#8230;.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
