newdevice: Added support for Aruba ClearPass devices (#6528)

This commit is contained in:
Neil Lathwood 2017-05-02 13:46:02 +01:00 committed by Tony Murray
parent eca2436d54
commit e2f0965b5c
6 changed files with 60 additions and 1 deletions

View File

Before

Width:  |  Height:  |  Size: 8.6 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -1,7 +1,7 @@
os: arubaos
text: ArubaOS
type: wireless
icon: arubaos
icon: aruba
over:
- { graph: device_arubacontroller_numaps, text: 'Number of APs' }
- { graph: device_arubacontroller_numclients, text: 'Number of Clients' }

View File

@ -0,0 +1,13 @@
os: clearpass
text: 'Aruba Clearpass'
type: appliance
icon: aruba
over:
- { graph: device_bits, text: 'Device Traffic' }
- { graph: device_storage, text: 'Storage' }
discovery:
-
sysObjectId:
- .1.3.6.1.4.1.8072.3.2.10
sysDescr_regex:
- '/^ClearPass Policy Manager/'

View File

@ -0,0 +1,39 @@
<?php
/**
* clearpass.inc.php
*
* LibreNMS os poller module for Aruba Clearpass
*
* 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 Neil Lathwood
* @author Neil Lathwood <neil@lathwood.co.uk>
*/
$hardware_oid = '.1.3.6.1.4.1.14823.1.6.1.1.1.1.1.1.0';
$serial_oid = '.1.3.6.1.4.1.14823.1.6.1.1.1.1.1.2.0';
$firmware_oid = '.1.3.6.1.4.1.14823.1.6.1.1.1.1.1.3.0';
$clearpass_data = snmp_get_multi_oid($device, "$hardware_oid $serial_oid $firmware_oid");
$hardware = trim($clearpass_data[$hardware_oid], '"');
$serial = trim($clearpass_data[$serial_oid], '"');
$version = trim($clearpass_data[$firmware_oid], '"');
unset(
$clearpass_data,
$hardware_oid,
$firmware_oid
);

View File

@ -480,6 +480,11 @@ class DiscoveryTest extends \PHPUnit_Framework_TestCase
$this->checkOS('ciscowlc', 'ciscowlc2');
}
public function testClearPass()
{
$this->checkOS('clearpass');
}
public function testCmts()
{
$this->checkOS('cmts');

View File

@ -0,0 +1,2 @@
1.3.6.1.2.1.1.1.0|4|ClearPass Policy Manager 6.5.7.85381, Model: CP-HW-5K, FIPS Mode: Disabled, High Capacity Guest Mode: Disabled
1.3.6.1.2.1.1.2.0|6|1.3.6.1.4.1.8072.3.2.10