Merge pull request #1784 from laf/issue-1761

Added check for zywall using OID
This commit is contained in:
Daniel Preussker 2015-08-27 21:07:41 +00:00
commit 5d337e593f

View File

@ -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';
}
}