mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
fix null exception (#15628)
This commit is contained in:
@@ -203,6 +203,10 @@ if (($device['os'] == 'routeros') && version_compare($device['version'], '7.7',
|
|||||||
$lldp_array = SnmpQuery::hideMib()->walk('TPLINK-LLDPINFO-MIB::lldpNeighborInfoEntry')->table();
|
$lldp_array = SnmpQuery::hideMib()->walk('TPLINK-LLDPINFO-MIB::lldpNeighborInfoEntry')->table();
|
||||||
|
|
||||||
foreach ($lldp_array as $key => $lldp) {
|
foreach ($lldp_array as $key => $lldp) {
|
||||||
|
if (! is_array($lldp['lldpNeighborPortIndexId'])) {
|
||||||
|
// code below will fail so no need to finish this loop occurence.
|
||||||
|
continue;
|
||||||
|
}
|
||||||
$IndexId = key($lldp['lldpNeighborPortIndexId']);
|
$IndexId = key($lldp['lldpNeighborPortIndexId']);
|
||||||
|
|
||||||
$local_ifName = $lldp['lldpNeighborPortId'][$IndexId];
|
$local_ifName = $lldp['lldpNeighborPortId'][$IndexId];
|
||||||
|
Reference in New Issue
Block a user