<?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 Server: UnKnown in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/dns-server-unknown/m-p/3742204#M85913</link>
    <description>"Can't find server name for address 202.X.X.10: Non-existent domain"&lt;BR /&gt;&lt;BR /&gt;It means that there is no PTR record for 202.X.X.10.in-addr.arpa. Without a reverse lookup zone configured you will see this error. To resolve it, create a reverse lookup zone on your DNS server.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sergejs&lt;BR /&gt;</description>
    <pubDate>Thu, 02 Mar 2006 03:32:44 GMT</pubDate>
    <dc:creator>Sergejs Svitnevs</dc:creator>
    <dc:date>2006-03-02T03:32:44Z</dc:date>
    <item>
      <title>DNS Server: UnKnown</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dns-server-unknown/m-p/3742202#M85911</link>
      <description>hi&lt;BR /&gt;&lt;BR /&gt;I've setuped a public DNS-Server BIND 9 on linux Debian Sarge.&lt;BR /&gt;it seems to work, but I have a following problem:&lt;BR /&gt;&lt;BR /&gt;if I try lookup from an external client, then I get:&lt;BR /&gt;&lt;BR /&gt;C:\&amp;gt;nslookup google.com&lt;BR /&gt;*** Can't find server name for address 202.X.X.10: Non-existent domain&lt;BR /&gt;*** Default servers are not available&lt;BR /&gt;Server: UnKnown&lt;BR /&gt;Address: 202.X.X.10&lt;BR /&gt;&lt;BR /&gt;Non-authoritative answer:&lt;BR /&gt;Name: google.com&lt;BR /&gt;Addresses: 72.14.207.99, 64.233.167.99, 64.233.187.99&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;my DNS-Server is ext.domain.net&lt;BR /&gt;the domain: domain.net ist hosted at the moment on other DNS-Server,&lt;BR /&gt;but I'd like to change it in the future.&lt;BR /&gt;my DNS-Server should be responsible for this Master Zone.&lt;BR /&gt;&lt;BR /&gt;I'd like to get the answer from my DNS-Server: &lt;BR /&gt;domain.net or ext.domain.net &lt;BR /&gt;and not the answer Server: UnKnown&lt;BR /&gt;&lt;BR /&gt;I've tried already to setup a new Master Zone for the domain: domain.net &lt;BR /&gt;with webmin in named.conf.local:&lt;BR /&gt;&lt;BR /&gt;zone "domain.net" {&lt;BR /&gt; type master;&lt;BR /&gt; file "/etc/bind/domain.net.hosts";&lt;BR /&gt; };&lt;BR /&gt;&lt;BR /&gt;but still doesn't work.&lt;BR /&gt;&lt;BR /&gt;knows someone howto solve this problem ?</description>
      <pubDate>Wed, 01 Mar 2006 20:48:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dns-server-unknown/m-p/3742202#M85911</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2006-03-01T20:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: DNS Server: UnKnown</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dns-server-unknown/m-p/3742203#M85912</link>
      <description>Who's doing the reverse DNS for the 202.X.X subnet?</description>
      <pubDate>Thu, 02 Mar 2006 03:06:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dns-server-unknown/m-p/3742203#M85912</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2006-03-02T03:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: DNS Server: UnKnown</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dns-server-unknown/m-p/3742204#M85913</link>
      <description>"Can't find server name for address 202.X.X.10: Non-existent domain"&lt;BR /&gt;&lt;BR /&gt;It means that there is no PTR record for 202.X.X.10.in-addr.arpa. Without a reverse lookup zone configured you will see this error. To resolve it, create a reverse lookup zone on your DNS server.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sergejs&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Mar 2006 03:32:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dns-server-unknown/m-p/3742204#M85913</guid>
      <dc:creator>Sergejs Svitnevs</dc:creator>
      <dc:date>2006-03-02T03:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: DNS Server: UnKnown</title>
      <link>https://community.hpe.com/t5/operating-system-linux/dns-server-unknown/m-p/3742205#M85914</link>
      <description>thanks, it seems to work now !&lt;BR /&gt;&lt;BR /&gt;I've done following using the webmin:&lt;BR /&gt;&lt;BR /&gt;1.) first I've created a new reverse master zone:&lt;BR /&gt;&lt;BR /&gt;zone "202.X.X.in-addr.arpa" {&lt;BR /&gt;   type master;&lt;BR /&gt;   file "/etc/bind/202.X.X.rev";&lt;BR /&gt;        notify yes;&lt;BR /&gt;        allow-query { any; };   &lt;BR /&gt;   };&lt;BR /&gt;&lt;BR /&gt;2.) next step, I've created a master zone for my dns server ext.domain.net:&lt;BR /&gt;&lt;BR /&gt;zone "domain.net" {&lt;BR /&gt;   type master;&lt;BR /&gt;   file "/etc/bind/domain.net.hosts";&lt;BR /&gt;        notify yes;&lt;BR /&gt;        allow-query { any; };   &lt;BR /&gt;   };&lt;BR /&gt;&lt;BR /&gt;3.) I've opened the zone master zone: domain.net, clicked on Address &lt;BR /&gt;and I've put following:&lt;BR /&gt;&lt;BR /&gt;ext.domain.net.    Default    202.X.X.10&lt;BR /&gt;domain.net.        Default    202.X.X.10&lt;BR /&gt;&lt;A href="http://www.domain.net." target="_blank"&gt;www.domain.net.&lt;/A&gt;    Default    202.X.X.10&lt;BR /&gt;&lt;BR /&gt;now I have:&lt;BR /&gt;&lt;BR /&gt;$ttl 38400&lt;BR /&gt;domain.net.   IN   SOA   ext.domain.net. postmaster.domain.net. (&lt;BR /&gt;         1141342034&lt;BR /&gt;         10800&lt;BR /&gt;         3600&lt;BR /&gt;         604800&lt;BR /&gt;         38400 )&lt;BR /&gt;domain.net.   IN   NS   ext.domain.net.&lt;BR /&gt;ext.domain.net.   IN   A   202.X.X.10&lt;BR /&gt;domain.net.   IN   A   202.X.X.10&lt;BR /&gt;&lt;BR /&gt;I get from the client now:&lt;BR /&gt;&lt;BR /&gt;C:\&amp;gt;nslookup &lt;A href="http://www.domain.net" target="_blank"&gt;www.domain.net&lt;/A&gt;&lt;BR /&gt;Server:  ext.domain.net&lt;BR /&gt;Address:  202.X.X.10&lt;BR /&gt;&lt;BR /&gt;Name:    &lt;A href="http://www.domain.net" target="_blank"&gt;www.domain.net&lt;/A&gt;&lt;BR /&gt;Address:  202.X.X.10&lt;BR /&gt;&lt;BR /&gt;I hope it's everything OK now  &lt;BR /&gt;I'll  be very happy, if someone could check this entries&lt;BR /&gt;&lt;BR /&gt;greetings&lt;BR /&gt;chris</description>
      <pubDate>Thu, 02 Mar 2006 19:17:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/dns-server-unknown/m-p/3742205#M85914</guid>
      <dc:creator>'chris'</dc:creator>
      <dc:date>2006-03-02T19:17:19Z</dc:date>
    </item>
  </channel>
</rss>

