librenms/includes/discovery/os/linux.inc.php

80 lines
4.1 KiB
PHP
Raw Normal View History

<?php
2015-07-13 18:10:26 +00:00
if (!$os) {
$skip_oids = array(
'.1.3.6.1.4.1.674.10892.2',
'.1.3.6.1.4.1.17163.1.1',
2016-06-08 20:16:47 +00:00
'.1.3.6.1.4.1.17713.21',
'.1.3.6.1.4.1.2.3.51.3'
);
if (preg_match('/^Linux/', $sysDescr) && !in_array($sysObjectId, $skip_oids)) {
2015-07-13 18:10:26 +00:00
$os = 'linux';
}
2015-07-13 18:10:26 +00:00
// Specific Linux-derivatives
if ($os == 'linux') {
// Check for QNAP Systems TurboNAS
$entPhysicalMfgName = snmp_get($device, 'ENTITY-MIB::entPhysicalMfgName.1', '-Osqnv');
if (str_contains($sysObjectId, '.1.3.6.1.4.1.5528.100.20.10.2014') || str_contains($sysObjectId, '.1.3.6.1.4.1.5528.100.20.10.2016')) {
2015-07-13 18:10:26 +00:00
$os = 'netbotz';
} elseif (str_contains($sysDescr, 'endian')) {
2015-07-13 18:10:26 +00:00
$os = 'endian';
} elseif (preg_match('/Cisco Small Business/', $sysDescr)) {
2015-07-13 18:10:26 +00:00
$os = 'ciscosmblinux';
} elseif (strpos($entPhysicalMfgName, 'QNAP') !== false) {
2015-07-13 18:10:26 +00:00
$os = 'qnap';
} elseif (stristr($sysObjectId, 'packetlogic') || str_contains($sysObjectId, '.1.3.6.1.4.1.15397.2')) {
2015-07-13 18:10:26 +00:00
$os = 'procera';
} elseif (str_contains($sysObjectId, '.1.3.6.1.4.1.10002.1') || str_contains($sysObjectId, '.1.3.6.1.4.1.41112.1.4') || strpos(trim(snmp_get($device, 'dot11manufacturerName.5', '-Osqnv', 'IEEE802dot11-MIB')), 'Ubiquiti') !== false) {
2015-07-13 18:10:26 +00:00
$os = 'airos';
if (strpos(trim(snmp_get($device, 'dot11manufacturerProductName.5', '-Osqnv', 'IEEE802dot11-MIB')), 'UAP') !== false) {
$os = 'unifi';
} elseif (strpos(trim(snmp_get($device, 'dot11manufacturerProductName.2', '-Osqnv', 'IEEE802dot11-MIB')), 'UAP') !== false) {
2015-07-13 18:10:26 +00:00
$os = 'unifi';
} elseif (strpos(trim(snmp_get($device, 'dot11manufacturerProductName.3', '-Osqnv', 'IEEE802dot11-MIB')), 'UAP') !== false) {
2015-07-13 18:10:26 +00:00
$os = 'unifi';
} elseif (strpos(trim(snmp_get($device, 'dot11manufacturerProductName.4', '-Osqnv', 'IEEE802dot11-MIB')), 'UAP') !== false) {
2015-07-13 18:10:26 +00:00
$os = 'unifi';
} elseif (strpos(trim(snmp_get($device, 'dot11manufacturerProductName.6', '-Osqnv', 'IEEE802dot11-MIB')), 'UAP') !== false) {
2015-07-13 18:10:26 +00:00
$os = 'unifi';
} elseif (trim(snmp_get($device, 'fwVersion.1', '-Osqnv', 'UBNT-AirFIBER-MIB')) != '') {
2015-07-13 18:10:26 +00:00
$os = 'airos-af';
}
} elseif (snmp_get($device, 'GANDI-MIB::rxCounter.0', '-Osqnv', 'GANDI-MIB') !== false) {
2016-03-03 14:52:44 +00:00
$os = 'pktj';
$pktj_mibs = array (
"rxCounter" => "GANDI-MIB", // RX Packets
"txCounter" => "GANDI-MIB", // TX Packets
"dropCounter" => "GANDI-MIB", // Dropped counters
"acldropCounter" => "GANDI-MIB", // ACL Dropped counter
"ratedropCounter" => "GANDI-MIB", // Rate Dropped counter
"KNIrxCounter" => "GANDI-MIB", // KNI RX counter
"KNItxCounter" => "GANDI-MIB", // KNI TX counter
"KNIdropCounter" => "GANDI-MIB", // KNI DROP counter
);
register_mibs($device, $pktj_mibs, "include/discovery/os/linux.inc.php");
} elseif (stristr($sysObjectId, 'cumulusMib') || str_contains($sysObjectId, '.1.3.6.1.4.1.40310')) {
2016-03-14 14:39:45 +00:00
$os = 'cumulus';
} elseif (str_contains($sysDescr, array('g56fa85e', 'gc80f187', 'g829be90', 'g63c0044', 'gba768e5'))) {
2016-06-16 17:13:18 +00:00
$os = 'sophos';
} elseif (snmp_get($device, 'SFA-INFO::systemName.0', '-Osqnv', 'SFA-INFO') !== false) {
$os = 'ddnos';
} else {
2015-07-13 18:10:26 +00:00
// Check for Synology DSM
$hrSystemInitialLoadParameters = trim(snmp_get($device, 'HOST-RESOURCES-MIB::hrSystemInitialLoadParameters.0', '-Osqnv'));
if (strpos($hrSystemInitialLoadParameters, 'syno_hw_version') !== false) {
2015-07-13 18:10:26 +00:00
$os = 'dsm';
} else {
2015-07-13 18:10:26 +00:00
// Check for Carel PCOweb
$roomTemp = trim(snmp_get($device, 'roomTemp.0', '-OqvU', 'CAREL-ug40cdz-MIB'));
2015-07-13 18:10:26 +00:00
if (is_numeric($roomTemp)) {
$os = 'pcoweb';
}
}
}
}
}