Merge pull request #1776 from f0o/issue-1771

Exclude Cisco's from Zyxel IES Discovery
This commit is contained in:
Neil Lathwood
2015-08-27 19:11:05 +01:00
+1 -1
View File
@@ -1,7 +1,7 @@
<?php
if (!$os) {
if (strstr($sysDescr, 'IES-')) {
if (strstr($sysDescr, 'IES-') && !strstr($sysDescr, 'Cisco Systems')) {
$os = 'ies';
}
}