mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
106 lines
4.2 KiB
PHP
106 lines
4.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* timos.inc.php
|
|
*
|
|
* LibreNMS bgp_peers for Timos
|
|
*
|
|
* 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 <https://www.gnu.org/licenses/>.
|
|
*
|
|
* @link https://www.librenms.org
|
|
*
|
|
* @copyright 2020 LibreNMS Contributors
|
|
* @author LibreNMS Contributors
|
|
*/
|
|
|
|
use LibreNMS\Config;
|
|
use LibreNMS\Util\IP;
|
|
|
|
if ($device['os'] == 'timos') {
|
|
$bgpPeersCache = snmpwalk_cache_multi_oid($device, 'tBgpPeerNgTable', [], 'TIMETRA-BGP-MIB', 'nokia');
|
|
foreach ($bgpPeersCache as $key => $value) {
|
|
$oid = explode('.', $key);
|
|
$vrfInstance = $oid[0];
|
|
$address = str_replace($oid[0] . '.' . $oid[1] . '.', '', $key);
|
|
if (strlen($address) > 15) {
|
|
$address = IP::fromHexString($address)->compressed();
|
|
}
|
|
$bgpPeers[$vrfInstance][$address] = $value;
|
|
}
|
|
unset($bgpPeersCache);
|
|
|
|
$vrfs = DeviceCache::getPrimary()->vrfs()->select('vrf_id', 'vrf_oid')->get();
|
|
foreach ($vrfs as $vrf) {
|
|
$map_vrf['byId'][$vrf['vrf_id']]['vrf_oid'] = $vrf['vrf_oid'];
|
|
$map_vrf['byOid'][$vrf['vrf_oid']]['vrf_id'] = $vrf['vrf_id'];
|
|
}
|
|
|
|
foreach ($bgpPeers as $vrfOid => $vrf) {
|
|
$vrfId = $map_vrf['byOid'][$vrfOid]['vrf_id'] ?? null;
|
|
|
|
d_echo($vrfId);
|
|
|
|
foreach ($vrf as $address => $value) {
|
|
$astext = \LibreNMS\Util\AutonomousSystem::get($value['tBgpPeerNgPeerAS4Byte'])->name();
|
|
if (! DeviceCache::getPrimary()->bgppeers()->where('bgpPeerIdentifier', $address)->where('vrf_id', $vrfId)->exists()) {
|
|
$peers = [
|
|
'device_id' => $device['device_id'],
|
|
'vrf_id' => $vrfId,
|
|
'bgpPeerIdentifier' => $address,
|
|
'bgpPeerRemoteAs' => $value['tBgpPeerNgPeerAS4Byte'],
|
|
'bgpPeerState' => 'idle',
|
|
'bgpPeerAdminStatus' => 'stop',
|
|
'bgpLocalAddr' => '0.0.0.0',
|
|
'bgpPeerRemoteAddr' => '0.0.0.0',
|
|
'bgpPeerInUpdates' => 0,
|
|
'bgpPeerOutUpdates' => 0,
|
|
'bgpPeerInTotalMessages' => 0,
|
|
'bgpPeerOutTotalMessages' => 0,
|
|
'bgpPeerFsmEstablishedTime' => 0,
|
|
'bgpPeerInUpdateElapsedTime' => 0,
|
|
'astext' => $astext,
|
|
];
|
|
if (empty($vrfId)) {
|
|
unset($peers['vrf_id']);
|
|
}
|
|
|
|
$seenPeerID[] = DeviceCache::getPrimary()->bgppeers()->create($peers)->bgpPeer_id;
|
|
|
|
if (Config::get('autodiscovery.bgp')) {
|
|
$name = gethostbyaddr($address);
|
|
discover_new_device($name, $device, 'BGP');
|
|
}
|
|
echo '+';
|
|
} else {
|
|
$peers = [
|
|
'bgpPeerRemoteAs' => $value['tBgpPeerNgPeerAS4Byte'],
|
|
'astext' => $astext,
|
|
];
|
|
$affected = DeviceCache::getPrimary()->bgppeers()->where('bgpPeerIdentifier', $address)->where('vrf_id', $vrfId)->update($peers);
|
|
$seenPeerID[] = DeviceCache::getPrimary()->bgppeers()->where('bgpPeerIdentifier', $address)->where('vrf_id', $vrfId)->select('bgpPeer_id')->orderBy('bgpPeer_id', 'ASC')->first()->bgpPeer_id;
|
|
echo str_repeat('.', $affected);
|
|
}
|
|
}
|
|
}
|
|
|
|
// clean up peers
|
|
if (! is_null($seenPeerID)) {
|
|
$deleted = DeviceCache::getPrimary()->bgppeers()->whereNotIn('bgpPeer_id', $seenPeerID)->delete();
|
|
echo str_repeat('-', $deleted);
|
|
}
|
|
|
|
unset($bgpPeers);
|
|
// No return statement here, so standard BGP mib will still be polled after this file is executed.
|
|
}
|