<?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 Problems with remsh. Odd Error. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-remsh-odd-error/m-p/2436527#M5291</link>
    <description>Here is the error: (using remsh)&lt;BR /&gt;I included the command string too.&lt;BR /&gt;&lt;BR /&gt;$ remsh powhite -l maui ls&lt;BR /&gt;remshd: Couldn't look up address for your host&lt;BR /&gt;&lt;BR /&gt;And the error using rlogin:&lt;BR /&gt;$ rlogin powhite -l maui&lt;BR /&gt;rlogind: Host address mismatch..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have 10 HP 9000/743 systems running HPUX 10.20 which periodically need to remsh to another HP 9000/800.  All of the systems work fine except for 2 of them.  &lt;BR /&gt;&lt;BR /&gt;NIS is not running.&lt;BR /&gt;resolv.conf is the same on all systems&lt;BR /&gt;You can ping both ends.&lt;BR /&gt;You can do an nslookup on both systems.&lt;BR /&gt;The .rhost file on the target system is set up to allow access..&lt;BR /&gt;DNS is being supplied by an NT centralized source.  &lt;BR /&gt;&lt;BR /&gt;I have re-entered DNS information for failing systems with no effect.&lt;BR /&gt;&lt;BR /&gt;I am stumped..any ideas?&lt;BR /&gt;</description>
    <pubDate>Tue, 15 Aug 2000 09:59:46 GMT</pubDate>
    <dc:creator>Guy Mengel</dc:creator>
    <dc:date>2000-08-15T09:59:46Z</dc:date>
    <item>
      <title>Problems with remsh. Odd Error.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-remsh-odd-error/m-p/2436527#M5291</link>
      <description>Here is the error: (using remsh)&lt;BR /&gt;I included the command string too.&lt;BR /&gt;&lt;BR /&gt;$ remsh powhite -l maui ls&lt;BR /&gt;remshd: Couldn't look up address for your host&lt;BR /&gt;&lt;BR /&gt;And the error using rlogin:&lt;BR /&gt;$ rlogin powhite -l maui&lt;BR /&gt;rlogind: Host address mismatch..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I have 10 HP 9000/743 systems running HPUX 10.20 which periodically need to remsh to another HP 9000/800.  All of the systems work fine except for 2 of them.  &lt;BR /&gt;&lt;BR /&gt;NIS is not running.&lt;BR /&gt;resolv.conf is the same on all systems&lt;BR /&gt;You can ping both ends.&lt;BR /&gt;You can do an nslookup on both systems.&lt;BR /&gt;The .rhost file on the target system is set up to allow access..&lt;BR /&gt;DNS is being supplied by an NT centralized source.  &lt;BR /&gt;&lt;BR /&gt;I have re-entered DNS information for failing systems with no effect.&lt;BR /&gt;&lt;BR /&gt;I am stumped..any ideas?&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Aug 2000 09:59:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-remsh-odd-error/m-p/2436527#M5291</guid>
      <dc:creator>Guy Mengel</dc:creator>
      <dc:date>2000-08-15T09:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with remsh. Odd Error.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-remsh-odd-error/m-p/2436528#M5292</link>
      <description>Does the problem go away if you mv /etc/resolv.conf out of the way ? If so there maybe 2 possible causes : &lt;BR /&gt;&lt;BR /&gt;According to the hosts.equiv man page, if you are in a DNS environment,&lt;BR /&gt;the hostnames in .rhosts or /etc/hosts.equiv must have the domain name&lt;BR /&gt;appended to the hostname, and that name must match the hostname&lt;BR /&gt;returned by gethostbyaddr (look up hostname by IP address).&lt;BR /&gt;&lt;BR /&gt;If you've already done this, then the cause oft his problem is on your&lt;BR /&gt;DNS name server.  It may not return your hostname due to a typo or&lt;BR /&gt;omission.&lt;BR /&gt;&lt;BR /&gt;The failure is caused by the DNS being given the IP address of your&lt;BR /&gt;host, and trying to get a match in its' "reverse lookup" files.&lt;BR /&gt;&lt;BR /&gt;You can verify this on your host by using nslookup to look up your&lt;BR /&gt;hostname on the DNS database by both the IP address and hostname.&lt;BR /&gt;&lt;BR /&gt;For example:&lt;BR /&gt;# nslookup hp1   # Example DNS lookup by hostname&lt;BR /&gt;  using nameserver: example.alcoa.com&lt;BR /&gt;  address: 192.15.25.254&lt;BR /&gt;&lt;BR /&gt;  name: hp1.alcoa.com&lt;BR /&gt;  address 192.15.25.6&lt;BR /&gt;&lt;BR /&gt;# nslookup 192.15.25.6  # Example DNS lookup by IP address&lt;BR /&gt;  using nameserver: example.alcoa.com&lt;BR /&gt;  address: 192.15.25.254&lt;BR /&gt;&lt;BR /&gt;  name: hp1.alcoa.com&lt;BR /&gt;  address 192.15.25.6&lt;BR /&gt;&lt;BR /&gt;The DNS has two sets of files.  One is used for hostname lookups&lt;BR /&gt;to map hostname to an IP address (db.mydomain.com for example)&lt;BR /&gt;and others are used for IP address lookups to map IP addresses&lt;BR /&gt;to hostnames (e.g. db.192.15.25).  These latter files are called&lt;BR /&gt;DNS Reverse Lookup files (also called "IN-ADDR.ARPA" files.&lt;BR /&gt;&lt;BR /&gt;The problem is most likely a typo in the PTR record.  For example,&lt;BR /&gt;if your DNS domain is alcoa.com, your node is called hp1, and it's IP&lt;BR /&gt;address is 192.15.25.6, there should be a PTR record in the db.192.15.25&lt;BR /&gt;file on the DNS ser that reads as follows:&lt;BR /&gt;&lt;BR /&gt;6               IN      PTR     hp1.alcoa.com.&lt;BR /&gt;&lt;BR /&gt;Please note the PERIOD at the end of the PTR record.  A common mistake&lt;BR /&gt;is either a typo or a missing period on the hostname.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Aug 2000 10:12:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-remsh-odd-error/m-p/2436528#M5292</guid>
      <dc:creator>Alex Glennie</dc:creator>
      <dc:date>2000-08-15T10:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with remsh. Odd Error.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-remsh-odd-error/m-p/2436529#M5293</link>
      <description>hmm... you might want to also check:&lt;BR /&gt;/etc/nsswitch.conf on the failing machines - if they are different from the other machines , copy them over.&lt;BR /&gt;&lt;BR /&gt;2.Also make sure that there are no limiting entries in your respective /var/adm/inetd.sec&lt;BR /&gt;&lt;BR /&gt;3.try adding localhost to the .rhosts file and then &lt;BR /&gt;remsh localhost -l maui ls&lt;BR /&gt;&lt;BR /&gt;4.check your /etc/inetd.conf on the two servers and compare them with the other servers.&lt;BR /&gt;&lt;BR /&gt;5.Could you possibly have duplicate IP addresses somewhere?&lt;BR /&gt;&lt;BR /&gt;happy hunting.</description>
      <pubDate>Tue, 15 Aug 2000 10:14:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-remsh-odd-error/m-p/2436529#M5293</guid>
      <dc:creator>Kofi ARTHIABAH</dc:creator>
      <dc:date>2000-08-15T10:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with remsh. Odd Error.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-remsh-odd-error/m-p/2436530#M5294</link>
      <description>Thanks Alex too!  You both pointed me in the right direction.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Aug 2000 10:37:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-remsh-odd-error/m-p/2436530#M5294</guid>
      <dc:creator>Guy Mengel</dc:creator>
      <dc:date>2000-08-15T10:37:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with remsh. Odd Error.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-remsh-odd-error/m-p/2436531#M5295</link>
      <description>Thanks Kofi!  I should have checked...&lt;BR /&gt;The "reverse" nslookup for the IP address&lt;BR /&gt;returned the name lasr04pa...should have been&lt;BR /&gt;lasr04pe..&lt;BR /&gt;Dang!  it is better to have another set of eyes...&lt;BR /&gt;&lt;BR /&gt;Anyway...thanks so much!&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Aug 2000 10:39:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/problems-with-remsh-odd-error/m-p/2436531#M5295</guid>
      <dc:creator>Guy Mengel</dc:creator>
      <dc:date>2000-08-15T10:39:49Z</dc:date>
    </item>
  </channel>
</rss>

