mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Cisco enhanced cellular support * Extra sensors, camelcasing and bugfixes * Doc update * German translation * French translation * Style fixes * Style changes * Style changes * Style changes * Style changes * Style changes * Added test data * New test data --variant * New test data --variant ir1101 * Made the new wireless sensors generic * Added test data for ios variant ir809 * Fix includes/discovery/sensors/count/cisco.inc.php, thanks PipoCanaja * Moved cellular operating band from Wireless sensors to count sensor * test data * test data * test data * test data * Moved ICCID/IMSI/IMEI to inventory * test data and style fix * Cellular state sensors now have a group Co-authored-by: Maikel de Boer <[email protected]>
32 lines
1.7 KiB
PHP
32 lines
1.7 KiB
PHP
<?php
|
|
/*
|
|
* LibreNMS
|
|
*
|
|
* Copyright (c) 2016 Søren Friis Rosiak <[email protected]>
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the
|
|
* Free Software Foundation, either version 3 of the License, or (at your
|
|
* option) any later version. Please see LICENSE.txt at the top level of
|
|
* the source code distribution for details.
|
|
*/
|
|
|
|
$temp = snmpwalk_cache_multi_oid($device, 'ciscoEnvMonTemperatureStatusTable', [], 'CISCO-ENVMON-MIB');
|
|
if (is_array($temp)) {
|
|
$cur_oid = '.1.3.6.1.4.1.9.9.13.1.3.1.3.';
|
|
foreach ($temp as $index => $entry) {
|
|
if ($temp[$index]['ciscoEnvMonTemperatureState'] != 'notPresent' && ! empty($temp[$index]['ciscoEnvMonTemperatureStatusDescr'])) {
|
|
$descr = ucwords($temp[$index]['ciscoEnvMonTemperatureStatusDescr']);
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $cur_oid . $index, $index, 'cisco', $descr, '1', '1', null, null, null, $temp[$index]['ciscoEnvMonTemperatureThreshold'], $temp[$index]['ciscoEnvMonTemperatureStatusValue'], 'snmp', $index);
|
|
}
|
|
}
|
|
}
|
|
|
|
$temp = snmpwalk_cache_multi_oid($device, 'c3gModemTemperature', [], 'CISCO-WAN-3G-MIB');
|
|
if (is_array($temp)) {
|
|
$cur_oid = '.1.3.6.1.4.1.9.9.661.1.1.1.12.';
|
|
foreach ($temp as $index => $entry) {
|
|
$descr = snmp_get($device, 'entPhysicalName.' . $index, '-Oqv', 'ENTITY-MIB');
|
|
discover_sensor($valid['sensor'], 'temperature', $device, $cur_oid . $index, $index, 'cisco', $descr, '1', '1', null, null, null, $temp[$index]['ciscoEnvMonTemperatureThreshold'], $temp[$index]['c3gModemTemperature'], 'snmp', $index);
|
|
}
|
|
}
|