|
From: Arne P. B. <li...@ro...> - 2011-04-12 09:01:10
|
Hello,
I recently installed Netdisco for our network. We have some low-cost Cisco switches from the Catalyst Express Series, which failed to be recognized by Netdisco. After applying the patch below, Netdisco could get the mac-address-table from those switches as well.
Maybe you can include these in the next version of SNMP-Info.
regards,
Arne
--- Info.pm 2009-06-13 00:38:06.000000000 +0200
+++ Info.pm.new 2011-04-12 10:37:09.000000000 +0200
@@ -1282,7 +1282,7 @@
# Catalyst 2900 and 3500XL (IOS) series override
$objtype = 'SNMP::Info::Layer2::C2900'
- if ( $desc =~ /(C2900XL|C2950|C3500XL|C2940|CGESM|CIGESM)/i );
+ if ( $desc =~ /(CE520|CE500|C2900XL|C2950|C3500XL|C2940|CGESM|CIGESM)/i );
# Catalyst WS-C series override 2926,4k,5k,6k in Hybrid
$objtype = 'SNMP::Info::Layer2::Catalyst' if ( $desc =~ /WS-C\d{4}/ );
|