mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
78 lines
2.4 KiB
PHP
78 lines
2.4 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
* LibreNMS
|
||
|
*
|
||
|
* 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.
|
||
|
*
|
||
|
* @package LibreNMS
|
||
|
* @link https://www.librenms.org
|
||
|
* @copyright 2017 Thomas GAGNIERE
|
||
|
* @author Thomas GAGNIERE <tgagniere@reseau-concept.com>
|
||
|
*/
|
||
|
|
||
|
namespace LibreNMS\OS;
|
||
|
|
||
|
use LibreNMS\Device\WirelessSensor;
|
||
|
use LibreNMS\Interfaces\Discovery\Sensors\WirelessApCountDiscovery;
|
||
|
use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery;
|
||
|
use LibreNMS\OS\Shared\Zyxel;
|
||
|
|
||
|
class Zyxelwlc extends Zyxel implements WirelessApCountDiscovery, WirelessClientsDiscovery
|
||
|
{
|
||
|
public function discoverWirelessClients()
|
||
|
{
|
||
|
$oid = '.1.3.6.1.4.1.890.1.15.3.3.1.4.0'; // ZYXEL-ES-CAPWAP::capwapTotalStation
|
||
|
$total_station = (int) snmp_get($this->getDeviceArray(), '.1.3.6.1.4.1.890.1.15.3.3.1.4.0', '-Ovq'); // ZYXEL-ES-CAPWAP::capwapTotalStation
|
||
|
|
||
|
$sensors[] = new WirelessSensor(
|
||
|
'clients',
|
||
|
$this->getDeviceId(),
|
||
|
$oid,
|
||
|
'zyxelwlc',
|
||
|
0,
|
||
|
'Clients: Total',
|
||
|
$total_station
|
||
|
);
|
||
|
|
||
|
return $sensors;
|
||
|
}
|
||
|
|
||
|
public function discoverWirelessApCount()
|
||
|
{
|
||
|
$oid = '.1.3.6.1.4.1.890.1.15.3.3.1.1.0'; // ZYXEL-ES-CAPWAP::capwapOnlineAP
|
||
|
$number_ap = (int) snmp_get($this->getDeviceArray(), '.11.3.6.1.4.1.890.1.15.3.3.1.1.0', '-Ovq'); // ZYXEL-ES-CAPWAP::capwapOnlineAP
|
||
|
|
||
|
if ($this->getDeviceArray()['hardware'] == 'NXC2500') {
|
||
|
$max_ap = 64;
|
||
|
} elseif ($this->getDeviceArray()['hardware'] == 'NXC5200') {
|
||
|
$max_ap = 240;
|
||
|
} elseif ($this->getDeviceArray()['hardware'] == 'NXC5500') {
|
||
|
$max_ap = 1024;
|
||
|
} else {
|
||
|
$max_ap = 0;
|
||
|
}
|
||
|
|
||
|
return [
|
||
|
new WirelessSensor(
|
||
|
'ap-count',
|
||
|
$this->getDeviceId(),
|
||
|
$oid,
|
||
|
'zyxelwlc',
|
||
|
0,
|
||
|
'Connected APs',
|
||
|
$number_ap,
|
||
|
1,
|
||
|
1,
|
||
|
'sum',
|
||
|
null,
|
||
|
$max_ap,
|
||
|
0
|
||
|
),
|
||
|
];
|
||
|
}
|
||
|
}
|