<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: DNS configuration with redhat9 in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566534#M87303</link>
    <description>You want to configure RH9 to use a DNS server, or you want to configure bind (named) to serve out domains?&lt;BR /&gt;&lt;BR /&gt;If the first, you need to log into the system as the 'root' user, and modify the file '/etc/resolv.conf', adding a line similar to:&lt;BR /&gt;&lt;BR /&gt;nameserver 192.168.1.254&lt;BR /&gt;&lt;BR /&gt;where '192.168.1.254' is the DNS server IP provided by your ISP.&lt;BR /&gt;&lt;BR /&gt;If you mean the latter, then you need to modify the '/etc/named.conf' file, adding in a section similar to:&lt;BR /&gt;&lt;BR /&gt;zone "tendai.co.zw" IN {&lt;BR /&gt;        type master;&lt;BR /&gt;        file "tendai.co.zw.zone";&lt;BR /&gt;        allow-update { none; };&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;From there, you need to create a file called '/var/named/tendai.co.zw.zone', and put the zone information in it, similar to:&lt;BR /&gt;&lt;BR /&gt;$TTL    86400&lt;BR /&gt;$ORIGIN localhost.&lt;BR /&gt;@                       1D IN SOA       @ root (&lt;BR /&gt;                                        42              ; serial (d. adams)&lt;BR /&gt;                                        3H              ; refresh&lt;BR /&gt;                                        15M             ; retry&lt;BR /&gt;                                        1W              ; expiry&lt;BR /&gt;                                        1D )            ; minimum&lt;BR /&gt;&lt;BR /&gt;                        1D IN NS        @&lt;BR /&gt;                        1D IN A         127.0.0.1&lt;BR /&gt;&lt;BR /&gt;followed by A records for individual machines within the domain, and MX for mail exchangers.&lt;BR /&gt;&lt;BR /&gt;From here, you really need to read some information about how to do more indepth configuration, start with &lt;A href="https://www.redhat.com/docs/manuals/linux/RHL-9-Manual/ref-guide/ch-bind.html" target="_blank"&gt;https://www.redhat.com/docs/manuals/linux/RHL-9-Manual/ref-guide/ch-bind.html&lt;/A&gt; and then look at the RFC's (1033 and 1034).&lt;BR /&gt;&lt;BR /&gt;After that's all done, all you need to do is start the service:&lt;BR /&gt;&lt;BR /&gt;service named start&lt;BR /&gt;chkconfig named on&lt;BR /&gt;&lt;BR /&gt;unf.. ;)</description>
    <pubDate>Sun, 19 Jun 2005 19:11:07 GMT</pubDate>
    <dc:creator>Stuart Browne</dc:creator>
    <dc:date>2005-06-19T19:11:07Z</dc:date>
    <item>
      <title>DNS configuration with redhat9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566533#M87302</link>
      <description>Guys, iam new to Linux networking. I want to configure DNS using redhat9 from scratch. I just want to think of a name, e.g tendai.co.zw as the dns name and then configure it. Can someone give me a simple step by step approach so that i will be able to test my dns using nslookup or dig.</description>
      <pubDate>Sun, 19 Jun 2005 08:46:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566533#M87302</guid>
      <dc:creator>Tendai Mataranyika</dc:creator>
      <dc:date>2005-06-19T08:46:43Z</dc:date>
    </item>
    <item>
      <title>Re: DNS configuration with redhat9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566534#M87303</link>
      <description>You want to configure RH9 to use a DNS server, or you want to configure bind (named) to serve out domains?&lt;BR /&gt;&lt;BR /&gt;If the first, you need to log into the system as the 'root' user, and modify the file '/etc/resolv.conf', adding a line similar to:&lt;BR /&gt;&lt;BR /&gt;nameserver 192.168.1.254&lt;BR /&gt;&lt;BR /&gt;where '192.168.1.254' is the DNS server IP provided by your ISP.&lt;BR /&gt;&lt;BR /&gt;If you mean the latter, then you need to modify the '/etc/named.conf' file, adding in a section similar to:&lt;BR /&gt;&lt;BR /&gt;zone "tendai.co.zw" IN {&lt;BR /&gt;        type master;&lt;BR /&gt;        file "tendai.co.zw.zone";&lt;BR /&gt;        allow-update { none; };&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;From there, you need to create a file called '/var/named/tendai.co.zw.zone', and put the zone information in it, similar to:&lt;BR /&gt;&lt;BR /&gt;$TTL    86400&lt;BR /&gt;$ORIGIN localhost.&lt;BR /&gt;@                       1D IN SOA       @ root (&lt;BR /&gt;                                        42              ; serial (d. adams)&lt;BR /&gt;                                        3H              ; refresh&lt;BR /&gt;                                        15M             ; retry&lt;BR /&gt;                                        1W              ; expiry&lt;BR /&gt;                                        1D )            ; minimum&lt;BR /&gt;&lt;BR /&gt;                        1D IN NS        @&lt;BR /&gt;                        1D IN A         127.0.0.1&lt;BR /&gt;&lt;BR /&gt;followed by A records for individual machines within the domain, and MX for mail exchangers.&lt;BR /&gt;&lt;BR /&gt;From here, you really need to read some information about how to do more indepth configuration, start with &lt;A href="https://www.redhat.com/docs/manuals/linux/RHL-9-Manual/ref-guide/ch-bind.html" target="_blank"&gt;https://www.redhat.com/docs/manuals/linux/RHL-9-Manual/ref-guide/ch-bind.html&lt;/A&gt; and then look at the RFC's (1033 and 1034).&lt;BR /&gt;&lt;BR /&gt;After that's all done, all you need to do is start the service:&lt;BR /&gt;&lt;BR /&gt;service named start&lt;BR /&gt;chkconfig named on&lt;BR /&gt;&lt;BR /&gt;unf.. ;)</description>
      <pubDate>Sun, 19 Jun 2005 19:11:07 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566534#M87303</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-06-19T19:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: DNS configuration with redhat9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566535#M87304</link>
      <description>Thanks for the reply Stuart, but after following exactly what u have said, after restarting named, if i try to test the dns by using nslookup e.g nslookup &lt;BR /&gt;                      tendai.co.zw&lt;BR /&gt;&lt;BR /&gt;The result is as follows:&lt;BR /&gt;&lt;BR /&gt;Server:    10.114.39.71&lt;BR /&gt;Address:   10.114.39.71#53&lt;BR /&gt;&lt;BR /&gt;**server can't  find tendai.co.zw: SERVFAIL&lt;BR /&gt;&lt;BR /&gt;where 10.114.39.71 is the ip address of my linux box.&lt;BR /&gt;What then am i suppose to do?            &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 20 Jun 2005 03:18:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566535#M87304</guid>
      <dc:creator>Tendai Mataranyika</dc:creator>
      <dc:date>2005-06-20T03:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: DNS configuration with redhat9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566536#M87305</link>
      <description>10.114.39.71 is listed in your '/etc/resolv.conf'.&lt;BR /&gt;&lt;BR /&gt;If you've configured your name server, and restarted it, you'll need to tell your Linux box to use your DNS server, so do the first thing I said.  Modify '/etc/resolv.conf' and point it to either the ethernet address of the box, or to '127.0.0.1' (localhost), then try your 'nslookup' or 'dig' again.</description>
      <pubDate>Mon, 20 Jun 2005 04:52:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566536#M87305</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2005-06-20T04:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: DNS configuration with redhat9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566537#M87306</link>
      <description>Hi Tendai,&lt;BR /&gt;&lt;BR /&gt;I think you have to enhance your knowledge about dns, here you have some helpfull information that may help you to configure youe server.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.linuxhomenetworking.com/linux-hn/dns-static.htm" target="_blank"&gt;http://www.linuxhomenetworking.com/linux-hn/dns-static.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Try to look all documentation, it's very good for beginners, and for advanced users too.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;xyko</description>
      <pubDate>Mon, 20 Jun 2005 08:09:14 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566537#M87306</guid>
      <dc:creator>xyko_1</dc:creator>
      <dc:date>2005-06-20T08:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: DNS configuration with redhat9</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566538#M87307</link>
      <description>You must have network connectivity to the servers defined in /etc/resolv.conf&lt;BR /&gt;&lt;BR /&gt;As a general reference, this document is quite useful at managing the entire configuration.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.ibiblio.org/pub/Linux/docs/HOWTO/other-formats/html/DNS-HOWTO-html.tar.gz" target="_blank"&gt;http://www.ibiblio.org/pub/Linux/docs/HOWTO/other-formats/html/DNS-HOWTO-html.tar.gz&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://www.ibiblio.org/pub/Linux/docs/HOWTO/other-formats/html_single/DNS-HOWTO.html" target="_blank"&gt;http://www.ibiblio.org/pub/Linux/docs/HOWTO/other-formats/html_single/DNS-HOWTO.html&lt;/A&gt;</description>
      <pubDate>Mon, 20 Jun 2005 09:03:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dns-configuration-with-redhat9/m-p/3566538#M87307</guid>
      <dc:creator>Steven E. Protter</dc:creator>
      <dc:date>2005-06-20T09:03:25Z</dc:date>
    </item>
  </channel>
</rss>

