<?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: How To Configure Dynamic DNS (Fedora Core 4 Setup)</title>
	<atom:link href="http://www.sohailriaz.com/how-to-configure-dynamic-dns-fedora-core-4-setup/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sohailriaz.com/how-to-configure-dynamic-dns-fedora-core-4-setup/</link>
	<description>Sohail Riaz, Linux and Open Source Blog</description>
	<lastBuildDate>Wed, 08 Sep 2010 19:56:36 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Shah Jehan</title>
		<link>http://www.sohailriaz.com/how-to-configure-dynamic-dns-fedora-core-4-setup/comment-page-1/#comment-956</link>
		<dc:creator>Shah Jehan</dc:creator>
		<pubDate>Thu, 17 Jun 2010 05:51:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.sohailriaz.com/?p=9#comment-956</guid>
		<description>Dear Sir, 

I want to configur DNS in Rathat 9. I have 2 host name. for example. 

hotmail.com
yahoo.com

IP behind ns1.hotmail.com and ns1.yahoo.com is same for example 192.168.1.4 

Secoundly my web and mail server IP is 192.168.1.3 and the access link is mail.yahoo.com and mail.hotmail.com. 

Thiredly my FTP is also configured on IP 192.168.1.2

Can you please Guied me that how is set my DNS server. 
Thanks and regards, 
Shah Jehan</description>
		<content:encoded><![CDATA[<p>Dear Sir, </p>
<p>I want to configur DNS in Rathat 9. I have 2 host name. for example. </p>
<p>hotmail.com<br />
yahoo.com</p>
<p>IP behind ns1.hotmail.com and ns1.yahoo.com is same for example 192.168.1.4 </p>
<p>Secoundly my web and mail server IP is 192.168.1.3 and the access link is mail.yahoo.com and mail.hotmail.com. </p>
<p>Thiredly my FTP is also configured on IP 192.168.1.2</p>
<p>Can you please Guied me that how is set my DNS server.<br />
Thanks and regards,<br />
Shah Jehan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashid Iqbal</title>
		<link>http://www.sohailriaz.com/how-to-configure-dynamic-dns-fedora-core-4-setup/comment-page-1/#comment-921</link>
		<dc:creator>Rashid Iqbal</dc:creator>
		<pubDate>Thu, 27 May 2010 07:51:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.sohailriaz.com/?p=9#comment-921</guid>
		<description>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>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>****************************************<br />
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://www.sohailriaz.com/how-to-configure-dynamic-dns-fedora-core-4-setup/comment-page-1/#comment-918</link>
		<dc:creator>Rashid Iqbal</dc:creator>
		<pubDate>Wed, 26 May 2010 13:01:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.sohailriaz.com/?p=9#comment-918</guid>
		<description>sir waiting for your kind reply</description>
		<content:encoded><![CDATA[<p>sir waiting for your kind reply</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashid</title>
		<link>http://www.sohailriaz.com/how-to-configure-dynamic-dns-fedora-core-4-setup/comment-page-1/#comment-917</link>
		<dc:creator>Rashid</dc:creator>
		<pubDate>Wed, 26 May 2010 11:46:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.sohailriaz.com/?p=9#comment-917</guid>
		<description>/etc/named.conf

*******************************
include &quot;/etc/rndc.key&quot;;

controls {
	inet 127.0.0.1 allow { localhost; } keys { &quot;rndc-key&quot;; };
};

options {
allow-recursion { 127.0.0.1; 192.168.1.1; };   // 192.168.1.1 is the LAN interface of internally connected network
    /* make named use port 53 for the source of all queries, to allow
         * firewalls to block all ports except 53:
         */

    // query-source    port 53;

    /* We no longer enable this by default as the dns posion exploit
        has forced many providers to open up their firewalls a bit */

    // Put files that named is allowed to write in the data/ directory:
    directory                &quot;/var/named&quot;; // the default
    pid-file                 &quot;/var/run/named/named.pid&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;; */
};

logging {
/*      If you want to enable debugging, eg. using the &#039;rndc trace&#039; command,
 *      named will try to write the &#039;named.run&#039; file in the $directory (/var/named&quot;).
 *      By default, SELinux policy does not allow named to modify the /var/named&quot; directory,
 *      so put the default debug log file in data/ :
 */
    channel default_debug {
            file &quot;data/named.run&quot;;
            severity dynamic;
    };
};

acl &quot;safe-subnet&quot; { 192.168.1.0/24 ; };

view &quot;localhost_resolver&quot; {
/* This view sets up named to be a localhost resolver ( caching only nameserver ).
 * If all you want is a caching-only nameserver, then you need only define this view:
 */
    match-clients         { 127.0.0.0/24; safe-subnets; };
    match-destinations    { localhost; safe-subnets; };
    recursion yes;

    zone &quot;.&quot; IN {
        type hint;
        file &quot;/var/named/named.ca&quot;;
    };



zone &quot;mydomain.com&quot; {

type master;
file &quot;/var/named/mydomain.com.zone&quot;;
};


zone &quot;1.168.192.in-addr.arpa&quot; {
type master;
file &quot;/var/named/192-168-1.zone&quot;;
};

*******************************************

/var/named/mydomain.com.zone

---------------------
$TTL 3D

@    IN   SOA     mainserver.mydomain.com.  hostmaster.mydomain.com. 

(

200211152 
3600
3600
3600
3600

)

localhost		A		127.0.0.1
mainserver		A		192.168.1.1
rashid			A		192.168.1.2

-------------------------------------

/var/named/192-168-1.zone

-----------------------

$TTL 3D

@    IN   SOA     mainserver.mydomain.com.  hostmaster.mydomain.com. 

(

200303301
8H
2H
4W
1D

)

1	PTR	mainserver.mydomain.com
2	PTR	rashid.mydomain.com

--------------------------------------

service named restart

SUCCESSFULLY RESTARTED THE SERVICE

---------------
[root@mainserver named]# dig centos.com

; &lt;&gt; DiG 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 &lt;&gt; centos.com
;; global options:  printcmd
;; Got answer:
;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, status: NOERROR, id: 14759
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2

;; QUESTION SECTION:
;centos.com.                    IN      A

;; ANSWER SECTION:
centos.com.             86400   IN      A       87.106.187.200

;; AUTHORITY SECTION:
centos.com.             172800  IN      NS      ns65.1und1.de.
centos.com.             172800  IN      NS      ns66.1und1.de.

;; ADDITIONAL SECTION:
ns65.1und1.de.          76603   IN      A       195.20.224.210
ns66.1und1.de.          76603   IN      A       212.227.123.58

;; Query time: 419 msec
;; SERVER: 192.168.12.1#53(192.168.12.1)
;; WHEN: Wed May 26 14:34:40 2010
;; MSG SIZE  rcvd: 122


IN THIRD LAST LINE HE IS SHOWING THE IP OF THAT INTERFACE THAT IS CONNECTED TO ROUTER.



-------------------

[root@mainserver named]# ping rashid.mydomain.com
PING rashid.mydomain.com (216.34.94.184) 56(84) bytes of data.

--- rashid.mydomain.com ping statistics ---
5 packets transmitted, 0 received, 100% packet loss, time 4008ms

[root@mainserver named]# dig rashid.mydomain.com

; &lt;&gt; DiG 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 &lt;&gt; rashid.mydomain.com
;; global options:  printcmd
;; Got answer:
;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, status: NOERROR, id: 53633
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 4, ADDITIONAL: 0

;; QUESTION SECTION:
;rashid.mydomain.com.           IN      A

;; ANSWER SECTION:
rashid.mydomain.com.    290     IN      A       216.34.94.184

;; AUTHORITY SECTION:
mydomain.com.           524     IN      NS      ns3.mydomain.com.
mydomain.com.           524     IN      NS      ns1.mydomain.com.
mydomain.com.           524     IN      NS      ns4.mydomain.com.
mydomain.com.           524     IN      NS      ns2.mydomain.com.

;; Query time: 37 msec
;; SERVER: 192.168.12.1#53(192.168.12.1)
;; WHEN: Wed May 26 14:36:21 2010
;; MSG SIZE  rcvd: 125
-----------------------------------</description>
		<content:encoded><![CDATA[<p>/etc/named.conf</p>
<p>*******************************<br />
include &#8220;/etc/rndc.key&#8221;;</p>
<p>controls {<br />
	inet 127.0.0.1 allow { localhost; } keys { &#8220;rndc-key&#8221;; };<br />
};</p>
<p>options {<br />
allow-recursion { 127.0.0.1; 192.168.1.1; };   // 192.168.1.1 is the LAN interface of internally connected network<br />
    /* make named use port 53 for the source of all queries, to allow<br />
         * firewalls to block all ports except 53:<br />
         */</p>
<p>    // query-source    port 53;</p>
<p>    /* We no longer enable this by default as the dns posion exploit<br />
        has forced many providers to open up their firewalls a bit */</p>
<p>    // Put files that named is allowed to write in the data/ directory:<br />
    directory                &#8220;/var/named&#8221;; // the default<br />
    pid-file                 &#8220;/var/run/named/named.pid&#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 />
};</p>
<p>logging {<br />
/*      If you want to enable debugging, eg. using the &#8216;rndc trace&#8217; command,<br />
 *      named will try to write the &#8216;named.run&#8217; file in the $directory (/var/named&#8221;).<br />
 *      By default, SELinux policy does not allow named to modify the /var/named&#8221; directory,<br />
 *      so put the default debug log file in data/ :<br />
 */<br />
    channel default_debug {<br />
            file &#8220;data/named.run&#8221;;<br />
            severity dynamic;<br />
    };<br />
};</p>
<p>acl &#8220;safe-subnet&#8221; { 192.168.1.0/24 ; };</p>
<p>view &#8220;localhost_resolver&#8221; {<br />
/* This view sets up named to be a localhost resolver ( caching only nameserver ).<br />
 * If all you want is a caching-only nameserver, then you need only define this view:<br />
 */<br />
    match-clients         { 127.0.0.0/24; safe-subnets; };<br />
    match-destinations    { localhost; safe-subnets; };<br />
    recursion yes;</p>
<p>    zone &#8220;.&#8221; IN {<br />
        type hint;<br />
        file &#8220;/var/named/named.ca&#8221;;<br />
    };</p>
<p>zone &#8220;mydomain.com&#8221; {</p>
<p>type master;<br />
file &#8220;/var/named/mydomain.com.zone&#8221;;<br />
};</p>
<p>zone &#8220;1.168.192.in-addr.arpa&#8221; {<br />
type master;<br />
file &#8220;/var/named/192-168-1.zone&#8221;;<br />
};</p>
<p>*******************************************</p>
<p>/var/named/mydomain.com.zone</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
$TTL 3D</p>
<p>@    IN   SOA     mainserver.mydomain.com.  hostmaster.mydomain.com. </p>
<p>(</p>
<p>200211152<br />
3600<br />
3600<br />
3600<br />
3600</p>
<p>)</p>
<p>localhost		A		127.0.0.1<br />
mainserver		A		192.168.1.1<br />
rashid			A		192.168.1.2</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>/var/named/192-168-1.zone</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>$TTL 3D</p>
<p>@    IN   SOA     mainserver.mydomain.com.  hostmaster.mydomain.com. </p>
<p>(</p>
<p>200303301<br />
8H<br />
2H<br />
4W<br />
1D</p>
<p>)</p>
<p>1	PTR	mainserver.mydomain.com<br />
2	PTR	rashid.mydomain.com</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>service named restart</p>
<p>SUCCESSFULLY RESTARTED THE SERVICE</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;<br />
[root@mainserver named]# dig centos.com</p>
<p>; &lt;&gt; DiG 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 &lt;&gt; centos.com<br />
;; global options:  printcmd<br />
;; Got answer:<br />
;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, status: NOERROR, id: 14759<br />
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 2, ADDITIONAL: 2</p>
<p>;; QUESTION SECTION:<br />
;centos.com.                    IN      A</p>
<p>;; ANSWER SECTION:<br />
centos.com.             86400   IN      A       87.106.187.200</p>
<p>;; AUTHORITY SECTION:<br />
centos.com.             172800  IN      NS      ns65.1und1.de.<br />
centos.com.             172800  IN      NS      ns66.1und1.de.</p>
<p>;; ADDITIONAL SECTION:<br />
ns65.1und1.de.          76603   IN      A       195.20.224.210<br />
ns66.1und1.de.          76603   IN      A       212.227.123.58</p>
<p>;; Query time: 419 msec<br />
;; SERVER: 192.168.12.1#53(192.168.12.1)<br />
;; WHEN: Wed May 26 14:34:40 2010<br />
;; MSG SIZE  rcvd: 122</p>
<p>IN THIRD LAST LINE HE IS SHOWING THE IP OF THAT INTERFACE THAT IS CONNECTED TO ROUTER.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>[root@mainserver named]# ping rashid.mydomain.com<br />
PING rashid.mydomain.com (216.34.94.184) 56(84) bytes of data.</p>
<p>&#8212; rashid.mydomain.com ping statistics &#8212;<br />
5 packets transmitted, 0 received, 100% packet loss, time 4008ms</p>
<p>[root@mainserver named]# dig rashid.mydomain.com</p>
<p>; &lt;&gt; DiG 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 &lt;&gt; rashid.mydomain.com<br />
;; global options:  printcmd<br />
;; Got answer:<br />
;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, status: NOERROR, id: 53633<br />
;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 4, ADDITIONAL: 0</p>
<p>;; QUESTION SECTION:<br />
;rashid.mydomain.com.           IN      A</p>
<p>;; ANSWER SECTION:<br />
rashid.mydomain.com.    290     IN      A       216.34.94.184</p>
<p>;; AUTHORITY SECTION:<br />
mydomain.com.           524     IN      NS      ns3.mydomain.com.<br />
mydomain.com.           524     IN      NS      ns1.mydomain.com.<br />
mydomain.com.           524     IN      NS      ns4.mydomain.com.<br />
mydomain.com.           524     IN      NS      ns2.mydomain.com.</p>
<p>;; Query time: 37 msec<br />
;; SERVER: 192.168.12.1#53(192.168.12.1)<br />
;; WHEN: Wed May 26 14:36:21 2010<br />
;; MSG SIZE  rcvd: 125<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashid Iqbal</title>
		<link>http://www.sohailriaz.com/how-to-configure-dynamic-dns-fedora-core-4-setup/comment-page-1/#comment-914</link>
		<dc:creator>Rashid Iqbal</dc:creator>
		<pubDate>Wed, 26 May 2010 09:33:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.sohailriaz.com/?p=9#comment-914</guid>
		<description>sir still waiting for the files</description>
		<content:encoded><![CDATA[<p>sir still waiting for the files</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashid</title>
		<link>http://www.sohailriaz.com/how-to-configure-dynamic-dns-fedora-core-4-setup/comment-page-1/#comment-912</link>
		<dc:creator>Rashid</dc:creator>
		<pubDate>Tue, 25 May 2010 08:09:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.sohailriaz.com/?p=9#comment-912</guid>
		<description>interesting thing happened

uninstall all the bind packages then reinstall the BIND packages
using below command
 yum install  bind  bind-utils caching-nameserver bind-libs

restart the system

ping mainserver.mydomain.com
pinging ..............


WHY....................................</description>
		<content:encoded><![CDATA[<p>interesting thing happened</p>
<p>uninstall all the bind packages then reinstall the BIND packages<br />
using below command<br />
 yum install  bind  bind-utils caching-nameserver bind-libs</p>
<p>restart the system</p>
<p>ping mainserver.mydomain.com<br />
pinging &#8230;&#8230;&#8230;&#8230;..</p>
<p>WHY&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashid</title>
		<link>http://www.sohailriaz.com/how-to-configure-dynamic-dns-fedora-core-4-setup/comment-page-1/#comment-911</link>
		<dc:creator>Rashid</dc:creator>
		<pubDate>Tue, 25 May 2010 06:47:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.sohailriaz.com/?p=9#comment-911</guid>
		<description>gedit /var/spool/mail/root

----------------------------------------
**Unmatched Entries**
    /etc/named.conf:3: unknown option &#039;keys&#039;: 1 Time(s)
    /etc/named.conf:4: missing &#039;;&#039; before &#039;}&#039;: 3 Time(s)
    /var/named/12.168.192.rev:4: unknown RR type &#039;1M&#039;: 2 Time(s)
    /var/named/mydomain.com.zone:4: unknown RR type &#039;1M&#039;: 2 Time(s)
    12.168.192.in-addr.arpa.zone:4: unknown RR type &#039;7200&#039;: 2 Time(s)
    12.168.192.in-addr.arpa.zone:6: unknown RR type &#039;7200&#039;: 1 Time(s)
    _default/ 0.0.127.in-addr.arpa/IN: file not found: 1 Time(s)
    _default/0.0.127.in-addr.arpa/IN: file not found: 2 Time(s)
    _default/12.168.192.in-addr.arpa/IN: unexpected end of input: 5 Time(s)
    _default/localhost/IN: file not found: 1 Time(s)
    _default/mydomain.com/IN: file not found: 1 Time(s)
    _default/mydomain.com/IN: unexpected end of input: 4 Time(s)
    dns_rdata_fromtext: /var/named/12.168.192.rev:2: near eol: unexpected end of input: 2 Time(s)
    dns_rdata_fromtext: /var/named/mydomain.com.zone:2: near eol: unexpected end of input: 2 Time(s)
    dns_rdata_fromtext: 12.168.192.in-addr.arpa.zone:2: near eol: unexpected end of input: 2 Time(s)
    dns_rdata_fromtext: 12.168.192.in-addr.arpa.zone:4: near eol: unexpected end of input: 1 Time(s)
    dns_rdata_fromtext: mydomain.com.zone:3: near eol: unexpected end of input: 2 Time(s)
    mydomain.com.zone:5: unknown RR type &#039;7200&#039;: 2 Time(s)
 
 ---------------------- Named End -------------------------</description>
		<content:encoded><![CDATA[<p>gedit /var/spool/mail/root</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
**Unmatched Entries**<br />
    /etc/named.conf:3: unknown option &#8216;keys&#8217;: 1 Time(s)<br />
    /etc/named.conf:4: missing &#8216;;&#8217; before &#8216;}&#8217;: 3 Time(s)<br />
    /var/named/12.168.192.rev:4: unknown RR type &#8216;1M&#8217;: 2 Time(s)<br />
    /var/named/mydomain.com.zone:4: unknown RR type &#8216;1M&#8217;: 2 Time(s)<br />
    12.168.192.in-addr.arpa.zone:4: unknown RR type &#8216;7200&#8242;: 2 Time(s)<br />
    12.168.192.in-addr.arpa.zone:6: unknown RR type &#8216;7200&#8242;: 1 Time(s)<br />
    _default/ 0.0.127.in-addr.arpa/IN: file not found: 1 Time(s)<br />
    _default/0.0.127.in-addr.arpa/IN: file not found: 2 Time(s)<br />
    _default/12.168.192.in-addr.arpa/IN: unexpected end of input: 5 Time(s)<br />
    _default/localhost/IN: file not found: 1 Time(s)<br />
    _default/mydomain.com/IN: file not found: 1 Time(s)<br />
    _default/mydomain.com/IN: unexpected end of input: 4 Time(s)<br />
    dns_rdata_fromtext: /var/named/12.168.192.rev:2: near eol: unexpected end of input: 2 Time(s)<br />
    dns_rdata_fromtext: /var/named/mydomain.com.zone:2: near eol: unexpected end of input: 2 Time(s)<br />
    dns_rdata_fromtext: 12.168.192.in-addr.arpa.zone:2: near eol: unexpected end of input: 2 Time(s)<br />
    dns_rdata_fromtext: 12.168.192.in-addr.arpa.zone:4: near eol: unexpected end of input: 1 Time(s)<br />
    dns_rdata_fromtext: mydomain.com.zone:3: near eol: unexpected end of input: 2 Time(s)<br />
    mydomain.com.zone:5: unknown RR type &#8216;7200&#8242;: 2 Time(s)</p>
<p> &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- Named End &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashid</title>
		<link>http://www.sohailriaz.com/how-to-configure-dynamic-dns-fedora-core-4-setup/comment-page-1/#comment-910</link>
		<dc:creator>Rashid</dc:creator>
		<pubDate>Tue, 25 May 2010 06:23:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.sohailriaz.com/?p=9#comment-910</guid>
		<description>Now I am implementing the DNS on individual machine

configure properly but giving below mentioned error when restarting the named server.

[root@mainserver named]# service named restart
Stopping named:                                            [  OK  ]
Starting named: 
Error in named configuration:
zone 0.0.127.in-addr.arpa/IN: loading master file 0.0.127.in-addr.arpa.zone: file not found
_default/0.0.127.in-addr.arpa/IN: file not found
dns_rdata_fromtext: 12.168.192.in-addr.arpa.zone:2: near eol: unexpected end of input
12.168.192.in-addr.arpa.zone:4: unknown RR type &#039;7200&#039;
zone 12.168.192.in-addr.arpa/IN: loading master file 12.168.192.in-addr.arpa.zone: unexpected end of input
_default/12.168.192.in-addr.arpa/IN: unexpected end of input
zone localhost/IN: loaded serial 1
dns_rdata_fromtext: mydomain.com.zone:3: near eol: unexpected end of input
mydomain.com.zone:5: unknown RR type &#039;7200&#039;
zone mydomain.com/IN: loading master file mydomain.com.zone: unexpected end of input
_default/mydomain.com/IN: unexpected end of input
                                                           [FAILED]

******************************************************
named.conf
-------------
//
// sample BIND configuration file
//

options {
  // tell named where to find files mentioned below
  directory &quot;/var/named&quot;;
  // on a multi-homed host, you might want to tell named
  // to listen for queries only on certain interfaces
  listen-on { 127.0.0.1; 10.11.12.0/24; };
};

// The single dot (.) is the root of all DNS namespace, so
// this zone tells named where to start looking for any
// name on the Internet
zone &quot;.&quot; IN {
  // a hint type means that we&#039;ve got to look elsewhere
  // for authoritative information
  type hint;
  file &quot;named.root&quot;;
};

// Where the localhost hostname is defined
zone &quot;localhost&quot; IN {
  // a master type means that this server needn&#039;t look
  // anywhere else for information; the localhost buck
  // stops here.
  type master;
  file &quot;localhost.zone&quot;;
  // don&#039;t allow dynamic DNS clients to update info
  // about the localhost zone
  allow-update { none; };
};

// Where the 127.0.0.0 network is defined
zone &quot;0.0.127.in-addr.arpa&quot; IN {
  type master;
  file &quot;revp.127.0.0&quot;;
  allow-update { none; };
};


zone &quot;mydomain.com&quot; IN {
  // this is the authoritative server for
  // schroder.net info
  type master;
  file &quot;mydomain.com.zone&quot;;
};

zone &quot;12.168.192.in-addr.arpa&quot; {
  // this is the authoritative server for
  // the 10.11.12.0 network
  type master;
  file &quot;revp.12.168.192&quot;;
};

----------------------------------------</description>
		<content:encoded><![CDATA[<p>Now I am implementing the DNS on individual machine</p>
<p>configure properly but giving below mentioned error when restarting the named server.</p>
<p>[root@mainserver named]# service named restart<br />
Stopping named:                                            [  OK  ]<br />
Starting named:<br />
Error in named configuration:<br />
zone 0.0.127.in-addr.arpa/IN: loading master file 0.0.127.in-addr.arpa.zone: file not found<br />
_default/0.0.127.in-addr.arpa/IN: file not found<br />
dns_rdata_fromtext: 12.168.192.in-addr.arpa.zone:2: near eol: unexpected end of input<br />
12.168.192.in-addr.arpa.zone:4: unknown RR type &#8216;7200&#8242;<br />
zone 12.168.192.in-addr.arpa/IN: loading master file 12.168.192.in-addr.arpa.zone: unexpected end of input<br />
_default/12.168.192.in-addr.arpa/IN: unexpected end of input<br />
zone localhost/IN: loaded serial 1<br />
dns_rdata_fromtext: mydomain.com.zone:3: near eol: unexpected end of input<br />
mydomain.com.zone:5: unknown RR type &#8216;7200&#8242;<br />
zone mydomain.com/IN: loading master file mydomain.com.zone: unexpected end of input<br />
_default/mydomain.com/IN: unexpected end of input<br />
                                                           [FAILED]</p>
<p>******************************************************<br />
named.conf<br />
&#8212;&#8212;&#8212;&#8212;-<br />
//<br />
// sample BIND configuration file<br />
//</p>
<p>options {<br />
  // tell named where to find files mentioned below<br />
  directory &#8220;/var/named&#8221;;<br />
  // on a multi-homed host, you might want to tell named<br />
  // to listen for queries only on certain interfaces<br />
  listen-on { 127.0.0.1; 10.11.12.0/24; };<br />
};</p>
<p>// The single dot (.) is the root of all DNS namespace, so<br />
// this zone tells named where to start looking for any<br />
// name on the Internet<br />
zone &#8220;.&#8221; IN {<br />
  // a hint type means that we&#8217;ve got to look elsewhere<br />
  // for authoritative information<br />
  type hint;<br />
  file &#8220;named.root&#8221;;<br />
};</p>
<p>// Where the localhost hostname is defined<br />
zone &#8220;localhost&#8221; IN {<br />
  // a master type means that this server needn&#8217;t look<br />
  // anywhere else for information; the localhost buck<br />
  // stops here.<br />
  type master;<br />
  file &#8220;localhost.zone&#8221;;<br />
  // don&#8217;t allow dynamic DNS clients to update info<br />
  // about the localhost zone<br />
  allow-update { none; };<br />
};</p>
<p>// Where the 127.0.0.0 network is defined<br />
zone &#8220;0.0.127.in-addr.arpa&#8221; IN {<br />
  type master;<br />
  file &#8220;revp.127.0.0&#8243;;<br />
  allow-update { none; };<br />
};</p>
<p>zone &#8220;mydomain.com&#8221; IN {<br />
  // this is the authoritative server for<br />
  // schroder.net info<br />
  type master;<br />
  file &#8220;mydomain.com.zone&#8221;;<br />
};</p>
<p>zone &#8220;12.168.192.in-addr.arpa&#8221; {<br />
  // this is the authoritative server for<br />
  // the 10.11.12.0 network<br />
  type master;<br />
  file &#8220;revp.12.168.192&#8243;;<br />
};</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rashid Iqbal</title>
		<link>http://www.sohailriaz.com/how-to-configure-dynamic-dns-fedora-core-4-setup/comment-page-1/#comment-909</link>
		<dc:creator>Rashid Iqbal</dc:creator>
		<pubDate>Mon, 24 May 2010 12:07:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.sohailriaz.com/?p=9#comment-909</guid>
		<description>vi /etc/resolv.conf

*********************
search saudivalves.com

nameserver 192.168.12.1
*************************8

and the vi /var/log/messages

*******************************
May 24 14:31:56 centos named[5526]: starting BIND 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 -u named -c /etc/named.caching-nameserver.conf -t /var/named/chroot
May 24 14:31:56 centos named[5526]: adjusted limit on open files from 1024 to 1048576
May 24 14:31:56 centos named[5526]: found 1 CPU, using 1 worker thread
May 24 14:31:56 centos named[5526]: using up to 4096 sockets
May 24 14:31:56 centos named[5526]: loading configuration from &#039;/etc/named.caching-nameserver.conf&#039;
May 24 14:31:56 centos named[5526]: using default UDP/IPv4 port range: [1024, 65535]
May 24 14:31:56 centos named[5526]: using default UDP/IPv6 port range: [1024, 65535]
May 24 14:31:56 centos named[5526]: listening on IPv6 interface lo, ::1#53
May 24 14:31:56 centos named[5526]: listening on IPv4 interface lo, 127.0.0.1#53
May 24 14:31:56 centos named[5526]: command channel listening on 127.0.0.1#953
May 24 14:31:56 centos named[5526]: command channel listening on ::1#953
May 24 14:31:56 centos named[5526]: the working directory is not writable
May 24 14:31:56 centos named[5526]: zone 0.in-addr.arpa/IN/localhost_resolver: loaded serial 42
May 24 14:31:56 centos named[5526]: zone 0.0.127.in-addr.arpa/IN/localhost_resolver: loaded serial 1997022700
May 24 14:31:56 centos named[5526]: zone 255.in-addr.arpa/IN/localhost_resolver: loaded serial 42
May 24 14:31:56 centos named[5526]: zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa/IN/localhost_resolver: loaded serial 1997022700
May 24 14:31:56 centos named[5526]: zone localdomain/IN/localhost_resolver: loaded serial 42
May 24 14:31:56 centos named[5526]: zone localhost/IN/localhost_resolver: loaded serial 42
May 24 14:31:56 centos named[5526]: running
May 24 14:38:00 centos avahi-daemon[3721]: Invalid query packet.
May 24 14:42:39 centos last message repeated 6 times
May 24 14:42:40 centos last message repeated 2 times
May 24 14:42:54 centos avahi-daemon[3721]: Withdrawing address record for 192.168.12.3 on eth0.
May 24 14:42:54 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.
May 24 14:42:54 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.
May 24 14:42:54 centos avahi-daemon[3721]: Interface eth0.IPv4 no longer relevant for mDNS.
May 24 14:42:54 centos avahi-daemon[3721]: Withdrawing address record for fe80::20c:29ff:fee8:6887 on eth0.
May 24 14:42:54 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.
May 24 14:42:54 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.
May 24 14:42:54 centos avahi-daemon[3721]: Interface eth0.IPv6 no longer relevant for mDNS.
May 24 14:42:56 centos avahi-daemon[3721]: New relevant interface eth0.IPv6 for mDNS.
May 24 14:42:56 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.
May 24 14:42:56 centos avahi-daemon[3721]: Registering new address record for fe80::20c:29ff:fee8:6887 on eth0.
May 24 14:42:59 centos avahi-daemon[3721]: New relevant interface eth0.IPv4 for mDNS.
May 24 14:42:59 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.
May 24 14:42:59 centos avahi-daemon[3721]: Registering new address record for 192.168.12.3 on eth0.
May 24 14:43:02 centos named[5526]: shutting down: flushing changes
May 24 14:43:02 centos named[5526]: stopping command channel on 127.0.0.1#953
May 24 14:43:02 centos named[5526]: stopping command channel on ::1#953
May 24 14:43:02 centos named[5526]: no longer listening on ::1#53
May 24 14:43:02 centos named[5526]: no longer listening on 127.0.0.1#53
May 24 14:43:02 centos named[5526]: exiting
May 24 14:43:05 centos named[6215]: starting BIND 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 -u named -c /etc/named.caching-nameserver.conf -t /var/named/chroot
May 24 14:43:05 centos named[6215]: adjusted limit on open files from 1024 to 1048576
May 24 14:43:05 centos named[6215]: found 1 CPU, using 1 worker thread
May 24 14:43:05 centos named[6215]: using up to 4096 sockets
May 24 14:43:05 centos named[6215]: loading configuration from &#039;/etc/named.caching-nameserver.conf&#039;
May 24 14:43:05 centos named[6215]: using default UDP/IPv4 port range: [1024, 65535]
May 24 14:43:05 centos named[6215]: using default UDP/IPv6 port range: [1024, 65535]
May 24 14:43:05 centos named[6215]: listening on IPv6 interface lo, ::1#53
May 24 14:43:05 centos named[6215]: listening on IPv4 interface lo, 127.0.0.1#53
May 24 14:43:05 centos named[6215]: command channel listening on 127.0.0.1#953
May 24 14:43:05 centos named[6215]: command channel listening on ::1#953
May 24 14:43:05 centos named[6215]: the working directory is not writable
May 24 14:43:05 centos named[6215]: zone 0.in-addr.arpa/IN/localhost_resolver: loaded serial 42
May 24 14:43:05 centos named[6215]: zone 0.0.127.in-addr.arpa/IN/localhost_resolver: loaded serial 1997022700
May 24 14:43:05 centos named[6215]: zone 255.in-addr.arpa/IN/localhost_resolver: loaded serial 42
May 24 14:43:05 centos named[6215]: zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa/IN/localhost_resolver: loaded serial 1997022700
May 24 14:43:05 centos named[6215]: zone localdomain/IN/localhost_resolver: loaded serial 42
May 24 14:43:05 centos named[6215]: zone localhost/IN/localhost_resolver: loaded serial 42
May 24 14:43:05 centos named[6215]: running
May 24 14:44:29 centos system-config-network[6302]: -+ //etc/modprobe.conf 	eth0 alias vmxnet
May 24 14:44:29 centos system-config-network[6302]: chmod 0644 //etc/sysconfig/networking/devices/ifcfg-eth0
May 24 14:44:29 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0
May 24 14:44:40 centos avahi-daemon[3721]: Withdrawing address record for 192.168.12.3 on eth0.
May 24 14:44:40 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.
May 24 14:44:40 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.
May 24 14:44:40 centos avahi-daemon[3721]: Interface eth0.IPv4 no longer relevant for mDNS.
May 24 14:44:40 centos avahi-daemon[3721]: Withdrawing address record for fe80::20c:29ff:fee8:6887 on eth0.
May 24 14:44:40 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.
May 24 14:44:40 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.
May 24 14:44:40 centos avahi-daemon[3721]: Interface eth0.IPv6 no longer relevant for mDNS.
May 24 14:44:42 centos avahi-daemon[3721]: New relevant interface eth0.IPv4 for mDNS.
May 24 14:44:42 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.
May 24 14:44:42 centos avahi-daemon[3721]: Registering new address record for 192.168.12.3 on eth0.
May 24 14:44:42 centos avahi-daemon[3721]: New relevant interface eth0.IPv6 for mDNS.
May 24 14:44:42 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.
May 24 14:44:42 centos avahi-daemon[3721]: Registering new address record for fe80::20c:29ff:fee8:6887 on eth0.
May 24 14:45:44 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0
May 24 14:49:38 centos last message repeated 2 times
May 24 14:49:39 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0
May 24 14:49:54 centos avahi-daemon[3721]: Withdrawing address record for 192.168.12.3 on eth0.
May 24 14:49:54 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.
May 24 14:49:54 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.
May 24 14:49:54 centos avahi-daemon[3721]: Interface eth0.IPv4 no longer relevant for mDNS.
May 24 14:49:54 centos avahi-daemon[3721]: Withdrawing address record for fe80::20c:29ff:fee8:6887 on eth0.
May 24 14:49:54 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.
May 24 14:49:54 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.
May 24 14:49:54 centos avahi-daemon[3721]: Interface eth0.IPv6 no longer relevant for mDNS.
May 24 14:49:56 centos avahi-daemon[3721]: New relevant interface eth0.IPv4 for mDNS.
May 24 14:49:56 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.
May 24 14:49:56 centos avahi-daemon[3721]: Registering new address record for 192.168.12.3 on eth0.
May 24 14:49:57 centos avahi-daemon[3721]: New relevant interface eth0.IPv6 for mDNS.
May 24 14:49:57 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.
May 24 14:49:57 centos avahi-daemon[3721]: Registering new address record for fe80::20c:29ff:fee8:6887 on eth0.
May 24 14:50:10 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0
May 24 14:50:11 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0
May 24 14:50:13 centos avahi-daemon[3721]: Withdrawing address record for 192.168.12.3 on eth0.
May 24 14:50:13 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.
May 24 14:50:13 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.
May 24 14:50:13 centos avahi-daemon[3721]: Interface eth0.IPv4 no longer relevant for mDNS.
May 24 14:50:13 centos avahi-daemon[3721]: Withdrawing address record for fe80::20c:29ff:fee8:6887 on eth0.
May 24 14:50:13 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.
May 24 14:50:13 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.
May 24 14:50:13 centos avahi-daemon[3721]: Interface eth0.IPv6 no longer relevant for mDNS.
May 24 14:50:15 centos avahi-daemon[3721]: New relevant interface eth0.IPv4 for mDNS.
May 24 14:50:15 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.
May 24 14:50:15 centos avahi-daemon[3721]: Registering new address record for 192.168.12.3 on eth0.
May 24 14:50:15 centos avahi-daemon[3721]: New relevant interface eth0.IPv6 for mDNS.
May 24 14:50:15 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.
May 24 14:50:15 centos avahi-daemon[3721]: Registering new address record for fe80::20c:29ff:fee8:6887 on eth0.
May 24 14:50:44 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0
May 24 14:50:45 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0
May 24 14:50:46 centos avahi-daemon[3721]: Withdrawing address record for 192.168.12.3 on eth0.
May 24 14:50:46 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.
May 24 14:50:46 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.
May 24 14:50:46 centos avahi-daemon[3721]: Interface eth0.IPv4 no longer relevant for mDNS.
May 24 14:50:46 centos avahi-daemon[3721]: Withdrawing address record for fe80::20c:29ff:fee8:6887 on eth0.
May 24 14:50:46 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.
May 24 14:50:46 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.
May 24 14:50:46 centos avahi-daemon[3721]: Interface eth0.IPv6 no longer relevant for mDNS.
May 24 14:50:49 centos avahi-daemon[3721]: New relevant interface eth0.IPv4 for mDNS.
May 24 14:50:49 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.
May 24 14:50:49 centos avahi-daemon[3721]: Registering new address record for 192.168.12.3 on eth0.
May 24 14:50:49 centos avahi-daemon[3721]: New relevant interface eth0.IPv6 for mDNS.
May 24 14:50:49 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.
May 24 14:50:49 centos avahi-daemon[3721]: Registering new address record for fe80::20c:29ff:fee8:6887 on eth0.
*******************************

and when I 

ping localhost

it pings.

small mistake or configuration somewhere</description>
		<content:encoded><![CDATA[<p>vi /etc/resolv.conf</p>
<p>*********************<br />
search saudivalves.com</p>
<p>nameserver 192.168.12.1<br />
*************************8</p>
<p>and the vi /var/log/messages</p>
<p>*******************************<br />
May 24 14:31:56 centos named[5526]: starting BIND 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 -u named -c /etc/named.caching-nameserver.conf -t /var/named/chroot<br />
May 24 14:31:56 centos named[5526]: adjusted limit on open files from 1024 to 1048576<br />
May 24 14:31:56 centos named[5526]: found 1 CPU, using 1 worker thread<br />
May 24 14:31:56 centos named[5526]: using up to 4096 sockets<br />
May 24 14:31:56 centos named[5526]: loading configuration from &#8216;/etc/named.caching-nameserver.conf&#8217;<br />
May 24 14:31:56 centos named[5526]: using default UDP/IPv4 port range: [1024, 65535]<br />
May 24 14:31:56 centos named[5526]: using default UDP/IPv6 port range: [1024, 65535]<br />
May 24 14:31:56 centos named[5526]: listening on IPv6 interface lo, ::1#53<br />
May 24 14:31:56 centos named[5526]: listening on IPv4 interface lo, 127.0.0.1#53<br />
May 24 14:31:56 centos named[5526]: command channel listening on 127.0.0.1#953<br />
May 24 14:31:56 centos named[5526]: command channel listening on ::1#953<br />
May 24 14:31:56 centos named[5526]: the working directory is not writable<br />
May 24 14:31:56 centos named[5526]: zone 0.in-addr.arpa/IN/localhost_resolver: loaded serial 42<br />
May 24 14:31:56 centos named[5526]: zone 0.0.127.in-addr.arpa/IN/localhost_resolver: loaded serial 1997022700<br />
May 24 14:31:56 centos named[5526]: zone 255.in-addr.arpa/IN/localhost_resolver: loaded serial 42<br />
May 24 14:31:56 centos named[5526]: zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa/IN/localhost_resolver: loaded serial 1997022700<br />
May 24 14:31:56 centos named[5526]: zone localdomain/IN/localhost_resolver: loaded serial 42<br />
May 24 14:31:56 centos named[5526]: zone localhost/IN/localhost_resolver: loaded serial 42<br />
May 24 14:31:56 centos named[5526]: running<br />
May 24 14:38:00 centos avahi-daemon[3721]: Invalid query packet.<br />
May 24 14:42:39 centos last message repeated 6 times<br />
May 24 14:42:40 centos last message repeated 2 times<br />
May 24 14:42:54 centos avahi-daemon[3721]: Withdrawing address record for 192.168.12.3 on eth0.<br />
May 24 14:42:54 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.<br />
May 24 14:42:54 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.<br />
May 24 14:42:54 centos avahi-daemon[3721]: Interface eth0.IPv4 no longer relevant for mDNS.<br />
May 24 14:42:54 centos avahi-daemon[3721]: Withdrawing address record for fe80::20c:29ff:fee8:6887 on eth0.<br />
May 24 14:42:54 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.<br />
May 24 14:42:54 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.<br />
May 24 14:42:54 centos avahi-daemon[3721]: Interface eth0.IPv6 no longer relevant for mDNS.<br />
May 24 14:42:56 centos avahi-daemon[3721]: New relevant interface eth0.IPv6 for mDNS.<br />
May 24 14:42:56 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.<br />
May 24 14:42:56 centos avahi-daemon[3721]: Registering new address record for fe80::20c:29ff:fee8:6887 on eth0.<br />
May 24 14:42:59 centos avahi-daemon[3721]: New relevant interface eth0.IPv4 for mDNS.<br />
May 24 14:42:59 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.<br />
May 24 14:42:59 centos avahi-daemon[3721]: Registering new address record for 192.168.12.3 on eth0.<br />
May 24 14:43:02 centos named[5526]: shutting down: flushing changes<br />
May 24 14:43:02 centos named[5526]: stopping command channel on 127.0.0.1#953<br />
May 24 14:43:02 centos named[5526]: stopping command channel on ::1#953<br />
May 24 14:43:02 centos named[5526]: no longer listening on ::1#53<br />
May 24 14:43:02 centos named[5526]: no longer listening on 127.0.0.1#53<br />
May 24 14:43:02 centos named[5526]: exiting<br />
May 24 14:43:05 centos named[6215]: starting BIND 9.3.6-P1-RedHat-9.3.6-4.P1.el5_4.2 -u named -c /etc/named.caching-nameserver.conf -t /var/named/chroot<br />
May 24 14:43:05 centos named[6215]: adjusted limit on open files from 1024 to 1048576<br />
May 24 14:43:05 centos named[6215]: found 1 CPU, using 1 worker thread<br />
May 24 14:43:05 centos named[6215]: using up to 4096 sockets<br />
May 24 14:43:05 centos named[6215]: loading configuration from &#8216;/etc/named.caching-nameserver.conf&#8217;<br />
May 24 14:43:05 centos named[6215]: using default UDP/IPv4 port range: [1024, 65535]<br />
May 24 14:43:05 centos named[6215]: using default UDP/IPv6 port range: [1024, 65535]<br />
May 24 14:43:05 centos named[6215]: listening on IPv6 interface lo, ::1#53<br />
May 24 14:43:05 centos named[6215]: listening on IPv4 interface lo, 127.0.0.1#53<br />
May 24 14:43:05 centos named[6215]: command channel listening on 127.0.0.1#953<br />
May 24 14:43:05 centos named[6215]: command channel listening on ::1#953<br />
May 24 14:43:05 centos named[6215]: the working directory is not writable<br />
May 24 14:43:05 centos named[6215]: zone 0.in-addr.arpa/IN/localhost_resolver: loaded serial 42<br />
May 24 14:43:05 centos named[6215]: zone 0.0.127.in-addr.arpa/IN/localhost_resolver: loaded serial 1997022700<br />
May 24 14:43:05 centos named[6215]: zone 255.in-addr.arpa/IN/localhost_resolver: loaded serial 42<br />
May 24 14:43:05 centos named[6215]: zone 0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa/IN/localhost_resolver: loaded serial 1997022700<br />
May 24 14:43:05 centos named[6215]: zone localdomain/IN/localhost_resolver: loaded serial 42<br />
May 24 14:43:05 centos named[6215]: zone localhost/IN/localhost_resolver: loaded serial 42<br />
May 24 14:43:05 centos named[6215]: running<br />
May 24 14:44:29 centos system-config-network[6302]: -+ //etc/modprobe.conf 	eth0 alias vmxnet<br />
May 24 14:44:29 centos system-config-network[6302]: chmod 0644 //etc/sysconfig/networking/devices/ifcfg-eth0<br />
May 24 14:44:29 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0<br />
May 24 14:44:40 centos avahi-daemon[3721]: Withdrawing address record for 192.168.12.3 on eth0.<br />
May 24 14:44:40 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.<br />
May 24 14:44:40 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.<br />
May 24 14:44:40 centos avahi-daemon[3721]: Interface eth0.IPv4 no longer relevant for mDNS.<br />
May 24 14:44:40 centos avahi-daemon[3721]: Withdrawing address record for fe80::20c:29ff:fee8:6887 on eth0.<br />
May 24 14:44:40 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.<br />
May 24 14:44:40 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.<br />
May 24 14:44:40 centos avahi-daemon[3721]: Interface eth0.IPv6 no longer relevant for mDNS.<br />
May 24 14:44:42 centos avahi-daemon[3721]: New relevant interface eth0.IPv4 for mDNS.<br />
May 24 14:44:42 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.<br />
May 24 14:44:42 centos avahi-daemon[3721]: Registering new address record for 192.168.12.3 on eth0.<br />
May 24 14:44:42 centos avahi-daemon[3721]: New relevant interface eth0.IPv6 for mDNS.<br />
May 24 14:44:42 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.<br />
May 24 14:44:42 centos avahi-daemon[3721]: Registering new address record for fe80::20c:29ff:fee8:6887 on eth0.<br />
May 24 14:45:44 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0<br />
May 24 14:49:38 centos last message repeated 2 times<br />
May 24 14:49:39 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0<br />
May 24 14:49:54 centos avahi-daemon[3721]: Withdrawing address record for 192.168.12.3 on eth0.<br />
May 24 14:49:54 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.<br />
May 24 14:49:54 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.<br />
May 24 14:49:54 centos avahi-daemon[3721]: Interface eth0.IPv4 no longer relevant for mDNS.<br />
May 24 14:49:54 centos avahi-daemon[3721]: Withdrawing address record for fe80::20c:29ff:fee8:6887 on eth0.<br />
May 24 14:49:54 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.<br />
May 24 14:49:54 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.<br />
May 24 14:49:54 centos avahi-daemon[3721]: Interface eth0.IPv6 no longer relevant for mDNS.<br />
May 24 14:49:56 centos avahi-daemon[3721]: New relevant interface eth0.IPv4 for mDNS.<br />
May 24 14:49:56 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.<br />
May 24 14:49:56 centos avahi-daemon[3721]: Registering new address record for 192.168.12.3 on eth0.<br />
May 24 14:49:57 centos avahi-daemon[3721]: New relevant interface eth0.IPv6 for mDNS.<br />
May 24 14:49:57 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.<br />
May 24 14:49:57 centos avahi-daemon[3721]: Registering new address record for fe80::20c:29ff:fee8:6887 on eth0.<br />
May 24 14:50:10 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0<br />
May 24 14:50:11 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0<br />
May 24 14:50:13 centos avahi-daemon[3721]: Withdrawing address record for 192.168.12.3 on eth0.<br />
May 24 14:50:13 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.<br />
May 24 14:50:13 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.<br />
May 24 14:50:13 centos avahi-daemon[3721]: Interface eth0.IPv4 no longer relevant for mDNS.<br />
May 24 14:50:13 centos avahi-daemon[3721]: Withdrawing address record for fe80::20c:29ff:fee8:6887 on eth0.<br />
May 24 14:50:13 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.<br />
May 24 14:50:13 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.<br />
May 24 14:50:13 centos avahi-daemon[3721]: Interface eth0.IPv6 no longer relevant for mDNS.<br />
May 24 14:50:15 centos avahi-daemon[3721]: New relevant interface eth0.IPv4 for mDNS.<br />
May 24 14:50:15 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.<br />
May 24 14:50:15 centos avahi-daemon[3721]: Registering new address record for 192.168.12.3 on eth0.<br />
May 24 14:50:15 centos avahi-daemon[3721]: New relevant interface eth0.IPv6 for mDNS.<br />
May 24 14:50:15 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.<br />
May 24 14:50:15 centos avahi-daemon[3721]: Registering new address record for fe80::20c:29ff:fee8:6887 on eth0.<br />
May 24 14:50:44 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0<br />
May 24 14:50:45 centos nm-system-settings:    ifcfg-rh: updating /etc/sysconfig/network-scripts/ifcfg-eth0<br />
May 24 14:50:46 centos avahi-daemon[3721]: Withdrawing address record for 192.168.12.3 on eth0.<br />
May 24 14:50:46 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.<br />
May 24 14:50:46 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.<br />
May 24 14:50:46 centos avahi-daemon[3721]: Interface eth0.IPv4 no longer relevant for mDNS.<br />
May 24 14:50:46 centos avahi-daemon[3721]: Withdrawing address record for fe80::20c:29ff:fee8:6887 on eth0.<br />
May 24 14:50:46 centos avahi-daemon[3721]: Leaving mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.<br />
May 24 14:50:46 centos avahi-daemon[3721]: iface.c: interface_mdns_mcast_join() called but no local address available.<br />
May 24 14:50:46 centos avahi-daemon[3721]: Interface eth0.IPv6 no longer relevant for mDNS.<br />
May 24 14:50:49 centos avahi-daemon[3721]: New relevant interface eth0.IPv4 for mDNS.<br />
May 24 14:50:49 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.12.3.<br />
May 24 14:50:49 centos avahi-daemon[3721]: Registering new address record for 192.168.12.3 on eth0.<br />
May 24 14:50:49 centos avahi-daemon[3721]: New relevant interface eth0.IPv6 for mDNS.<br />
May 24 14:50:49 centos avahi-daemon[3721]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::20c:29ff:fee8:6887.<br />
May 24 14:50:49 centos avahi-daemon[3721]: Registering new address record for fe80::20c:29ff:fee8:6887 on eth0.<br />
*******************************</p>
<p>and when I </p>
<p>ping localhost</p>
<p>it pings.</p>
<p>small mistake or configuration somewhere</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sohail Riaz</title>
		<link>http://www.sohailriaz.com/how-to-configure-dynamic-dns-fedora-core-4-setup/comment-page-1/#comment-908</link>
		<dc:creator>Sohail Riaz</dc:creator>
		<pubDate>Mon, 24 May 2010 11:09:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.sohailriaz.com/?p=9#comment-908</guid>
		<description>@rashid: did you give right nameserver in your /etc/resolve.conf.....
and what /var/log/messages says when you load your named
--------
Regards,</description>
		<content:encoded><![CDATA[<p>@rashid: did you give right nameserver in your /etc/resolve.conf&#8230;..<br />
and what /var/log/messages says when you load your named<br />
&#8212;&#8212;&#8211;<br />
Regards,</p>
]]></content:encoded>
	</item>
</channel>
</rss>
