librenms/includes/discovery/os/enterasys.inc.php

11 lines
202 B
PHP
Raw Normal View History

<?php
if (!$os) {
2015-07-13 18:10:26 +00:00
if (preg_match('/^Enterasys Networks/', $sysDescr)) {
$os = 'enterasys';
}
2015-12-29 15:32:17 +00:00
if (strstr($sysObjectId, '.1.3.6.1.4.1.5624.2.1')) {
$os = 'enterasys';
}
}