Files
librenms-librenms/includes/discovery/os/fabos.inc.php
Neil Lathwood 6fdcf8a6da refactor: OS Discovery files D-H (#4572)
* refactor: OS Discovery files D-H

* Combine edgeswitch check

* fix my typo

* update to fix tests
2016-09-27 22:31:16 +01:00

14 lines
233 B
PHP

<?php
$fabos_objectid = array(
'.1.3.6.1.4.1.1588.2.1.1.1',
'.1.3.6.1.4.1.1588.2.1.1.43',
'.1.3.6.1.4.1.1588.2.1.1.72',
);
if (starts_with($sysObjectId, $fabos_objectid)) {
$os = 'fabos';
}
unset($fabos_objectid);