diff --git a/ChangeLog b/ChangeLog index b932cafa..a4e97dd9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,7 +3,7 @@ ChangeLog $Id$ version 1.04 + Added C1130 and C1240 to L2::Aironet (Ralf Gross) - + Added detection for Cisco 2960, 2940. + + Added detection for Cisco 2960, 2940, 3400 w/ MetroBase + Added generic L2::Cisco Class * Corrected detection for Cisco Supervisor Engine 2 and 32 (IOS). * Fixed warnings in CiscoStack diff --git a/Info.pm b/Info.pm index bb2f4cc5..e89bdf9a 100644 --- a/Info.pm +++ b/Info.pm @@ -819,6 +819,7 @@ Algorithm for Subclass Detection: Catalyst 2900XL,2950,3500XL -> SNMP::Info::Layer2::C2900 Catalyst 2970 -> SNMP::Info::Layer3::C6500 Catalyst 3550/3548 -> SNMP::Info::Layer3::C3550 + Cisco 3400 w/ MetroBase -> SNMP::Info::Layer3::C3550 Catalyst WS-C 2926,5xxx -> SNMP::Info::Layer2::Catalyst Cisco (not covered by above) -> SNMP::Info::Layer2::Cisco Extreme -> SNMP::Info::Layer3::Extreme @@ -922,7 +923,8 @@ sub device_type { $objtype = 'SNMP::Info::Layer2::Catalyst' if ($desc =~ /WS-C\d{4}/); # Catalyst 3550 / 3548 Layer2 only switches - $objtype = 'SNMP::Info::Layer3::C3550' if ($desc =~ /C3550/); + # Cisco 3400 w/ MetroBase Image + $objtype = 'SNMP::Info::Layer3::C3550' if ($desc =~ /(C3550|ME340x)/); # Cisco 2970 $objtype = 'SNMP::Info::Layer3::C6500' if ($desc =~ /(C2970|C2960)/);