mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
18 lines
329 B
PHP
18 lines
329 B
PHP
<?php
|
|
|
|
$ciscosb_id = array(
|
|
'.1.3.6.1.4.1.9.6.1.80',
|
|
'.1.3.6.1.4.1.9.6.1.81',
|
|
'.1.3.6.1.4.1.9.6.1.82',
|
|
'.1.3.6.1.4.1.9.6.1.83',
|
|
'.1.3.6.1.4.1.9.6.1.85',
|
|
'.1.3.6.1.4.1.9.6.1.88',
|
|
'.1.3.6.1.4.1.9.6.1.89',
|
|
);
|
|
|
|
if (starts_with($sysObjectId, $ciscosb_id)) {
|
|
$os = 'ciscosb';
|
|
}
|
|
|
|
unset($ciscosb_id);
|