[RT#86725] - Identify Cisco Catalyst 3850 as Layer3::C6500 (C. Causer)

This commit is contained in:
Oliver Gorwits
2013-07-08 21:19:32 +01:00
parent abfd93ea1b
commit 27120045d2
2 changed files with 5 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ version 3.02 ()
* Support Alcatel devices with layer3 features. * Support Alcatel devices with layer3 features.
* Identify Cisco Aironet 1140 APs as Layer2::Aironet * Identify Cisco Aironet 1140 APs as Layer2::Aironet
* LAN switch support added to Layer3::Aruba class * LAN switch support added to Layer3::Aruba class
* [RT#86725] - Identify Cisco Catalyst 3850 as Layer3::C6500 (C. Causer)
version 3.01 (2013-04-13) version 3.01 (2013-04-13)

View File

@@ -1455,6 +1455,10 @@ sub device_type {
$objtype = 'SNMP::Info::Layer3::C6500' $objtype = 'SNMP::Info::Layer3::C6500'
if ( $desc =~ /cisco/i and $desc =~ /3750/ ); if ( $desc =~ /cisco/i and $desc =~ /3750/ );
# IOS 15.x on Catalyst 3850
$objtype = 'SNMP::Info::Layer3::C6500'
if ( $desc =~ /cisco/i and $desc =~ /CAT3K/ );
# Cisco 2970 # Cisco 2970
$objtype = 'SNMP::Info::Layer3::C6500' $objtype = 'SNMP::Info::Layer3::C6500'
if ( $desc =~ /(C2970|C2960)/ ); if ( $desc =~ /(C2970|C2960)/ );