Match for ME340x in Layer3 section, class as L3::C3550 for proper macsuck

(ME340x requires community-based indexing)
This commit is contained in:
Jeroen van Ingen
2010-10-29 13:03:44 +00:00
parent 8748932460
commit 77982188bd
2 changed files with 5 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ version 2.02 ()
* Fix for FWSMs not being detected properly. Special thanks goes to * Fix for FWSMs not being detected properly. Special thanks goes to
Jukka Pirhonen for pointing it out. (Brian De Wolf) Jukka Pirhonen for pointing it out. (Brian De Wolf)
+ Added support for IPv6 to physical address mapping + Added support for IPv6 to physical address mapping
* Added ME340x to L3::C3550
version 2.01 (06/12/09) version 2.01 (06/12/09)
+ Added CiscoStpExtensions Class (Carlos Vicente) + Added CiscoStpExtensions Class (Carlos Vicente)

View File

@@ -1260,6 +1260,10 @@ sub device_type {
$objtype = 'SNMP::Info::Layer3::C6500' $objtype = 'SNMP::Info::Layer3::C6500'
if $desc =~ /(s72033_rp|s3223_rp|s32p3_rp|s222_rp)/; if $desc =~ /(s72033_rp|s3223_rp|s32p3_rp|s222_rp)/;
# Cisco 3400 w/ Layer3 capable image
$objtype = 'SNMP::Info::Layer3::C3550'
if ( $desc =~ /(ME340x)/ );
# Various Cisco blade switches, CBS30x0 and CBS31x0 models # Various Cisco blade switches, CBS30x0 and CBS31x0 models
$objtype = 'SNMP::Info::Layer3::C6500' $objtype = 'SNMP::Info::Layer3::C6500'
if ( $desc =~ /cisco/i and $desc =~ /CBS3[0-9A-Za-z]{3}/ ); if ( $desc =~ /cisco/i and $desc =~ /CBS3[0-9A-Za-z]{3}/ );