diff --git a/Changes b/Changes index 595dbf0b..a811627a 100644 --- a/Changes +++ b/Changes @@ -6,6 +6,7 @@ Version 3.87 (2022-08-12) [ENHANCEMENTS] + * #462 SNMP::Info::Layer3::PaloAlto to include layer 2 * #461 Expose lldLocChassisId as $lldp->lldp_loc_id * Update CiscoStats.pm for Amsterdam IOS-XE release diff --git a/lib/SNMP/Info/Layer3/PaloAlto.pm b/lib/SNMP/Info/Layer3/PaloAlto.pm index 79d319c2..2369400d 100644 --- a/lib/SNMP/Info/Layer3/PaloAlto.pm +++ b/lib/SNMP/Info/Layer3/PaloAlto.pm @@ -42,12 +42,14 @@ our ($VERSION, %GLOBALS, %MIBS, %FUNCS, %MUNGE); $VERSION = '3.86'; %MIBS = ( + %SNMP::Info::Layer2::MIBS, %SNMP::Info::Layer3::MIBS, 'PAN-COMMON-MIB' => 'panSysSwVersion', 'PAN-PRODUCTS-MIB' => 'panProductsMibsModule', ); %GLOBALS = ( + %SNMP::Info::Layer2::GLOBALS, %SNMP::Info::Layer3::GLOBALS, 'mac' => 'ifPhysAddress.1', # Oids from PAN-COMMON-MIB. @@ -57,10 +59,12 @@ $VERSION = '3.86'; ); %FUNCS = ( + %SNMP::Info::Layer2::FUNCS, %SNMP::Info::Layer3::FUNCS, ); %MUNGE = ( + %SNMP::Info::Layer2::MUNGE, %SNMP::Info::Layer3::MUNGE, );