diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_ping.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c index bfdee492..23dcd6a8 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 - Destination Unreachable (%s)"), addr); if (strstr (buf, "(DUP!)") || strstr (buf, "DUPLICATES FOUND")) { if (warn_text == NULL) |