* Update Info.pm
* Create Hirschmann.pm
* Update Hirschmann.pm
* Use name instead of OID in serial number
* RS40 Comment
* MAC address of the switch (on the CPU pseudo interface)
* Update README
Add SNMP::Info::Layer2::Hirschmann
* Update Hirschmann.pm
release 3.84
* Retrieve Serial Number and device type for CheckPoint devices at right place in MIB
* Add support for SteelheadEx and Steelfusion
* Update Info.pm
* fix tests
Co-authored-by: Oliver Gorwits <ollyg@users.noreply.github.com>
Co-authored-by: Oliver Gorwits <oliver@cpan.org>
* CH: add white rabbit
* CH: .
* CH: better version field
* CH: whiterabbit fix version and pod documentation
* fix mib links
and a few wihtespace cleanups
* map enterprises.96
map enterprises.96 to whiterabbit.
this is the id of cern, only layer3::whiterabbit uses it
* removed inherited modules
remove modules that get pulled in via snmp::info::layer3
use SNMP::Info::LLDP;
use SNMP::Info::Bridge;
remove module that doesn't seems to be used
use Socket;
Co-authored-by: Christoph Handel <c.handel@gsi.de>
Co-authored-by: nick n <39005454+inphobia@users.noreply.github.com>
When a method is resolved via AUTOLOAD (eg for objects defined in %FUNCS),
adding the method to the symbol table leads to skipping AUTOLOAD on subsequent
calls to the method. The method table however is global to the interpreter,
so even when a new SNMP::Info instance is created for a different device, all
methods created by a previous device are just "carried over" to the new one
if they are put into the symbol table. This breaks a method like "v_name",
which may resolve differently in different device classes, in the use case
where devices from different classes are polled one after another (even if
new SNMP::Info object instances are used every time).