diff --git a/lib/SNMP/Info.pm b/lib/SNMP/Info.pm index 14a35471..3f3cd2ba 100644 --- a/lib/SNMP/Info.pm +++ b/lib/SNMP/Info.pm @@ -501,6 +501,12 @@ SNMP::Info::Layer2::3Com - SNMP Interface to L2 3Com Switches See documentation in L for details. +=item SNMP::Info::Layer2::Adtran + +Subclass for Adtran devices. + +See documentation in L for details. + =item SNMP::Info::Layer2::Airespace Subclass for Cisco (Airespace) wireless controllers. @@ -724,6 +730,12 @@ This class covers Catalyst 6500s in native mode, hybrid mode. Catalyst See documentation in L for details. +=item SNMP::Info::Layer3::Checkpoint + +Subclass for Checkpoint devices + +See documentation in L for details. + =item SNMP::Info::Layer3::Cisco This is a simple wrapper around layer 3 for IOS devices and the base layer 3 @@ -754,6 +766,12 @@ Subclass for Avaya/Nortel Contivity/VPN Routers. See documentation in L for details. +=item SNMP::Info::Layer3::DLink + +Subclass for DLink devices. + +See documentation in L for details. + =item SNMP::Info::Layer3::Dell Subclass for Dell PowerConnect switches. D-Link, the IBM BladeCenter @@ -931,6 +949,12 @@ Alcatel-Lucent SR Class. See documentation in L for details. +=item SNMP::Info::Layer3::VyOS + +Subclass for VyOS routers. + +See documentation in L for details. + =item SNMP::Info::Layer3::VMware Subclass for VMware ESXi hosts. @@ -957,6 +981,12 @@ SNMP Interface to APC UPS devices See documentation in L for details. +=item SNMP::Info::Layer7::CiscoIPS + +SNMP Interface to Cisco IPS devices + +See documentation in L for details. + =item SNMP::Info::Layer7::Netscaler SNMP Interface to Citrix Netscaler appliances diff --git a/xt/00_local_docininfo.t b/xt/00_local_docininfo.t index 9bb6086c..95095de3 100644 --- a/xt/00_local_docininfo.t +++ b/xt/00_local_docininfo.t @@ -15,7 +15,7 @@ plan qw(no_plan); my %Items; # Grab all the =item's from Info.pm -open (I,"blib/lib/SNMP/Info.pm") or fail("Can't open Info.pm"); +open (I,"lib/SNMP/Info.pm") or fail("Can't open Info.pm"); while () { next unless /^\s*=item\s*(\S+)/; $Items{$1}++; @@ -25,11 +25,11 @@ close I; #warn "items : ",join(', ',keys %Items),"\n"; # Check that each package is represented in Info.pm docs -find({wanted => \&check_version, no_chdir => 1}, 'blib'); +find({wanted => \&check_version, no_chdir => 1}, 'lib'); sub check_version { # $_ is the full path to the file - return unless (m{blib/lib/}xms and m{\.pm \z}xms); + return unless (m{lib/}xms and m{\.pm \z}xms); my $content = read_file($_);