mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
newdevice: Added support for Cisco IPS (#4561)
* newdevice: Added support for Cisco IPS * Add snmprec * fix
This commit is contained in:
committed by
Tony Murray
parent
fc0871f716
commit
3a6c6985a3
@@ -703,6 +703,17 @@ $config['os'][$os]['over'][1]['text'] = 'CPU Usage';
|
||||
$config['os'][$os]['over'][2]['graph'] = 'device_mempool';
|
||||
$config['os'][$os]['over'][2]['text'] = 'Memory Usage';
|
||||
|
||||
$os = 'cips';
|
||||
$config['os'][$os]['text'] = 'Cisco Intrusion Prevention System';
|
||||
$config['os'][$os]['type'] = 'network';
|
||||
$config['os'][$os]['icon'] = 'cisco';
|
||||
$config['os'][$os]['over'][0]['graph'] = 'device_bits';
|
||||
$config['os'][$os]['over'][0]['text'] = 'Device Traffic';
|
||||
$config['os'][$os]['over'][1]['graph'] = 'device_processor';
|
||||
$config['os'][$os]['over'][1]['text'] = 'CPU Usage';
|
||||
$config['os'][$os]['over'][2]['graph'] = 'device_mempool';
|
||||
$config['os'][$os]['over'][2]['text'] = 'Memory Usage';
|
||||
|
||||
// Brocade NOS
|
||||
$os = 'nos';
|
||||
$config['os'][$os]['text'] = 'Brocade NOS';
|
||||
|
15
includes/discovery/os/cips.inc.php
Normal file
15
includes/discovery/os/cips.inc.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/*
|
||||
* LibreNMS
|
||||
*
|
||||
* Copyright (c) 2016 Søren Friis Rosiak <sorenrosiak@gmail.com>
|
||||
* 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.
|
||||
*/
|
||||
|
||||
if (starts_with($sysDescr, 'Cisco Intrusion Prevention System')) {
|
||||
$os = 'cips';
|
||||
}
|
15
includes/polling/os/cips.inc.php
Normal file
15
includes/polling/os/cips.inc.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
/*
|
||||
* LibreNMS
|
||||
*
|
||||
* Copyright (c) 2016 Søren Friis Rosiak <sorenrosiak@gmail.com>
|
||||
* 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.
|
||||
*/
|
||||
|
||||
$data = explode(" ", $poll_device['sysDescr']);
|
||||
$version = $data['5'];
|
||||
$hardware = $data['7'];
|
@@ -312,6 +312,11 @@ class DiscoveryTest extends \PHPUnit_Framework_TestCase
|
||||
$this->checkOS('cimc');
|
||||
}
|
||||
|
||||
public function testCips()
|
||||
{
|
||||
$this->checkOS('cips');
|
||||
}
|
||||
|
||||
public function testCiscosb()
|
||||
{
|
||||
$this->checkOS('ciscosb');
|
||||
|
1
tests/snmpsim/cips.snmprec
Normal file
1
tests/snmpsim/cips.snmprec
Normal file
@@ -0,0 +1 @@
|
||||
1.3.6.1.2.1.1.1.0|4|Cisco Intrusion Prevention System, Version 7.1(8)E4 Platform: IPS4270-20-K9
|
Reference in New Issue
Block a user