<?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: name resolution from DNS server in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768056#M260732</link>
    <description>Take a look at this thread: &lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=840826" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=840826&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;look for my post that included an attachment. The attachment (tar file) allows you to make your HP servers DNS caching servers - which should make your DNS queries very fast.&lt;BR /&gt;&lt;BR /&gt;Note: If you are talking about slow logins using SSH, then you are toast. SSH appears to try IPv6 DNS lookups first, then fails back to IPv4.&lt;BR /&gt;&lt;BR /&gt;Hopefully Rick Jones will pipe in here :-)&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry d brown jr</description>
    <pubDate>Fri, 07 Apr 2006 11:38:47 GMT</pubDate>
    <dc:creator>harry d brown jr</dc:creator>
    <dc:date>2006-04-07T11:38:47Z</dc:date>
    <item>
      <title>name resolution from DNS server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768051#M260727</link>
      <description>HI,&lt;BR /&gt;Because when the resolution of names is enabled from a dns microsoft, the login process is very slow?&lt;BR /&gt;S:O HP-UX 11i&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;BR /&gt;&lt;BR /&gt;Jorge Prado T.</description>
      <pubDate>Fri, 07 Apr 2006 10:25:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768051#M260727</guid>
      <dc:creator>Jorge Prado T</dc:creator>
      <dc:date>2006-04-07T10:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: name resolution from DNS server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768052#M260728</link>
      <description>Are you login using telnet or secure shell?. Maybe the reverse lookup is slowing the login prompt.</description>
      <pubDate>Fri, 07 Apr 2006 10:26:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768052#M260728</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-04-07T10:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: name resolution from DNS server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768053#M260729</link>
      <description>check /etc/resolv.conf file. You should have domain nameserver address there&lt;BR /&gt;&lt;BR /&gt;domain yourdomainname&lt;BR /&gt;nameserver x.x.x.x&lt;BR /&gt;&lt;BR /&gt;-USA..</description>
      <pubDate>Fri, 07 Apr 2006 11:00:34 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768053#M260729</guid>
      <dc:creator>Uday_S_Ankolekar</dc:creator>
      <dc:date>2006-04-07T11:00:34Z</dc:date>
    </item>
    <item>
      <title>Re: name resolution from DNS server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768054#M260730</link>
      <description>If you use SSH, try configuring /etc/rc.config.d/sshd&lt;BR /&gt;&lt;BR /&gt;SSHD_START=1&lt;BR /&gt;SSHD_ARGS="-u0"</description>
      <pubDate>Fri, 07 Apr 2006 11:02:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768054#M260730</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2006-04-07T11:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: name resolution from DNS server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768055#M260731</link>
      <description>Jorge,&lt;BR /&gt;&lt;BR /&gt;I would suggest that you verify the routing first for your DNS Server. On Windows run the following&lt;BR /&gt;&lt;BR /&gt;tracert DNSSERVERNAME or&lt;BR /&gt;&lt;BR /&gt;tracert IP&lt;BR /&gt;&lt;BR /&gt;On UNIX run,&lt;BR /&gt;&lt;BR /&gt;traceroute DNSSERVERNAME or IP&lt;BR /&gt;&lt;BR /&gt;---&lt;BR /&gt;&lt;BR /&gt;then if the number of hops seem acceptable to you (should be just 2 or max 3) then add your servers directly in the /etc/resolv.conf file to resolve DNS names through the system than by the DNS server first.&lt;BR /&gt;&lt;BR /&gt;vi /etc/resolv.conf&lt;BR /&gt;&lt;BR /&gt;Add as below &lt;BR /&gt;&lt;BR /&gt;SERVER1 192.168.*.*  (whatever the ip is)&lt;BR /&gt;&lt;BR /&gt;Then edit /etc/nsswitch.conf and enter&lt;BR /&gt;&lt;BR /&gt;hosts: files[NOTFOUND=continue] dns&lt;BR /&gt;&lt;BR /&gt;This will allow your system to resolve DNS through the /etc/resolv.conf file and if it does not find a system it will go to the DNS server.&lt;BR /&gt;&lt;BR /&gt;Enter the names in /etc/resolv.conf file for only the most accessed servers for better performance.&lt;BR /&gt;&lt;BR /&gt;-Anil&lt;BR /&gt;</description>
      <pubDate>Fri, 07 Apr 2006 11:06:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768055#M260731</guid>
      <dc:creator>Anil C. Sedha</dc:creator>
      <dc:date>2006-04-07T11:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: name resolution from DNS server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768056#M260732</link>
      <description>Take a look at this thread: &lt;A href="http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=840826" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=840826&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;look for my post that included an attachment. The attachment (tar file) allows you to make your HP servers DNS caching servers - which should make your DNS queries very fast.&lt;BR /&gt;&lt;BR /&gt;Note: If you are talking about slow logins using SSH, then you are toast. SSH appears to try IPv6 DNS lookups first, then fails back to IPv4.&lt;BR /&gt;&lt;BR /&gt;Hopefully Rick Jones will pipe in here :-)&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry d brown jr</description>
      <pubDate>Fri, 07 Apr 2006 11:38:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768056#M260732</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2006-04-07T11:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: name resolution from DNS server</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768057#M260733</link>
      <description>The most common reason for a slow login is that the DNS servers don't work right. They may be just fine for WINS resolution on PCs, but you must first verify that all the DNS servers listed in /etc/resolv.conf actually work for your HP-UX system. Use nslookup's special option to query a specific server:&lt;BR /&gt; &lt;BR /&gt;nslookup some_server dns1.mydomain.com&lt;BR /&gt; &lt;BR /&gt;where some_server is a hostame that should work OK. If it completes very fast, all is well. If it fails, talk to your DNS aadministrators.&lt;BR /&gt; &lt;BR /&gt;The second test (which is likely the problem) is to use nslookup to find your PC's hostname and then find your PC's IP address:&lt;BR /&gt; &lt;BR /&gt;nslookup myPCname&lt;BR /&gt;nslookup 12.34.56.78&lt;BR /&gt; &lt;BR /&gt;Many Windows adminstrators fail to provide reverse lookup records. This is an imperative security requirement for all DNS servers. The DNS boxes must be able to resolve hosts and IP addresses both directions. HP-UX tries to validate your PCs IP address and gets no response so it waits for 15-20 seconds.</description>
      <pubDate>Fri, 07 Apr 2006 16:09:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/name-resolution-from-dns-server/m-p/3768057#M260733</guid>
      <dc:creator>Bill Hassell</dc:creator>
      <dc:date>2006-04-07T16:09:54Z</dc:date>
    </item>
  </channel>
</rss>

