<?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: Any Ideas -- Checking client status. in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137258#M154409</link>
    <description>If you want to check if your remsh is going to work even if the machine is up.  You need to do a test remsh with a timeout and then remsh again.  &lt;BR /&gt; &lt;BR /&gt;Attached is a perl script called remsh.pl that attempts to remsh but times out after 30 seconds.&lt;BR /&gt; &lt;BR /&gt;call it with "remsh.pl host command"&lt;BR /&gt; &lt;BR /&gt;Oh, and read the comments at the start :)</description>
    <pubDate>Fri, 05 Dec 2003 09:13:15 GMT</pubDate>
    <dc:creator>Mark Grant</dc:creator>
    <dc:date>2003-12-05T09:13:15Z</dc:date>
    <item>
      <title>Any Ideas -- Checking client status.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137253#M154404</link>
      <description>I run a number of scripts that go around the client machines on our system doing different jobs. &lt;BR /&gt;The problem I have is when machines are switched off the script hangs, trying to connect.&lt;BR /&gt;In short is there a way to check whether a machine is up or not from the server, without waiting for the Connection Timeout message.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance.&lt;BR /&gt;Russ.</description>
      <pubDate>Fri, 05 Dec 2003 08:54:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137253#M154404</guid>
      <dc:creator>Russ Hancock_1</dc:creator>
      <dc:date>2003-12-05T08:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: Any Ideas -- Checking client status.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137254#M154405</link>
      <description>Russ,&lt;BR /&gt;&lt;BR /&gt;Ping?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Pete</description>
      <pubDate>Fri, 05 Dec 2003 09:00:23 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137254#M154405</guid>
      <dc:creator>Pete Randall</dc:creator>
      <dc:date>2003-12-05T09:00:23Z</dc:date>
    </item>
    <item>
      <title>Re: Any Ideas -- Checking client status.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137255#M154406</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Why don't u ping the client machines and check???&lt;BR /&gt;#ping a.b.c.d(client ip address)</description>
      <pubDate>Fri, 05 Dec 2003 09:00:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137255#M154406</guid>
      <dc:creator>PVR</dc:creator>
      <dc:date>2003-12-05T09:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Any Ideas -- Checking client status.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137256#M154407</link>
      <description>Can try adding in your script to:&lt;BR /&gt;ping server -n 1&lt;BR /&gt;and checking to see if you get 100% packetloss before continuing on.&lt;BR /&gt;&lt;BR /&gt;Dave&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Dec 2003 09:01:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137256#M154407</guid>
      <dc:creator>Dave Hutton</dc:creator>
      <dc:date>2003-12-05T09:01:13Z</dc:date>
    </item>
    <item>
      <title>Re: Any Ideas -- Checking client status.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137257#M154408</link>
      <description>ping machine for three pings only. check status and proceed.&lt;BR /&gt;&lt;BR /&gt;ping -n3 host_name&lt;BR /&gt;if [ $? -ne 0 ]&lt;BR /&gt;then&lt;BR /&gt;echo "machine not available"&lt;BR /&gt;exit&lt;BR /&gt;</description>
      <pubDate>Fri, 05 Dec 2003 09:01:21 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137257#M154408</guid>
      <dc:creator>RAC_1</dc:creator>
      <dc:date>2003-12-05T09:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Any Ideas -- Checking client status.</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137258#M154409</link>
      <description>If you want to check if your remsh is going to work even if the machine is up.  You need to do a test remsh with a timeout and then remsh again.  &lt;BR /&gt; &lt;BR /&gt;Attached is a perl script called remsh.pl that attempts to remsh but times out after 30 seconds.&lt;BR /&gt; &lt;BR /&gt;call it with "remsh.pl host command"&lt;BR /&gt; &lt;BR /&gt;Oh, and read the comments at the start :)</description>
      <pubDate>Fri, 05 Dec 2003 09:13:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/any-ideas-checking-client-status/m-p/3137258#M154409</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2003-12-05T09:13:15Z</dc:date>
    </item>
  </channel>
</rss>

