mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* refactor: OS Discovery files D-H * Combine edgeswitch check * fix my typo * update to fix tests
14 lines
233 B
PHP
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);
|