mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* Adding VRP support for FDB table using HUAWEI-L2MAM-MIB * Test data + review corrections * Test data correction * Remove double text * PHP EOL at the right spot * Rename vrp_5720.fdb.snmprec to vrp_5720.snmprec * Update vrp_5720.snmprec * Create vrp_5720.json * Update vrp_5720.json * Update vrp_5720.json * Fix fdb query, test data, and mibs
39 lines
1.5 KiB
PHP
39 lines
1.5 KiB
PHP
<?php
|
|
/*
|
|
* 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.
|
|
|
|
* @package LibreNMS
|
|
* @subpackage discovery
|
|
* @link http://librenms.org
|
|
* @copyright 2018 PipoCanaja <pipocanaja@gmail.com>
|
|
* @author PipoCanaja <pipocanaja@gmail.com>
|
|
* @author Tony Murray <murraytony@gmail.com> (bridge.inc.php used as base)
|
|
*/
|
|
|
|
$fdbPort_table = snmpwalk_group($device, 'hwDynFdbPort', 'HUAWEI-L2MAM-MIB');
|
|
|
|
if (!empty($fdbPort_table)) {
|
|
echo 'HUAWEI-L2MAM-MIB:'.PHP_EOL;
|
|
$data_oid = 'hwDynFdbPort';
|
|
// Collect data and populate $insert
|
|
foreach ($fdbPort_table as $mac => $data) {
|
|
foreach ($data[$data_oid] as $vlan => $basePort) {
|
|
$ifIndex=$basePort[0];
|
|
$port = get_port_by_index_cache($device['device_id'], $ifIndex);
|
|
$port_id = $port['port_id'];
|
|
$mac_address = implode(array_map('zeropad', explode(':', $mac)));
|
|
if (strlen($mac_address) != 12) {
|
|
d_echo("MAC address padding failed for $mac\n");
|
|
continue;
|
|
}
|
|
$vlan_id = isset($vlans_dict[$vlan]) ? $vlans_dict[$vlan] : 0;
|
|
$insert[$vlan_id][$mac_address]['port_id'] = $port_id;
|
|
d_echo("vlan $vlan mac $mac_address port ($ifIndex) $port_id\n");
|
|
}
|
|
}
|
|
}
|