From 2dc98ce2f7aafe59ea4290e905bfdc11830802c5 Mon Sep 17 00:00:00 2001 From: laf Date: Thu, 27 Aug 2015 21:01:31 +0000 Subject: [PATCH] Added check for zywall using OID --- includes/discovery/os/zywall.inc.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/includes/discovery/os/zywall.inc.php b/includes/discovery/os/zywall.inc.php index 0b3b25056..0a6fc008e 100644 --- a/includes/discovery/os/zywall.inc.php +++ b/includes/discovery/os/zywall.inc.php @@ -4,4 +4,7 @@ if (!$os) { if (strstr($sysDescr, 'ZyWALL')) { $os = 'zywall'; } + if (strstr($sysObjectId, '.1.3.6.1.4.1.890.1.15')) { + $os = 'zywall'; + } }