<?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: multi node ping tool in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201623#M570764</link>
    <description>Hi all&lt;BR /&gt;&lt;BR /&gt;Thank you very much for your quick help. All answers are eally valuable and I will adapt the solution to my needs an try them.&lt;BR /&gt;&lt;BR /&gt;Greetings from sunny switzerland&lt;BR /&gt;&lt;BR /&gt;Peter</description>
    <pubDate>Wed, 25 Feb 2004 06:59:24 GMT</pubDate>
    <dc:creator>Hubert Feller</dc:creator>
    <dc:date>2004-02-25T06:59:24Z</dc:date>
    <item>
      <title>multi node ping tool</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201619#M570760</link>
      <description>I am looking for a ping tool which can use a textfile containing a list of nodes and ping them all. The desired output should contain the nodes which are down as well as the nodes which cannot be resolved.&lt;BR /&gt;Is there something like this available?&lt;BR /&gt;&lt;BR /&gt;Your help is appreciated.</description>
      <pubDate>Wed, 25 Feb 2004 05:36:40 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201619#M570760</guid>
      <dc:creator>Hubert Feller</dc:creator>
      <dc:date>2004-02-25T05:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: multi node ping tool</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201620#M570761</link>
      <description>You might take a look at fping from&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.fping.com/" target="_blank"&gt;http://www.fping.com/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Ragards&lt;BR /&gt;Rainer</description>
      <pubDate>Wed, 25 Feb 2004 05:48:18 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201620#M570761</guid>
      <dc:creator>Rainer von Bongartz</dc:creator>
      <dc:date>2004-02-25T05:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: multi node ping tool</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201621#M570762</link>
      <description>Hi Peter,&lt;BR /&gt;&lt;BR /&gt;How about a shell script.&lt;BR /&gt;&lt;BR /&gt;#!/usr/bin/ksh&lt;BR /&gt;for server in `cat serverlist.txt`&lt;BR /&gt;do&lt;BR /&gt;   TEST=0&lt;BR /&gt;   TEST=`nslookup $server | grep -q Address`&lt;BR /&gt;   if [ $TEST -ne 0 ]&lt;BR /&gt;   then&lt;BR /&gt;           ping server -n 3 | grep loss | awk -F, '{ print $NF}' | awk -F% '{ print $1}' | grep -q " 0"&lt;BR /&gt;           if [ $? -eq 0 ]&lt;BR /&gt;           then echo "$server is alive, at $(date)"&lt;BR /&gt;           fi&lt;BR /&gt;    fi&lt;BR /&gt;done &lt;BR /&gt; &lt;BR /&gt;HTH,&lt;BR /&gt;&lt;BR /&gt;Gideon&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Feb 2004 06:09:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201621#M570762</guid>
      <dc:creator>G. Vrijhoeven</dc:creator>
      <dc:date>2004-02-25T06:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: multi node ping tool</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201622#M570763</link>
      <description>You can simplify this script quite a bit&lt;BR /&gt; &lt;BR /&gt;for hostname in `cat textfile`&lt;BR /&gt;do&lt;BR /&gt;   output="looks fine"&lt;BR /&gt;   ping $hostname -n 1 || output "looks broken"&lt;BR /&gt;   echo "$hostname $output"&lt;BR /&gt;done&lt;BR /&gt;</description>
      <pubDate>Wed, 25 Feb 2004 06:38:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201622#M570763</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2004-02-25T06:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: multi node ping tool</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201623#M570764</link>
      <description>Hi all&lt;BR /&gt;&lt;BR /&gt;Thank you very much for your quick help. All answers are eally valuable and I will adapt the solution to my needs an try them.&lt;BR /&gt;&lt;BR /&gt;Greetings from sunny switzerland&lt;BR /&gt;&lt;BR /&gt;Peter</description>
      <pubDate>Wed, 25 Feb 2004 06:59:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201623#M570764</guid>
      <dc:creator>Hubert Feller</dc:creator>
      <dc:date>2004-02-25T06:59:24Z</dc:date>
    </item>
    <item>
      <title>Re: multi node ping tool</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201624#M570765</link>
      <description>Just a thought, but you may want to check out BigBrother:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://bb4.com/" target="_blank"&gt;http://bb4.com/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Big Brother monitors System and Network-delivered services for availability. Your current network status is displayed on a color-coded web page in near-real time. When problems are detected, you're immediately notified by e-mail, pager, or text messaging. &lt;BR /&gt;&lt;BR /&gt;Rgds...Geoff</description>
      <pubDate>Wed, 25 Feb 2004 08:49:50 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201624#M570765</guid>
      <dc:creator>Geoff Wild</dc:creator>
      <dc:date>2004-02-25T08:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: multi node ping tool</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201625#M570766</link>
      <description>Peter,&lt;BR /&gt; &lt;BR /&gt;for more serious monitoring purposes of a whole server farm I'd rather stick with fping as Rainer already suggested.&lt;BR /&gt;fping has the great advantage of sending out Echo_Requests asynchronously.&lt;BR /&gt;Therefore it is better suited for monitoring.&lt;BR /&gt;For instance the mon utility ( &lt;A href="http://www.kernel.org/software/mon/" target="_blank"&gt;http://www.kernel.org/software/mon/&lt;/A&gt; ) uses fping.&lt;BR /&gt;fping also can read a list of hosts to ping from a file, and has an extra -f option.&lt;BR /&gt;Another choice would be to use the Net::Ping Perl module from CPAN.&lt;BR /&gt;It gives you the ability to chose from different protocols (e.g. tcp, udp, icmp) because ICMP requires root privilages, and many firewalls drop ICMP Echo Requests silently.&lt;BR /&gt;For the same reason are you free to select a port to ping.&lt;BR /&gt;Because the SSH port 22 is often not block you could ping boxes even behind firewalls.</description>
      <pubDate>Wed, 25 Feb 2004 11:10:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/multi-node-ping-tool/m-p/3201625#M570766</guid>
      <dc:creator>Ralph Grothe</dc:creator>
      <dc:date>2004-02-25T11:10:58Z</dc:date>
    </item>
  </channel>
</rss>

