From a9403e6d002afe0e5296f25d9580f39c608e26d0 Mon Sep 17 00:00:00 2001 From: jbjohnso Date: Fri, 3 Apr 2009 23:43:19 +0000 Subject: [PATCH] -Switch to using faster nmap as backend to pping. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@3092 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-client/bin/pping | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/xCAT-client/bin/pping b/xCAT-client/bin/pping index 9d945a290..49243a266 100755 --- a/xCAT-client/bin/pping +++ b/xCAT-client/bin/pping @@ -81,13 +81,17 @@ if ($interface) { unless (scalar(@nodes)) { exit; } -open (FPING, "fping ".join(' ',@nodes). " 2> /dev/null|") or die("Cannot open fping pipe: $!"); -while () { - if ($_ =~ /is unreachable/) { - s/ is unreachable/: noping/; - } elsif ($_ =~ /is alive/) { - s/ is alive/: ping/; - } - print $_; +my %deadnodes; +foreach (@nodes) { + $deadnodes{$_}=1; +} +open (FPING, "nmap -sP ".join(' ',@nodes). " 2> /dev/null|") or die("Cannot open nmap pipe: $!"); +while () { + if (/Host (.*) \(.*\) appears to be up/) { + print "$1: ping\n"; + delete $deadnodes{$1}; + } +} +foreach (sort keys %deadnodes) { + print "$_: noping\n"; } -