#462 SNMP::Info::Layer3::PaloAlto to include layer 2

This commit is contained in:
Oliver Gorwits
2022-08-12 17:24:56 +01:00
parent c514baa9b2
commit 7fd2e31913
2 changed files with 5 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ Version 3.87 (2022-08-12)
[ENHANCEMENTS] [ENHANCEMENTS]
* #462 SNMP::Info::Layer3::PaloAlto to include layer 2
* #461 Expose lldLocChassisId as $lldp->lldp_loc_id * #461 Expose lldLocChassisId as $lldp->lldp_loc_id
* Update CiscoStats.pm for Amsterdam IOS-XE release * Update CiscoStats.pm for Amsterdam IOS-XE release

View File

@@ -42,12 +42,14 @@ our ($VERSION, %GLOBALS, %MIBS, %FUNCS, %MUNGE);
$VERSION = '3.86'; $VERSION = '3.86';
%MIBS = ( %MIBS = (
%SNMP::Info::Layer2::MIBS,
%SNMP::Info::Layer3::MIBS, %SNMP::Info::Layer3::MIBS,
'PAN-COMMON-MIB' => 'panSysSwVersion', 'PAN-COMMON-MIB' => 'panSysSwVersion',
'PAN-PRODUCTS-MIB' => 'panProductsMibsModule', 'PAN-PRODUCTS-MIB' => 'panProductsMibsModule',
); );
%GLOBALS = ( %GLOBALS = (
%SNMP::Info::Layer2::GLOBALS,
%SNMP::Info::Layer3::GLOBALS, %SNMP::Info::Layer3::GLOBALS,
'mac' => 'ifPhysAddress.1', 'mac' => 'ifPhysAddress.1',
# Oids from PAN-COMMON-MIB. # Oids from PAN-COMMON-MIB.
@@ -57,10 +59,12 @@ $VERSION = '3.86';
); );
%FUNCS = ( %FUNCS = (
%SNMP::Info::Layer2::FUNCS,
%SNMP::Info::Layer3::FUNCS, %SNMP::Info::Layer3::FUNCS,
); );
%MUNGE = ( %MUNGE = (
%SNMP::Info::Layer2::MUNGE,
%SNMP::Info::Layer3::MUNGE, %SNMP::Info::Layer3::MUNGE,
); );