aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_ping.c
diff options
context:
space:
mode:
authorGravatar Jan Wagner <waja@cyconet.org> 2012-04-17 11:46:16 +0200
committerGravatar Jan Wagner <waja@cyconet.org> 2012-04-17 11:46:16 +0200
commitc69890a4b4e3b303ae82cc7eec773486e08c80bb (patch)
treec5f580d5a86d10f5fed277b5b1429e4555a3aff6 /plugins/check_ping.c
parent4c30935850997f513b3eee21d169f6d523d43c5d (diff)
downloadmonitoring-plugins-c69890a4b4e3b303ae82cc7eec773486e08c80bb.tar.gz
Fix check_ping where output of ping6 when unreachable (Debian #662638)
Diffstat (limited to 'plugins/check_ping.c')
-rw-r--r--plugins/check_ping.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c
index ecdd6183..9f9dcabd 100644
--- a/plugins/check_ping.c
+++ b/plugins/check_ping.c
@@ -533,6 +533,8 @@ error_scan (char buf[MAX_INPUT_BUFFER], const char *addr)
die (STATE_CRITICAL, _("CRITICAL - Host not found (%s)"), addr);
else if (strstr (buf, "Time to live exceeded"))
die (STATE_CRITICAL, _("CRITICAL - Time to live exceeded (%s)"), addr);
+ else if (strstr (buf, "Destination unreachable: "))
+ die (STATE_CRITICAL, _("CRITICAL - DestinationUnreachable (%s)"), addr);
if (strstr (buf, "(DUP!)") || strstr (buf, "DUPLICATES FOUND")) {
if (warn_text == NULL)