<?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: BIND Zone Help!! in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804762#M582872</link>
    <description>It would take a lot less time to critique what you've done so far than to write conf and zone files for you.  Maybe someone else has the time right now.  But they'll probably need to know your BIND version to help.&lt;BR /&gt;&lt;BR /&gt;Among many excellent BIND resources on the Internet is the "Setting Up a Name Server" chapter in Mark Burgess's "Principles of System Administration" at &lt;A href="http://www.iu.hio.no/~mark/sysadmin/SystemAdmin_toc.html" target="_blank"&gt;http://www.iu.hio.no/~mark/sysadmin/SystemAdmin_toc.html&lt;/A&gt;&lt;BR /&gt;It includes sample zone and conf files for named 8.x.</description>
    <pubDate>Thu, 12 Sep 2002 11:08:44 GMT</pubDate>
    <dc:creator>W.C. Epperson</dc:creator>
    <dc:date>2002-09-12T11:08:44Z</dc:date>
    <item>
      <title>BIND Zone Help!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804761#M582871</link>
      <description>Hello all.&lt;BR /&gt;I seem to be having a terrible difficulty setting up my BIND stuff. I have 2 domains (say domain1.org &amp;amp; domain2.com) that will be pointing to the same server, and just wondering what's the best way to do it. I would post what I have so far and ask why it's not working, but I figure I'll just start from scratch.&lt;BR /&gt;So the question is, what's the best way to set all this stuff up?? Input as to what the zone files &amp;amp; the named.conf should look like would be great! &lt;BR /&gt;Thanx</description>
      <pubDate>Thu, 12 Sep 2002 04:40:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804761#M582871</guid>
      <dc:creator>Brenton Bartel</dc:creator>
      <dc:date>2002-09-12T04:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: BIND Zone Help!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804762#M582872</link>
      <description>It would take a lot less time to critique what you've done so far than to write conf and zone files for you.  Maybe someone else has the time right now.  But they'll probably need to know your BIND version to help.&lt;BR /&gt;&lt;BR /&gt;Among many excellent BIND resources on the Internet is the "Setting Up a Name Server" chapter in Mark Burgess's "Principles of System Administration" at &lt;A href="http://www.iu.hio.no/~mark/sysadmin/SystemAdmin_toc.html" target="_blank"&gt;http://www.iu.hio.no/~mark/sysadmin/SystemAdmin_toc.html&lt;/A&gt;&lt;BR /&gt;It includes sample zone and conf files for named 8.x.</description>
      <pubDate>Thu, 12 Sep 2002 11:08:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804762#M582872</guid>
      <dc:creator>W.C. Epperson</dc:creator>
      <dc:date>2002-09-12T11:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: BIND Zone Help!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804763#M582873</link>
      <description>Alrighty, I am currently running BIND 8.something, here's what I have thus far (names &amp;amp; IPs changed):&lt;BR /&gt;&lt;BR /&gt;// named.conf:&lt;BR /&gt;options {&lt;BR /&gt;        directory "/var/named";&lt;BR /&gt; * port 53;&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "." {&lt;BR /&gt;        type hint;&lt;BR /&gt;        file "root.hints";&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "0.0.127.in-addr.arpa" {&lt;BR /&gt;        type master;&lt;BR /&gt;        file "named.local";&lt;BR /&gt;        allow-update { none; };&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "letrabb.com" {&lt;BR /&gt;        type master;&lt;BR /&gt;        notify no;&lt;BR /&gt;        file "mydomain.com";&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;zone "11.22.33.in-addr.arpa" {&lt;BR /&gt;      type master;&lt;BR /&gt;      notify no;&lt;BR /&gt;      file "mydomain.addr";&lt;BR /&gt;};&lt;BR /&gt;&lt;BR /&gt;key "key" {&lt;BR /&gt;        algorithm hmac-md5;&lt;BR /&gt;        secret "mysecretkey";&lt;BR /&gt;};&lt;BR /&gt;//-----------&lt;BR /&gt;//mydomain.com zone:&lt;BR /&gt;$TTL    86400&lt;BR /&gt;@       IN      SOA     dns1.mydomain.com. brentonb.uvic.ca. (&lt;BR /&gt;                        2002091103 ; Serial&lt;BR /&gt;                        28800      ; Refresh&lt;BR /&gt;                        14400      ; Retry&lt;BR /&gt;                        3600000    ; Expire&lt;BR /&gt;                        86400)     ; Minimum&lt;BR /&gt;&lt;BR /&gt;                NS      dns1.mydomain.com.&lt;BR /&gt;                MX      10 mail&lt;BR /&gt;&lt;BR /&gt;localhost       A       127.0.0.1&lt;BR /&gt;&lt;BR /&gt;mydomain.com.    A       11.22.33.44&lt;BR /&gt;mail            A       11.22.33.44&lt;BR /&gt;ftp             A       11.22.33.44&lt;BR /&gt;www             A       11.22.33.44&lt;BR /&gt;                CNAME   11.22.33.44&lt;BR /&gt;&lt;BR /&gt;// -----&lt;BR /&gt;// mydomain.addr zone&lt;BR /&gt;$TTL    86400&lt;BR /&gt;@       IN      SOA     mydomain.com. brentonb.uvic.ca. (&lt;BR /&gt;                        2002091101 ; Serial&lt;BR /&gt;                        28800      ; Refresh&lt;BR /&gt;                        14400      ; Retry&lt;BR /&gt;                        3600000    ; Expire&lt;BR /&gt;                        86400)     ; Minimum&lt;BR /&gt;&lt;BR /&gt;                NS      dns1.mydomain.com.&lt;BR /&gt;160             PTR     mydomain.com.&lt;BR /&gt;&lt;BR /&gt;I have no idea where it's goin wrong, but it is. Any help would be grand.&lt;BR /&gt;Thank you</description>
      <pubDate>Thu, 12 Sep 2002 15:38:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804763#M582873</guid>
      <dc:creator>Brenton Bartel</dc:creator>
      <dc:date>2002-09-12T15:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: BIND Zone Help!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804764#M582874</link>
      <description>The first thing that jumps out is that there's no "A" record for dns1.mydomain.com, so it's not defined by its own authoritative server.  The next is that there are both "A" and "CNAME" records for mydomain.com, which is illegal.  Finally, none of the Resource Records (A, MX, CNAME, PTR) have a "class" field (IN), which may be presumed (I'd have to do a bit of reading and experimentation to say for sure), but I always put it in explicitly, e.g.&lt;BR /&gt;mail IN A 11.22.33.44Also, you could use CNAME instead of A records for ftp.mydomain.com and &lt;A href="http://www.mydomain.com." target="_blank"&gt;www.mydomain.com.&lt;/A&gt;  It's recommended that an MX not point to a CNAME, so you should leave mail.mydomain.com the way it is.&lt;BR /&gt;&lt;BR /&gt;Just a quick once-over.  Post what you fixed and what results you get when you load the zones and when you try to query them and we can go another round if it's not fixed.  One of the frustrating things about DNS is that bad zone data often makes things work weirdly instead of definitively breaking.&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Sep 2002 11:50:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804764#M582874</guid>
      <dc:creator>W.C. Epperson</dc:creator>
      <dc:date>2002-09-13T11:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: BIND Zone Help!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804765#M582875</link>
      <description>OH:  Your inverse zone would be:&lt;BR /&gt;33.22.11.in-addr.arpa</description>
      <pubDate>Fri, 13 Sep 2002 12:24:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804765#M582875</guid>
      <dc:creator>W.C. Epperson</dc:creator>
      <dc:date>2002-09-13T12:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: BIND Zone Help!!</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804766#M582876</link>
      <description>These students have short attention spans.  I'm too old to care about the points, but it would have been nice to know if he got the zone working.  Sigh.</description>
      <pubDate>Fri, 20 Sep 2002 16:07:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/bind-zone-help/m-p/2804766#M582876</guid>
      <dc:creator>W.C. Epperson</dc:creator>
      <dc:date>2002-09-20T16:07:58Z</dc:date>
    </item>
  </channel>
</rss>

