mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
15 lines
495 B
PHP
15 lines
495 B
PHP
<?php
|
|
|
|
if (!$os) {
|
|
// if (strstr($sysDescr, "Neyland 24T")) { $os = "powerconnect"; } /* Powerconnect 5324 */
|
|
if (stristr($sysDescr, 'PowerConnect ') && !stristr($sysDescr, 'ArubaOS')) {
|
|
$os = 'powerconnect';
|
|
}
|
|
else if (preg_match('/Dell.*Gigabit\ Ethernet/i', $sysDescr)) {
|
|
$os = 'powerconnect';
|
|
} //end if
|
|
else if (stristr(snmp_get($device, '1.3.6.1.4.1.674.10895.3000.1.2.100.1.0', '-Oqv', ''), 'PowerConnect')) {
|
|
$os = 'powerconnect';
|
|
}
|
|
}
|