diff --git a/ChangeLog b/ChangeLog index cfde4f46..77d20121 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,10 +2,16 @@ SNMP::Info - Friendly OO-style interface to Network devices using SNMP. version 3.19 + [NEW FEATURES] + + * Support for Ubiquiti Access Points in new class L2::Ubiquiti (begemot) + * Preliminary support for 3Com switches in new class L2::3Com (begemot) + [BUG FIXES] * Fix Avaya detection lldp_port() * Silence uninitialized value warning in L3::Cisco + * H3C fixes (begemot) version 3.18 (2014-07-02) diff --git a/Info.pm b/Info.pm index 7ab09c14..c583a0ef 100644 --- a/Info.pm +++ b/Info.pm @@ -487,6 +487,12 @@ See documentation in L for details. =over +=item SNMP::Info::Layer2::3Com + +SNMP::Info::Layer2::3Com - SNMP Interface to L2 3Com Switches + +See documentation in L for details. + =item SNMP::Info::Layer2::Airespace Subclass for Cisco (Airespace) wireless controllers. @@ -618,6 +624,12 @@ SNMP Interface to Juniper (Trapeze) Wireless Controllers See documentation in L for details. +=item SNMP::Info::Layer2::Ubiquiti + +SNMP Interface to Ubiquiti Access Points + +See documentation in L for details. + =item SNMP::Info::Layer2::ZyXEL_DSLAM Zyxel DSLAMs. Need I say more? @@ -1472,7 +1484,7 @@ sub device_type { 11 => 'SNMP::Info::Layer2::HP', 18 => 'SNMP::Info::Layer3::BayRS', 42 => 'SNMP::Info::Layer3::Sun', - 43 => 'SNMP::Info::Layer2::3Com', + 43 => 'SNMP::Info::Layer2::3Com', 45 => 'SNMP::Info::Layer2::Baystack', 171 => 'SNMP::Info::Layer3::Dell', 244 => 'SNMP::Info::Layer3::Lantronix', @@ -1512,7 +1524,7 @@ sub device_type { my %l2sysoidmap = ( 9 => 'SNMP::Info::Layer2::Cisco', 11 => 'SNMP::Info::Layer2::HP', - 43 => 'SNMP::Info::Layer2::3Com', + 43 => 'SNMP::Info::Layer2::3Com', 45 => 'SNMP::Info::Layer2::Baystack', 171 => 'SNMP::Info::Layer3::Dell', 207 => 'SNMP::Info::Layer2::Allied',