librenms-librenms/includes/polling/cisco-asa-firewall.inc.php
boudreau 68d42b065e device: Updated OIDs for Cisco FTD model 9300
* adding new device Firepower9300

* Update ftd.snmprec

* Add Connections graphs to FTD Firewall

* bad cut and paste, good catch
2018-02-28 13:15:31 +00:00

48 lines
1.9 KiB
PHP

<?php
/*
* LibreNMS
*
* Copyright (c) 2014 Neil Lathwood <https://github.com/laf/ fua http://www.lathwood.co.uk>
*
* 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.
*/
use LibreNMS\RRD\RrdDefinition;
if ($device['os_group'] == 'cisco' && ( $device['os'] == 'asa' || $device['os'] == 'ftd' ) && $device['type'] == 'firewall') {
$oid_list = 'cfwConnectionStatValue.protoIp.currentInUse';
$temp_data = snmpwalk_cache_double_oid($device, $oid_list, array(), 'CISCO-FIREWALL-MIB');
foreach ($temp_data as $oid => $result) {
$oid = substr(strchr($oid, '.'), 1);
$data[$oid]['data'] = $result['cfwConnectionStatValue'];
$asa_db = dbFetchCell('SELECT `ciscoASA_id` FROM `ciscoASA` WHERE `device_id` = ? AND `oid` = ?', array($device['device_id'], $oid));
if (!is_numeric($asa_db)) {
$asa_db = dbInsert(array('device_id' => $device['device_id'], 'oid' => $oid, 'data' => $result['cfwConnectionStatValue']), 'ciscoASA');
} else {
$asa_db = dbUpdate(array('data' => $result['cfwConnectionStatValue']), 'ciscoASA', 'device_id=?', array($device['device_id']));
}
$data[$oid]['db_id'] = $asa_db;
}
if ($data['currentInUse']) {
$rrd_def = RrdDefinition::make()->addDataset('connections', 'GAUGE', 0);
$fields = array(
'connections' => $data['currentInUse']['data'],
);
$tags = compact('rrd_def');
data_update($device, 'asa_conns', $tags, $fields);
$graphs['asa_conns'] = true;
echo ' ASA Connections';
}
unset($data, $rrd_def);
}//end if