<?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: Not Available chars on DNS in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/not-available-chars-on-dns/m-p/2544633#M27156</link>
    <description>Fabrizio,&lt;BR /&gt;&lt;BR /&gt;A "non-authoritative answer" simply means that the DNS server that you are performing the query against is not authoritative for the domain you are querying against.  If you wish to find an authoritative answer, do the following:&lt;BR /&gt;&lt;BR /&gt;$ nslookup&lt;BR /&gt;Default Server:  ns02.gwin.charter.com&lt;BR /&gt;Address:  209.186.12.3&lt;BR /&gt;&lt;BR /&gt;&amp;gt; set type=ns&lt;BR /&gt;&amp;gt; foo.com&lt;BR /&gt;Server:  ns02.gwin.charter.com&lt;BR /&gt;Address:  209.186.12.3&lt;BR /&gt;&lt;BR /&gt;Non-authoritative answer:&lt;BR /&gt;foo.com nameserver = NS2.OKDIRECT.com&lt;BR /&gt;foo.com nameserver = NS.OKDIRECT.com&lt;BR /&gt;&lt;BR /&gt;Authoritative answers can be found from:&lt;BR /&gt;NS2.OKDIRECT.com        internet address = 209.54.94.4&lt;BR /&gt;NS.OKDIRECT.com internet address = 209.54.94.5&lt;BR /&gt;&amp;gt; server 209.54.94.5&lt;BR /&gt;Default Server:  ns.okdirect.com&lt;BR /&gt;Address:  209.54.94.5&lt;BR /&gt;&lt;BR /&gt;&amp;gt; set type=A&lt;BR /&gt;&amp;gt; foo.com&lt;BR /&gt;Server:  ns.okdirect.com&lt;BR /&gt;Address:  209.54.94.5&lt;BR /&gt;&lt;BR /&gt;Name:    foo.com&lt;BR /&gt;Address:  209.54.94.99&lt;BR /&gt;&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&lt;BR /&gt;I hope this helps.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 25 Jun 2001 17:14:43 GMT</pubDate>
    <dc:creator>Kenneth Platz</dc:creator>
    <dc:date>2001-06-25T17:14:43Z</dc:date>
    <item>
      <title>Not Available chars on DNS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/not-available-chars-on-dns/m-p/2544629#M27152</link>
      <description>Hi, I want to know the list of the special chars for the hostname which are not available in DNS database.&lt;BR /&gt;I know that there are some chars like "_" which gives some problems with the resolutions of the name with a DNS.&lt;BR /&gt;"Non Authoritative Answer" is the answer of the nameserver when I try to resolve a name with the nslookup command. I know where is the problem and I need this list.&lt;BR /&gt;Thank you.</description>
      <pubDate>Mon, 25 Jun 2001 14:06:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/not-available-chars-on-dns/m-p/2544629#M27152</guid>
      <dc:creator>Fabrizio Alleva</dc:creator>
      <dc:date>2001-06-25T14:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Not Available chars on DNS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/not-available-chars-on-dns/m-p/2544630#M27153</link>
      <description>If you stick with letters and numbers and of course the period (.), you will be fine.&lt;BR /&gt;Most if not all of the special chars are just that, special.</description>
      <pubDate>Mon, 25 Jun 2001 14:36:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/not-available-chars-on-dns/m-p/2544630#M27153</guid>
      <dc:creator>John Bolene</dc:creator>
      <dc:date>2001-06-25T14:36:55Z</dc:date>
    </item>
    <item>
      <title>Re: Not Available chars on DNS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/not-available-chars-on-dns/m-p/2544631#M27154</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;DNS syntax is define in RFC 1035, you can find&lt;BR /&gt;it at : &lt;A href="http://www.cis.ohio-state.edu/cgi-bin/rfc/rfc1035.html" target="_blank"&gt;www.cis.ohio-state.edu/cgi-bin/rfc/rfc1035.html&lt;/A&gt; &lt;BR /&gt;&lt;BR /&gt;You can use [a-z][A-Z][0-9] and "-" in domain&lt;BR /&gt;name. Dot is a reserved character and others&lt;BR /&gt;are forbidden.&lt;BR /&gt;&lt;BR /&gt;See the grammar for a domain name below :&lt;BR /&gt;&lt;BR /&gt;"The following syntax will result in fewer &lt;BR /&gt;problems with many applications that use &lt;BR /&gt;domain names (e.g., mail, TELNET)."&lt;BR /&gt;&lt;BR /&gt; &lt;DOMAIN&gt; ::= &lt;SUBDOMAIN&gt; | " "&lt;BR /&gt; &lt;BR /&gt;&lt;SUBDOMAIN&gt; ::= &lt;LABEL&gt; | &lt;SUBDOMAIN&gt; "." &lt;LABEL&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;LABEL&gt; ::= &lt;LETTER&gt; [ [ &lt;LDH-STR&gt; ] &lt;LET-DIG&gt; ]&lt;BR /&gt; &lt;BR /&gt;&lt;LDH-STR&gt; ::= &lt;LET-DIG-HYP&gt; | &lt;LET-DIG-HYP&gt; &lt;LDH-STR&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;LET-DIG-HYP&gt; ::= &lt;LET-DIG&gt; | "-"&lt;BR /&gt; &lt;BR /&gt;&lt;LET-DIG&gt; ::= &lt;LETTER&gt; | &lt;DIGIT&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;LETTER&gt; ::= any one of the 52 alphabetic characters A through Z in&lt;BR /&gt;upper case and a through z in lower case&lt;BR /&gt;&lt;DIGIT&gt; ::= any one of the ten digits 0 through 9&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;HTH&lt;BR /&gt;&lt;BR /&gt;Herve&lt;BR /&gt;&lt;BR /&gt;&lt;/DIGIT&gt;&lt;/LETTER&gt;&lt;/DIGIT&gt;&lt;/LETTER&gt;&lt;/LET-DIG&gt;&lt;/LET-DIG&gt;&lt;/LET-DIG-HYP&gt;&lt;/LDH-STR&gt;&lt;/LET-DIG-HYP&gt;&lt;/LET-DIG-HYP&gt;&lt;/LDH-STR&gt;&lt;/LET-DIG&gt;&lt;/LDH-STR&gt;&lt;/LETTER&gt;&lt;/LABEL&gt;&lt;/LABEL&gt;&lt;/SUBDOMAIN&gt;&lt;/LABEL&gt;&lt;/SUBDOMAIN&gt;&lt;/SUBDOMAIN&gt;&lt;/DOMAIN&gt;</description>
      <pubDate>Mon, 25 Jun 2001 14:39:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/not-available-chars-on-dns/m-p/2544631#M27154</guid>
      <dc:creator>Herve BRANGIER</dc:creator>
      <dc:date>2001-06-25T14:39:34Z</dc:date>
    </item>
    <item>
      <title>Re: Not Available chars on DNS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/not-available-chars-on-dns/m-p/2544632#M27155</link>
      <description>The last time I checked the RFC, allowable characters were letters, numbers, the dot (.) and the dash (-).  Although mixed-case is allowed, it is recommended that you stick wtih lower-case letters.  Also, keep hostnames at or less than 64 characters.&lt;BR /&gt;&lt;BR /&gt;Cheers,&lt;BR /&gt;Jim</description>
      <pubDate>Mon, 25 Jun 2001 14:41:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/not-available-chars-on-dns/m-p/2544632#M27155</guid>
      <dc:creator>Jim Turner</dc:creator>
      <dc:date>2001-06-25T14:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Not Available chars on DNS</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/not-available-chars-on-dns/m-p/2544633#M27156</link>
      <description>Fabrizio,&lt;BR /&gt;&lt;BR /&gt;A "non-authoritative answer" simply means that the DNS server that you are performing the query against is not authoritative for the domain you are querying against.  If you wish to find an authoritative answer, do the following:&lt;BR /&gt;&lt;BR /&gt;$ nslookup&lt;BR /&gt;Default Server:  ns02.gwin.charter.com&lt;BR /&gt;Address:  209.186.12.3&lt;BR /&gt;&lt;BR /&gt;&amp;gt; set type=ns&lt;BR /&gt;&amp;gt; foo.com&lt;BR /&gt;Server:  ns02.gwin.charter.com&lt;BR /&gt;Address:  209.186.12.3&lt;BR /&gt;&lt;BR /&gt;Non-authoritative answer:&lt;BR /&gt;foo.com nameserver = NS2.OKDIRECT.com&lt;BR /&gt;foo.com nameserver = NS.OKDIRECT.com&lt;BR /&gt;&lt;BR /&gt;Authoritative answers can be found from:&lt;BR /&gt;NS2.OKDIRECT.com        internet address = 209.54.94.4&lt;BR /&gt;NS.OKDIRECT.com internet address = 209.54.94.5&lt;BR /&gt;&amp;gt; server 209.54.94.5&lt;BR /&gt;Default Server:  ns.okdirect.com&lt;BR /&gt;Address:  209.54.94.5&lt;BR /&gt;&lt;BR /&gt;&amp;gt; set type=A&lt;BR /&gt;&amp;gt; foo.com&lt;BR /&gt;Server:  ns.okdirect.com&lt;BR /&gt;Address:  209.54.94.5&lt;BR /&gt;&lt;BR /&gt;Name:    foo.com&lt;BR /&gt;Address:  209.54.94.99&lt;BR /&gt;&lt;BR /&gt;&amp;gt; &lt;BR /&gt;&lt;BR /&gt;I hope this helps.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 25 Jun 2001 17:14:43 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/not-available-chars-on-dns/m-p/2544633#M27156</guid>
      <dc:creator>Kenneth Platz</dc:creator>
      <dc:date>2001-06-25T17:14:43Z</dc:date>
    </item>
  </channel>
</rss>

