librenms/LibreNMS/OS/Ptp800.php
Jellyfrog 20b4215204
Swich links to https (#12511)
* Switch librenms links to https

* Convert librenms links in comments

* Switch gnu.org url to https

* switch php urls to https
2021-02-09 00:29:04 +01:00

122 lines
3.5 KiB
PHP

<?php
/**
* ptp800.php
*
* Cambium
*
* 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 <https://www.gnu.org/licenses/>.
*
* @link https://www.librenms.org
* @copyright 2018 Paul Heinrichs
* @author Paul Heinrichs<pdheinrichs@gmail.com>
*/
namespace LibreNMS\OS;
use LibreNMS\Device\WirelessSensor;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessPowerDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessRateDiscovery;
use LibreNMS\OS;
class Ptp800 extends OS implements
WirelessPowerDiscovery,
WirelessRateDiscovery
{
/**
* 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()
{
$transmit = '.1.3.6.1.4.1.17713.8.12.3.0'; //"CAMBIUM-PTP800-MIB::transmitPower.0"
$receive = '.1.3.6.1.4.1.17713.8.12.1.0'; //"CAMBIUM-PTP800-MIB::receivePower.0";
return [
new WirelessSensor(
'power',
$this->getDeviceId(),
$transmit,
'ptp800-tx',
0,
'PTP800 Transmit',
null,
1,
10
),
new WirelessSensor(
'power',
$this->getDeviceId(),
$receive,
'ptp800-rx',
0,
'PTP800 Receive',
null,
1,
10
),
];
}
/**
* Discover wireless rate. This is in bps. Type is rate.
* Returns an array of LibreNMS\Device\Sensor objects that have been discovered
*
* @return array
*/
public function discoverWirelessRate()
{
$receive = '.1.3.6.1.4.1.17713.8.20.1.0'; //"CAMBIUM-PTP800-MIB::receiveDataRate.0"
$transmit = '.1.3.6.1.4.1.17713.8.20.2.0'; //"CAMBIUM-PTP800-MIB::transmitDataRate.0"
$aggregate = '.1.3.6.1.4.1.17713.8.20.3.0'; //"CAMBIUM-PTP800-MIB::aggregateDataRate.0"
return [
new WirelessSensor(
'rate',
$this->getDeviceId(),
$receive,
'ptp800-rx-rate',
0,
'PTP800 Receive Rate',
null,
1000,
1
),
new WirelessSensor(
'rate',
$this->getDeviceId(),
$transmit,
'ptp800-tx-rate',
0,
'PTP800 Transmit Rate',
null,
1000,
1
),
new WirelessSensor(
'rate',
$this->getDeviceId(),
$aggregate,
'ptp800-ag-rate',
0,
'PTP800 Aggregate Rate',
null,
1000,
1
),
];
}
}