mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
232 lines
8.3 KiB
PHP
232 lines
8.3 KiB
PHP
<?php
|
|
|
|
use LibreNMS\RRD\RrdDefinition;
|
|
use LibreNMS\Util\IP;
|
|
|
|
if ($device['os_group'] == 'cisco') {
|
|
// FIXME - seems to be broken. IPs appear with leading zeroes.
|
|
$ipsec_array = snmpwalk_cache_oid($device, 'cipSecTunnelEntry', [], 'CISCO-IPSEC-FLOW-MONITOR-MIB');
|
|
if (! empty($ipsec_array)) {
|
|
$ike_array = snmpwalk_cache_oid($device, 'cikeTunnelEntry', [], 'CISCO-IPSEC-FLOW-MONITOR-MIB');
|
|
}
|
|
|
|
$tunnels_db = dbFetchRows('SELECT * FROM `ipsec_tunnels` WHERE `device_id` = ?', [$device['device_id']]);
|
|
foreach ($tunnels_db as $tunnel) {
|
|
if (empty($tunnel['peer_addr']) && empty($tunnel['local_addr'])) {
|
|
dbDelete('ipsec_tunnels', '`tunnel_id` = ?', [$tunnel['tunnel_id']]);
|
|
}
|
|
|
|
$tunnels[$tunnel['peer_addr']] = $tunnel;
|
|
}
|
|
|
|
$valid_tunnels = [];
|
|
|
|
foreach ($ipsec_array as $index => $tunnel) {
|
|
if (isset($tunnel['cipSecTunIkeTunnelIndex']) && isset($ike_array[$tunnel['cipSecTunIkeTunnelIndex']]) && is_array($ike_array[$tunnel['cipSecTunIkeTunnelIndex']])) {
|
|
$tunnel_full = array_merge($tunnel, $ike_array[$tunnel['cipSecTunIkeTunnelIndex']]);
|
|
} else {
|
|
$tunnel_full = $tunnel;
|
|
$tunnel_full['cikeTunLocalValue'] = (string) IP::fromHexString($tunnel_full['cipSecTunLocalAddr']);
|
|
$tunnel_full['cikeTunLocalName'] = (string) IP::fromHexString($tunnel_full['cipSecTunLocalAddr']);
|
|
}
|
|
|
|
d_echo($tunnel_full);
|
|
|
|
echo "Tunnel $index (" . $tunnel_full['cipSecTunIkeTunnelIndex'] . ")\n";
|
|
|
|
$address = isset($tunnel_full['cikeTunRemoteValue']) ? $tunnel_full['cikeTunRemoteValue'] : (string) IP::fromHexString($tunnel_full['cipSecTunRemoteAddr']);
|
|
|
|
echo 'Address ' . $address . "\n";
|
|
|
|
if ($tunnel_full['cipSecTunIkeTunnelAlive'] == 'false') {
|
|
echo "IKE is not valid anymore, and was replaced on the router by a newer one.\n";
|
|
}
|
|
|
|
$oids = [
|
|
'cipSecTunInOctets',
|
|
'cipSecTunInDecompOctets',
|
|
'cipSecTunInPkts',
|
|
'cipSecTunInDropPkts',
|
|
'cipSecTunInReplayDropPkts',
|
|
'cipSecTunInAuths',
|
|
'cipSecTunInAuthFails',
|
|
'cipSecTunInDecrypts',
|
|
'cipSecTunInDecryptFails',
|
|
'cipSecTunOutOctets',
|
|
'cipSecTunOutUncompOctets',
|
|
'cipSecTunOutPkts',
|
|
'cipSecTunOutDropPkts',
|
|
'cipSecTunOutAuths',
|
|
'cipSecTunOutAuthFails',
|
|
'cipSecTunOutEncrypts',
|
|
'cipSecTunOutEncryptFails',
|
|
];
|
|
|
|
$db_oids = [
|
|
'cipSecTunStatus' => 'tunnel_status',
|
|
'cikeTunLocalName' => 'tunnel_name',
|
|
'cikeTunLocalValue' => 'local_addr',
|
|
];
|
|
|
|
if (! isset($tunnels[$address]) && ! empty($address)) {
|
|
$tunnel_id = dbInsert([
|
|
'device_id' => $device['device_id'],
|
|
'peer_addr' => $address,
|
|
'local_addr' => $tunnel_full['cikeTunLocalValue'],
|
|
'tunnel_name' => $tunnel_full['cikeTunLocalName'],
|
|
], 'ipsec_tunnels');
|
|
$valid_tunnels[] = $tunnel_id;
|
|
} else {
|
|
foreach ($db_oids as $db_oid => $db_value) {
|
|
$db_update[$db_value] = isset($tunnel_full[$db_oid]) ? $tunnel_full[$db_oid] : '';
|
|
}
|
|
|
|
if (! empty($tunnels[$address]['tunnel_id'])) {
|
|
$updated = dbUpdate(
|
|
$db_update,
|
|
'ipsec_tunnels',
|
|
'`tunnel_id` = ?',
|
|
[$tunnels[$address]['tunnel_id']]
|
|
);
|
|
$valid_tunnels[] = $tunnels[$address]['tunnel_id'];
|
|
}
|
|
}
|
|
|
|
if (is_numeric($tunnel_full['cipSecTunHcInOctets']) &&
|
|
is_numeric($tunnel_full['cipSecTunHcInDecompOctets']) &&
|
|
is_numeric($tunnel_full['cipSecTunHcOutOctets']) &&
|
|
is_numeric($tunnel_full['cipSecTunHcOutUncompOctets'])
|
|
) {
|
|
echo 'HC ';
|
|
|
|
$tunnel_full['cipSecTunInOctets'] = $tunnel_full['cipSecTunHcInOctets'];
|
|
$tunnel_full['cipSecTunInDecompOctets'] = $tunnel_full['cipSecTunHcInDecompOctets'];
|
|
$tunnel_full['cipSecTunOutOctets'] = $tunnel_full['cipSecTunHcOutOctets'];
|
|
$tunnel_full['cipSecTunOutUncompOctets'] = $tunnel_full['cipSecTunHcOutUncompOctets'];
|
|
}
|
|
|
|
$rrd_name = ['ipsectunnel', $address];
|
|
$rrd_def = new RrdDefinition();
|
|
$rrd_def->disableNameChecking();
|
|
foreach ($oids as $oid) {
|
|
$oid_ds = str_replace('cipSec', '', $oid);
|
|
$rrd_def->addDataset($oid_ds, 'COUNTER', null, 1000000000);
|
|
}
|
|
|
|
$fields = [];
|
|
|
|
foreach ($oids as $oid) {
|
|
if (is_numeric($tunnel_full[$oid])) {
|
|
$value = $tunnel_full[$oid];
|
|
} else {
|
|
$value = '0';
|
|
}
|
|
$fields[$oid] = $value;
|
|
}
|
|
|
|
if (isset($address)) {
|
|
$tags = compact('address', 'rrd_name', 'rrd_def');
|
|
data_update($device, 'ipsectunnel', $tags, $fields);
|
|
|
|
// $os->enableGraph('ipsec_tunnels');
|
|
}
|
|
}//end foreach
|
|
|
|
if (! empty($valid_tunnels)) {
|
|
d_echo($valid_tunnels);
|
|
dbDelete(
|
|
'ipsec_tunnels',
|
|
'`tunnel_id` NOT IN ' . dbGenPlaceholders(count($valid_tunnels)) . ' AND `device_id`=?',
|
|
array_merge($valid_tunnels, [$device['device_id']])
|
|
);
|
|
}
|
|
|
|
unset($rrd_name, $rrd_def, $fields, $oids, $data, $data, $oid, $tunnel);
|
|
}
|
|
|
|
if ($device['os_group'] == 'firebrick') {
|
|
$ipsec_array = snmpwalk_cache_oid($device, 'fbIPsecConnectionEntry', [], 'FIREBRICK-IPSEC-MIB');
|
|
|
|
$tunnels = [];
|
|
|
|
$tunnels_db = dbFetchRows('SELECT * FROM `ipsec_tunnels` WHERE `device_id` = ?', [$device['device_id']]);
|
|
foreach ($tunnels_db as $tunnel) {
|
|
if (empty($tunnel['peer_addr']) && empty($tunnel['local_addr'])) {
|
|
dbDelete('ipsec_tunnels', '`tunnel_id` = ?', [$tunnel['tunnel_id']]);
|
|
}
|
|
|
|
$tunnels[$tunnel['tunnel_name']] = $tunnel;
|
|
}
|
|
|
|
$tunnel_states = [
|
|
0 => 'badconfig',
|
|
1 => 'disabled',
|
|
2 => 'waiting',
|
|
3 => 'ondemand',
|
|
4 => 'lingering',
|
|
5 => 'reconnect-wait',
|
|
6 => 'down',
|
|
7 => 'initiating-eap',
|
|
8 => 'initiating-auth',
|
|
9 => 'initial',
|
|
10 => 'closing',
|
|
11 => 'childless',
|
|
12 => 'active',
|
|
];
|
|
$valid_tunnels = [];
|
|
$db_oids = [
|
|
'fbIPsecConnectionState' => 'tunnel_status',
|
|
'fbIPsecConnectionName' => 'tunnel_name',
|
|
];
|
|
|
|
foreach ($ipsec_array as $index => $tunnel) {
|
|
if (
|
|
(! isset($tunnels[$tunnel['fbIPsecConnectionName']]) || ! is_array($tunnels[$tunnel['fbIPsecConnectionName']]))
|
|
&& ! empty($tunnel['fbIPsecConnectionName'])
|
|
) {
|
|
$tunnel_id = dbInsert([
|
|
'device_id' => $device['device_id'],
|
|
'peer_addr' => $tunnel['fbIPsecConnectionPeerAddress'],
|
|
'local_addr' => $device['hostname'],
|
|
'tunnel_name' => $tunnel['fbIPsecConnectionName'],
|
|
'tunnel_status' => $tunnel_states[$tunnel['fbIPsecConnectionState']],
|
|
], 'ipsec_tunnels');
|
|
$valid_tunnels[] = $tunnel_id;
|
|
} else {
|
|
foreach ($db_oids as $db_oid => $db_value) {
|
|
if ($db_value == 'tunnel_status') {
|
|
$db_update[$db_value] = $tunnel_states[$tunnel[$db_oid]];
|
|
} else {
|
|
$db_update[$db_value] = $tunnel[$db_oid];
|
|
}
|
|
}
|
|
|
|
if (! empty($tunnels[$tunnel['fbIPsecConnectionName']]['tunnel_id'])) {
|
|
$updated = dbUpdate(
|
|
$db_update,
|
|
'ipsec_tunnels',
|
|
'`tunnel_id` = ?',
|
|
[$tunnels[$tunnel['fbIPsecConnectionName']]['tunnel_id']]
|
|
);
|
|
$valid_tunnels[] = $tunnels[$tunnel['fbIPsecConnectionName']]['tunnel_id'];
|
|
}
|
|
}
|
|
}
|
|
|
|
if (! empty($valid_tunnels)) {
|
|
d_echo($valid_tunnels);
|
|
dbDelete(
|
|
'ipsec_tunnels',
|
|
'`device_id`=? AND `tunnel_id` NOT IN ' . dbGenPlaceholders(count($valid_tunnels)),
|
|
array_merge([$device['device_id']], $valid_tunnels)
|
|
);
|
|
}
|
|
}
|
|
|
|
unset(
|
|
$ipsec_array,
|
|
$ike_array,
|
|
$tunnels_db,
|
|
$valid_tunnels
|
|
);
|