mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
newdevice: Added support for Alcoma wireless devices (#7476)
* New os Alcoma * New os Alcoma * Update AlcomaAlmp.php
This commit is contained in:
Martin Zatloukal
committed by
Neil Lathwood
parent
cdf31c47e1
commit
6e379bfbbd
97
LibreNMS/OS/AlcomaAlmp.php
Normal file
97
LibreNMS/OS/AlcomaAlmp.php
Normal file
@ -0,0 +1,97 @@
|
||||
<?php
|
||||
/**
|
||||
* AlcomaAlmp.php
|
||||
*
|
||||
* Alcoma.cz
|
||||
*
|
||||
* 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 2017 Tony Murray
|
||||
* @author Tony Murray <murraytony@gmail.com>
|
||||
*/
|
||||
|
||||
namespace LibreNMS\OS;
|
||||
|
||||
use LibreNMS\Device\WirelessSensor;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessFrequencyDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRssiDiscovery;
|
||||
use LibreNMS\Interfaces\Discovery\Sensors\WirelessSnrDiscovery;
|
||||
use LibreNMS\OS;
|
||||
|
||||
class AlcomaAlmp extends OS implements
|
||||
WirelessFrequencyDiscovery,
|
||||
WirelessPowerDiscovery,
|
||||
WirelessRssiDiscovery,
|
||||
WirelessSnrDiscovery
|
||||
{
|
||||
|
||||
/**
|
||||
* Discover wireless frequency. This is in GHz. Type is frequency.
|
||||
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
|
||||
*
|
||||
* @return array Sensors
|
||||
*/
|
||||
public function discoverWirelessFrequency()
|
||||
{
|
||||
$oid = '.1.3.6.1.4.1.12140.2.3.1.0'; // ALCOMA-MIB::alMPTuneTX.0
|
||||
return array(
|
||||
new WirelessSensor('frequency', $this->getDeviceId(), $oid, 'alcoma', 1, 'Frequency', null, 1, 1),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Discover wireless tx or rx power. This is in dBm. Type is power.
|
||||
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function discoverWirelessPower()
|
||||
{
|
||||
$oid = '.1.3.6.1.4.1.12140.2.3.3.0'; // ALCOMA-MIB::alMPTX-PWR.0
|
||||
return array(
|
||||
new WirelessSensor('power', $this->getDeviceId(), $oid, 'alcoma', 1, 'Tx Power'),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Discover wireless RSSI (Received Signal Strength Indicator). This is in dBm. Type is rssi.
|
||||
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function discoverWirelessRssi()
|
||||
{
|
||||
$oid = '.1.3.6.1.4.1.12140.2.3.4.0'; // ALCOMA-MIB::alMPRX-Level.0
|
||||
return array(
|
||||
new WirelessSensor('rssi', $this->getDeviceId(), $oid, 'alcoma', 1, 'RSSI', null, 1, 1),
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Discover wireless SNR. This is in dB. Type is snr.
|
||||
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
|
||||
*
|
||||
* @return array Sensors
|
||||
*/
|
||||
public function discoverWirelessSnr()
|
||||
{
|
||||
$oid = '.1.3.6.1.4.1.12140.2.4.2.0'; // ALCOMA-MIB::alMPSNR.0
|
||||
return array(
|
||||
new WirelessSensor('snr', $this->getDeviceId(), $oid, 'alcoma', 1, 'CINR', null, 1, 1),
|
||||
);
|
||||
}
|
||||
}
|
BIN
html/images/os/alcoma-almp.png
Normal file
BIN
html/images/os/alcoma-almp.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.9 KiB |
12
includes/definitions/alcoma-almp.yaml
Normal file
12
includes/definitions/alcoma-almp.yaml
Normal file
@ -0,0 +1,12 @@
|
||||
os: alcoma-almp
|
||||
text: 'Alcoma'
|
||||
type: wireless
|
||||
icon: alcoma
|
||||
over:
|
||||
- { graph: device_wireless_rssi, text: 'Wireless rssi' }
|
||||
- { graph: device_wireless_snr, text: 'Wireles snr' }
|
||||
- { graph: device_wireless_power, text: 'Wireless power' }
|
||||
discovery:
|
||||
- sysObjectId: .1.3.6.1.4.1.12140.2
|
||||
mib_dir:
|
||||
- alcoma
|
11
includes/definitions/discovery/alcoma-almp.yaml
Normal file
11
includes/definitions/discovery/alcoma-almp.yaml
Normal file
@ -0,0 +1,11 @@
|
||||
mib: ALCOMA-MIB
|
||||
modules:
|
||||
sensors:
|
||||
temperature:
|
||||
data:
|
||||
-
|
||||
oid: alMPTemperature
|
||||
value: alMPTemperature
|
||||
num_oid: .1.3.6.1.4.1.12140.2.3.9.
|
||||
descr: Internal Temp
|
||||
index: 'alMPTemperatur.{{ $index }}'
|
8
includes/polling/os/alcoma-almp.inc.php
Normal file
8
includes/polling/os/alcoma-almp.inc.php
Normal file
@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
|
||||
$alcoma_tmp = snmp_get_multi_oid($device, 'alMPModel.0 alMPVersionSW.0 alMPSerNumMW.0', '-OQs', 'ALCOMA-MIB');
|
||||
$hardware = $alcoma_tmp['alMPModel.0'];
|
||||
$version = $alcoma_tmp['alMPVersionSW.0'];
|
||||
$serial = $alcoma_tmp['alMPSerNumMW.0'];
|
||||
unset($alcoma_tmp);
|
2379
mibs/alcoma/ALCOMA-MIB
Normal file
2379
mibs/alcoma/ALCOMA-MIB
Normal file
File diff suppressed because it is too large
Load Diff
2
tests/snmpsim/alcoma-almp.snmprec
Normal file
2
tests/snmpsim/alcoma-almp.snmprec
Normal file
@ -0,0 +1,2 @@
|
||||
1.3.6.1.2.1.1.1.0|4x|41 4C 43 4F 4D 41 20 49 50 2D 53 74 61 63 6B 00
|
||||
1.3.6.1.2.1.1.2.0|6|.1.3.6.1.4.1.12140.2
|
Reference in New Issue
Block a user