From e053fcfcc5c47e7d4962e8a551e70c713124922b Mon Sep 17 00:00:00 2001 From: laf Date: Fri, 5 Aug 2016 20:33:25 +0100 Subject: [PATCH] Updated Junos detection --- includes/discovery/os/junos.inc.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/discovery/os/junos.inc.php b/includes/discovery/os/junos.inc.php index 81dcafd9ff..fed0e74db0 100644 --- a/includes/discovery/os/junos.inc.php +++ b/includes/discovery/os/junos.inc.php @@ -3,5 +3,7 @@ if (!$os) { if (strstr($sysObjectId, '.1.3.6.1.4.1.2636')) { $os = 'junos'; + } elseif (stristr($sysDescr, 'kernel JUNOS')) { + $os = 'junos'; } }