View Issue Details

IDProjectCategoryView StatusLast Update
815RackTablesSNMPpublic2013-04-06 18:46
Reporterasciiphil Assigned Toadoom42  
PrioritynormalSeverityminorReproducibilityalways
Status closedResolutionfixed 
Product Version0.20.3 
Target Version0.20.4Fixed in Version0.20.4 
Summary815: Support SNMP Sync for Dell PowerConnect 2824 switches
DescriptionRackTables does not support SNMP Sync for Dell PowerConnect 2824 switches.
Steps To ReproduceAdd a network switch. Set its hardware type to Dell PowerConnect 2824. Note that there is no SNMP Sync tab.
Additional InformationI've attached a patch to wwwroot/inc/snmp.php that adds support for this switch type.
TagsNo tags attached.

Activities

asciiphil

asciiphil

2013-04-03 22:29

reporter  

snmp.patch (911 bytes)   
--- snmp-orig.php	2013-04-03 14:11:03.000000000 -0400
+++ snmp.php	2013-04-03 15:15:08.000000000 -0400
@@ -1251,6 +1251,15 @@
 	'try_next_proc' => TRUE,
 );
 
+$iftable_processors['dell-g23-to-g24-combo-1000SFP'] = array
+(
+	'pattern' => '@^g(23|24)$@',
+	'replacement' => 'g\\1',
+	'dict_key' => '4-1077',
+	'label' => '\\1',
+	'try_next_proc' => TRUE,
+);
+
 $iftable_processors['dell-any-100TX'] = array
 (
 	'pattern' => '@^e(\d+)$@',
@@ -2362,6 +2371,13 @@
 		'processors' => array ('generic-g45-to-g48-combo-1000SFP', 'generic-g-any-1000T'),
 		'ifDescrOID' => 'ifName',
 	),
+	'674.10895.3028' => array
+	(
+		'dict_key' => 1063,
+		'text' => 'PowerConnect 2824: 22 RJ-45/10-100-1000T(X) + 2 combo ports',
+		'processors' => array ('dell-g23-to-g24-combo-1000SFP', 'generic-g-any-1000T'),
+		'ifDescrOID' => 'ifName',
+	),
 	'10977.11825.11833.97.25451.12800.100.4.4' => array
 	(
 		'dict_key' => 577,
snmp.patch (911 bytes)   
adoom42

adoom42

2013-04-06 18:46

administrator   ~0001317

Thanks for the patch.

Issue History

Date Modified Username Field Change
2013-04-03 22:29 asciiphil New Issue
2013-04-03 22:29 asciiphil Status new => assigned
2013-04-03 22:29 asciiphil Assigned To => adoom42
2013-04-03 22:29 asciiphil File Added: snmp.patch
2013-04-06 18:46 adoom42 Note Added: 0001317
2013-04-06 18:46 adoom42 Status assigned => closed
2013-04-06 18:46 adoom42 Resolution open => fixed
2013-04-06 18:46 adoom42 Fixed in Version => 0.20.4
2013-04-06 18:46 adoom42 Target Version => 0.20.4