|
From: Robert K. <r....@cr...> - 2010-09-01 16:04:18
|
On Wed, 2010-09-01 at 15:44 +0100, DeShong, Ken wrote: > I guess when I just hit reply it didn't pick up the NetDisco-users > address. I don't have an issue with NetDisco not picking up the switch > in question. Let me explain. > The switch is a Cisco WS-CBS3110X-S-I (IBM Blade Center). NetDisco > will tell me everything about the switch no problem but I think since > this is a blade system where we have VM's, I'm having issues with > NetDisco displaying the port info like it does with my other switches. We had a similar issue with the cisco blade switched in HP blade chassis. This bug has been open over a year now: http://sourceforge.net/tracker/?func=detail&aid=2809033&group_id=70362&atid=527527 If you're happy to edit Info.pm you can probably work around it yourself. Look for: $objtype = 'SNMP::Info::Layer2::Catalyst' if ( $desc =~ /WS-C\d{4}/ ) And add: $objtype = 'SNMP::Info::Layer2::Catalyst' if ( $desc =~ /CBS3/ ) Underneath it. -- Robert Kerr |