mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
0bee4b3d74
* Added Arris C3 to cmts.yaml * Added Arris C3 hardware * ARRIS CMTS->Move from cmts to arris_c4 yaml * Fixed some Arris_c4 definitions * Added Arris C3 CMTS * Fixed some typos * Arris C3 test files * Arris C4 test files * Deleted not anymore valid files * Renamed from underscore * Fixed some typos * Correct test files * Removed old snmprec files * Correct test files v2 * Deleted more old files * Return to cmts for valid_sensor() for Arris C4/C4c * Re-done test files * Re-do test files after rebase
38 lines
1.5 KiB
PHP
38 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* arris-c4.inc.php
|
|
*
|
|
* LibreNMS snr discovery module for Arris CMTS
|
|
*
|
|
* 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.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* @package LibreNMS
|
|
* @link http://librenms.org
|
|
* @copyright 2018 TheGreatDoc
|
|
* @author TheGreatDoc
|
|
* Based on Neil Lathwood Cisco EPC files
|
|
*/
|
|
|
|
foreach ($pre_cache['ar-c4_docsIfSignalQualityTable'] as $index => $data) {
|
|
if (is_numeric($data['docsIfSigQSignalNoise'])) {
|
|
$descr = "Channel {$pre_cache['ar-c4_ifAlias'][$index]['ifAlias']} - {$pre_cache['ar-c4_ifName'][$index]['ifName']}";
|
|
$oid = '.1.3.6.1.2.1.10.127.1.1.4.1.5.' . $index;
|
|
$divisor = 10;
|
|
$value = $data['docsIfSigQSignalNoise'];
|
|
if (preg_match("/.0$/", $pre_cache['ar-c4_ifName'][$index]['ifName'])) {
|
|
discover_sensor($valid['sensor'], 'snr', $device, $oid, 'docsIfSigQSignalNoise.'.$index, 'cmts', $descr, $divisor, '1', null, null, null, null, $value);
|
|
}
|
|
}
|
|
}
|