diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2005-07-20 22:38:37 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2005-07-20 22:38:37 +0000 |
commit | 72ef9a13bfe653dc296bf9dce17442e4a8cc31bf (patch) | |
tree | f6e2f98d2a96a373056e818e95c97d687a35cf58 /plugins/check_ping.c | |
parent | 129692ff6a6f601a3810d1dbe334fc25f413243d (diff) | |
download | monitoring-plugins-72ef9a13bfe653dc296bf9dce17442e4a8cc31bf.tar.gz |
Fix parsing for netkit-ping and iputils-ping (Christian G Warden)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1205 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_ping.c')
-rw-r--r-- | plugins/check_ping.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c index 50878337..bdd39494 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c @@ -415,11 +415,13 @@ run_ping (const char *cmd, const char *addr) /* get the percent loss statistics */ if(sscanf(buf,"%*d packets transmitted, %*d packets received, +%*d errors, %d%% packet loss",&pl)==1 || - sscanf(buf,"%*d packets transmitted, %*d packets received, %d%% packet loss",&pl)==1 || + sscanf(buf,"%*d packets transmitted, %*d packets received, +%*d duplicates, %d%% packet loss", &pl) == 1 || + sscanf(buf,"%*d packets transmitted, %*d received, +%*d duplicates, %d%% packet loss", &pl) == 1 || + sscanf(buf,"%*d packets transmitted, %*d packets received, %d%% packet loss",&pl)==1 || sscanf(buf,"%*d packets transmitted, %*d packets received, %d%% loss, time",&pl)==1 || sscanf(buf,"%*d packets transmitted, %*d received, %d%% loss, time", &pl)==1 || sscanf(buf,"%*d packets transmitted, %*d received, %d%% packet loss, time", &pl)==1 || - sscanf(buf,"%*d packets transmitted, %*d received, +%*d errors, %d%% packet loss", &pl) == 1 || + sscanf(buf,"%*d packets transmitted, %*d received, +%*d errors, %d%% packet loss", &pl) == 1 || sscanf(buf,"%*d packets transmitted %*d received, +%*d errors, %d%% packet loss", &pl) == 1 ) continue; |