mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
20 lines
609 B
PHP
20 lines
609 B
PHP
<?php
|
|
|
|
if (!$os) {
|
|
if (preg_match('/^Sentry\ (Switched|Smart) /', $sysDescr)) {
|
|
|
|
// ServerTech doesn't have a way to distinguish between sentry3 and sentry4 devices
|
|
// Hopefully, we can use the version string to figure it out
|
|
$version = trim(snmp_get($device, 'Sentry3-MIB::serverTech.4.1.1.1.3.0', '-Osqnv'));
|
|
$version = explode(" ", $version);
|
|
$version = intval($version[1]);
|
|
|
|
// It appears that version 8 and up is good for sentry4
|
|
if ($version >= 8) {
|
|
$os = 'sentry4';
|
|
} else {
|
|
$os = 'sentry3';
|
|
}
|
|
}
|
|
}
|