Add basic Dell iDrac recognition

- Basic iDrac recognition
This commit is contained in:
Rosiak 2015-07-08 19:30:34 +02:00
parent 25b19babbb
commit 03f359bef6

View File

@ -1,8 +1,10 @@
<?php
if (!$os)
{
if (strstr($sysDescr, "Dell Out-of-band SNMP Agent for Remote Access Controller")) { $os = "drac"; }
if (!$os) {
if (strstr($sysDescr, "Dell Out-of-band SNMP Agent for Remote Access Controller") || strstr($sysObjectId, "1.3.6.1.4.1.674.10892.5")) {
$os = "drac";
}
}
?>
?>