Added support Ericsson MINI-LINK (#10546)

* Added support Ericsson MINI-LINK
* cleaning
This commit is contained in:
Martin Zatloukal
2019-08-22 13:19:50 +02:00
committed by PipoCanaja
parent 259fc28b05
commit f16805b71d
12 changed files with 7402 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
os: ericsson-ml
text: 'Ericsson MINI-LINK'
type: wireless
empty_ifdescr: true
icon: ericsson
over:
- { graph: device_processor, text: 'CPU Usage' }
- { graph: device_bits, text: 'Device Traffic' }
discovery:
- sysObjectID: .1.3.6.1.4.1.193.223.2.1
mib_dir:
- ericsson

View File

@@ -0,0 +1,22 @@
<?php
/*
* LibreNMS
*
* Copyright (c) 2017 Martin Zatloukal <slezi2@pvfree.net>
* 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.
*/
d_echo('ERICSSON-ML');
$oid = ".1.3.6.1.4.1.193.223.2.4.1.1.2.1";
$index = 0;
$sensor_type = ' temperatureRadio';
$descr = 'Internal Temp';
$divisor = 1;
$temperature = (snmp_get($device, $oid, '-Oqv', 'PT-MONITOR-MIB') / $divisor);
if (is_numeric($temperature)) {
discover_sensor($valid['sensor'], 'temperature', $device, $oid, $index, $sensor_type, $descr, $divisor, null, null, null, null, null, $temperature);
}