-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjira_url_data.xml
executable file
·2620 lines (2243 loc) · 159 KB
/
jira_url_data.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!--
RSS generated by JIRA (6.3.6#6336-sha1:cf1622c62a612607f341bda9491a04918e09ebfd) at Fri Apr 01 05:57:31 IDT 2016
It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary add field=key&field=summary to the URL of your request.
For example:
https://jirail.marvell.com/sr/jira.issueviews:searchrequest-xml/17456/SearchRequest-17456.xml?tempMax=1000&field=key&field=summary
-->
<!-- If you wish to do custom client-side styling of RSS, uncomment this:
<?xml-stylesheet href="https://jirail.marvell.com/styles/jiraxml2html.xsl" type="text/xsl"?>
-->
<rss version="0.92">
<channel>
<title>8-tesla-22 (MISL JIRA)</title>
<link>https://jirail.marvell.com/secure/IssueNavigator.jspa?requestId=17456</link>
<description>An XML representation of a search request</description>
<language>en-us</language>
<issue start="0" end="8" total="8"/>
<build-info>
<version>6.3.6</version>
<build-number>6336</build-number>
<build-date>16-09-2014</build-date>
</build-info>
<item>
<title>[TESLA22-3531] The actual spanning tree cost of port-channel is different with running-config</title>
<link>https://jirail.marvell.com/browse/TESLA22-3531</link>
<project id="12301" key="TESLA22">Tesla 2.2</project>
<description><p>Problem Description:<br/>
1.Configure spanning-tree cost of po1 to 1<br/>
2.Write running-config as startup-config<br/>
3.Reload DUT<br/>
4."Show spanning-tree active" indicates the cost of po1 is 100000. But "show running-config interface po1" indicates the value is 1. <br/>
Only happens on port-channel.<br/>
See more in attachment<br/>
Expected Results:<br/>
same with configuration<br/>
Observed Results:</p>
<p>Reconstruct Frequency:<br/>
100%<br/>
Workaround:</p>
<p>Reconstruct in old releases Yes/No version number:</p>
<p>Steps to Reconstruct:</p>
<p>Browser Type &amp; Version:</p>
<p>PC Operating System:</p>
<p>Testing Tools:</p>
<p>Port Used: Fast/Giga/X-gig/NR</p>
<p>Attachments: Movie/Screen capture/configuration/Set-Up Drawing/Sniffer</p>
<p>Fatal Error Message:</p></description>
<key id="240887">TESLA22-3531</key>
<summary>The actual spanning tree cost of port-channel is different with running-config</summary>
<type id="1" iconUrl="https://jirail.marvell.com/images/icons/issuetypes/bug.png">Bug</type>
<status id="1" iconUrl="https://jirail.marvell.com/images/icons/statuses/open.png" description="The issue is open and ready for the assignee to start work on it.">Open</status>
<statusCategory id="2" key="new" colorName="blue-gray"/>
<resolution id="-1">Unresolved</resolution>
<assignee username="gadie">Gadi Eisenberg</assignee>
<reporter username="[email protected]">Yilin Liu</reporter>
<labels>
<label>Documentation</label>
<label>RN</label>
</labels>
<created>Thu, 17 Mar 2016 09:26:18 +0800</created>
<updated>Thu, 31 Mar 2016 21:45:12 +0800</updated>
<votes>0</votes>
<watches>3</watches>
<comments>
<comment id="133325" author="[email protected]" created="Thu, 17 Mar 2016 10:13:24 +0800"><p>test nikola also.</p></comment>
<comment id="133326" author="[email protected]" created="Thu, 17 Mar 2016 10:34:38 +0800"><p>Could not reproduce on nikola v1.4.2.4</p></comment>
<comment id="133330" author="[email protected]" created="Thu, 17 Mar 2016 14:16:36 +0800"><p>RN - need discuss with rest of cisco bug scrub team</p></comment>
<comment id="133782" author="naftalit" created="Mon, 28 Mar 2016 19:32:22 +0800"><p>added to release notes</p></comment>
</comments>
<attachments>
<attachment id="77036" name="Capture.JPG" size="92327" author="[email protected]" created="Thu, 17 Mar 2016 09:26:18 +0800"/>
<attachment id="77035" name="running-config.txt" size="3926" author="[email protected]" created="Thu, 17 Mar 2016 09:26:18 +0800"/>
</attachments>
<subtasks>
</subtasks>
<customfields>
<customfield id="customfield_12008" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Automation Status</customfieldname>
<customfieldvalues>
<customfieldvalue key="554099"><![CDATA[Open]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12009" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Development Auto Test Status</customfieldname>
<customfieldvalues>
<customfieldvalue key="554105"><![CDATA[Not Done]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12010" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Documentation Updated</customfieldname>
<customfieldvalues>
<customfieldvalue key="554107"><![CDATA[True]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12011" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Mockup Review</customfieldname>
<customfieldvalues>
<customfieldvalue key="554108"><![CDATA[False]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12012" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM PR Issued</customfieldname>
<customfieldvalues>
<customfieldvalue key="554111"><![CDATA[False]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12017" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM WebWiz Status</customfieldname>
<customfieldvalues>
<customfieldvalue key="554117"><![CDATA[Open]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11406" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
<customfieldname>NPS CPSS Environment</customfieldname>
<customfieldvalues>
<customfieldvalue key="520107"><![CDATA[HW]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11409" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
<customfieldname>NPS CPSS Platforms</customfieldname>
<customfieldvalues>
<customfieldvalue key="520166"><![CDATA[ALL]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11412" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Customer Fix Decision</customfieldname>
<customfieldvalues>
<customfieldvalue key="520177"><![CDATA[RN–Release Notes]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11912" key="com.atlassian.jira.plugin.system.customfieldtypes:textarea">
<customfieldname>NPS Description</customfieldname>
<customfieldvalues>
<customfieldvalue><p>Problem Description:<br/>
1.Configure spanning-tree cost of po1 to 1<br/>
2.Write running-config as startup-config<br/>
3.Reload DUT<br/>
4."Show spanning-tree active" indicates the cost of po1 is 100000. But "show running-config interface po1" indicates the value is 1. <br/>
Only happens on port-channel.<br/>
See more in attachment<br/>
Expected Results:<br/>
same with configuration<br/>
Observed Results:</p>
<p>Reconstruct Frequency:<br/>
100%<br/>
Workaround:</p>
<p>Reconstruct in old releases Yes/No version number:</p>
<p>Steps to Reconstruct:</p>
<p>Browser Type &amp; Version:</p>
<p>PC Operating System:</p>
<p>Testing Tools:</p>
<p>Port Used: Fast/Giga/X-gig/NR</p>
<p>Attachments: Movie/Screen capture/configuration/Set-Up Drawing/Sniffer</p>
<p>Fatal Error Message:</p></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11415" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Discovered In</customfieldname>
<customfieldvalues>
<customfieldvalue key="520189"><![CDATA[QA]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11905" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Platform</customfieldname>
<customfieldvalues>
<customfieldvalue key="554678"><![CDATA[SG550X-24]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11426" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Severity</customfieldname>
<customfieldvalues>
<customfieldvalue key="520269"><![CDATA[3-Minor]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11430" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS SubProduct</customfieldname>
<customfieldvalues>
<customfieldvalue key="520356"><![CDATA[CLI]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11855" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Subject</customfieldname>
<customfieldvalues>
<customfieldvalue key="541791"><![CDATA[SpanningTree]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11822" key="com.atlassian.jira.plugin.system.customfieldtypes:multiversion">
<customfieldname>Project version</customfieldname>
<customfieldvalues>
<customfieldvalue>20139</customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12303" key="com.marvell.jira.Versions:issueVersionDetails">
<customfieldname>Related Versions</customfieldname>
<customfieldvalues>
</customfieldvalues>
</customfield>
<customfield id="customfield_12304" key="com.marvell.jira.Versions:createLinkedVersion">
<customfieldname>Version appearances</customfieldname>
<customfieldvalues>
</customfieldvalues>
</customfield>
</customfields>
</item>
<item>
<title>[TESLA22-3514] STP Root port is selected mistakenly</title>
<link>https://jirail.marvell.com/browse/TESLA22-3514</link>
<project id="12301" key="TESLA22">Tesla 2.2</project>
<description><p>Problem Description:<br/>
Refer to topology in attachment, switch152 is root bridge, port-channel 1 and gi1/0/10 on switch155 have same path cost(100000) to root bridge. According to protocol standard, the port which receives lowest Port ID(port pri+port number) is selected as root port. In this scenario, gi1/0/10 receives BPDU whose Port ID is 128.10, po1 receives BPDU whose Port ID is 240.1000. In theory, the port gi1/0/10 should be selected as root port, but in effect, the po1 is selected.<br/>
Have verified same scenario on Catalyst switch, its behavior is normal.<br/>
See more in attachment<br/>
Expected Results:</p>
<p>Observed Results:</p>
<p>Reconstruct Frequency:<br/>
100%<br/>
Workaround:</p>
<p>Reconstruct in old releases Yes/No version number:</p>
<p>Steps to Reconstruct:</p>
<p>Browser Type &amp; Version:</p>
<p>PC Operating System:</p>
<p>Testing Tools:</p>
<p>Port Used: Fast/Giga/X-gig/NR</p>
<p>Attachments: Movie/Screen capture/configuration/Set-Up Drawing/Sniffer</p>
<p>Fatal Error Message:</p></description>
<key id="240795">TESLA22-3514</key>
<summary>STP Root port is selected mistakenly</summary>
<type id="1" iconUrl="https://jirail.marvell.com/images/icons/issuetypes/bug.png">Bug</type>
<status id="1" iconUrl="https://jirail.marvell.com/images/icons/statuses/open.png" description="The issue is open and ready for the assignee to start work on it.">Open</status>
<statusCategory id="2" key="new" colorName="blue-gray"/>
<resolution id="-1">Unresolved</resolution>
<assignee username="revitalm">Revital Regev</assignee>
<reporter username="[email protected]">Yilin Liu</reporter>
<labels>
<label>RN</label>
</labels>
<created>Mon, 14 Mar 2016 17:34:50 +0800</created>
<updated>Mon, 28 Mar 2016 19:38:39 +0800</updated>
<votes>0</votes>
<watches>4</watches>
<comments>
<comment id="133250" author="rafiit" created="Wed, 16 Mar 2016 00:14:47 +0800"><p>reconstructed on version 2.2.0.62</p></comment>
<comment id="133289" author="[email protected]" created="Wed, 16 Mar 2016 16:38:21 +0800"><p>does this issue happens only on Lag port?<br/>
can this issue be reproduced in nikola?</p></comment>
<comment id="133292" author="[email protected]" created="Wed, 16 Mar 2016 17:05:33 +0800"><p>Yes, only happens on Lag port. <br/>
Could not reproduce in nikola v1.4.2.4</p></comment>
<comment id="133328" author="[email protected]" created="Thu, 17 Mar 2016 14:11:43 +0800"><p>RN- Need discuss with bug scrub team</p></comment>
<comment id="133329" author="[email protected]" created="Thu, 17 Mar 2016 14:13:16 +0800"><p>root port election failure when comparing LAG port priority and standalone port priority.</p>
<p>will test tesla 2.0.0.73 also.</p></comment>
<comment id="133332" author="[email protected]" created="Thu, 17 Mar 2016 14:57:57 +0800"><p>Could reproduce on tesla 2.0.0.73.</p></comment>
<comment id="133785" author="naftalit" created="Mon, 28 Mar 2016 19:38:39 +0800"><p>Added to release notes</p></comment>
</comments>
<attachments>
<attachment id="76949" name="152runningconfig.txt" size="3229" author="[email protected]" created="Mon, 14 Mar 2016 17:34:50 +0800"/>
<attachment id="76950" name="155runningconfig.txt" size="2576" author="[email protected]" created="Mon, 14 Mar 2016 17:34:50 +0800"/>
<attachment id="76951" name="topo&status.JPG" size="200278" author="[email protected]" created="Mon, 14 Mar 2016 17:34:50 +0800"/>
</attachments>
<subtasks>
</subtasks>
<customfields>
<customfield id="customfield_12008" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Automation Status</customfieldname>
<customfieldvalues>
<customfieldvalue key="554099"><![CDATA[Open]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12009" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Development Auto Test Status</customfieldname>
<customfieldvalues>
<customfieldvalue key="554105"><![CDATA[Not Done]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12010" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Documentation Updated</customfieldname>
<customfieldvalues>
<customfieldvalue key="554107"><![CDATA[True]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12011" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Mockup Review</customfieldname>
<customfieldvalues>
<customfieldvalue key="554108"><![CDATA[False]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12012" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM PR Issued</customfieldname>
<customfieldvalues>
<customfieldvalue key="554111"><![CDATA[False]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12017" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM WebWiz Status</customfieldname>
<customfieldvalues>
<customfieldvalue key="554117"><![CDATA[Open]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11406" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
<customfieldname>NPS CPSS Environment</customfieldname>
<customfieldvalues>
<customfieldvalue key="520107"><![CDATA[HW]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11409" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
<customfieldname>NPS CPSS Platforms</customfieldname>
<customfieldvalues>
<customfieldvalue key="520166"><![CDATA[ALL]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11412" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Customer Fix Decision</customfieldname>
<customfieldvalues>
<customfieldvalue key="520177"><![CDATA[RN–Release Notes]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11912" key="com.atlassian.jira.plugin.system.customfieldtypes:textarea">
<customfieldname>NPS Description</customfieldname>
<customfieldvalues>
<customfieldvalue><p>Problem Description:<br/>
Refer to topology in attachment, switch152 is root bridge, port-channel 1 and gi1/0/10 on switch155 have same path cost(100000) to root bridge. According to protocol standard, the port which receives lowest Port ID(port pri+port number) is selected as root port. In this scenario, gi1/0/10 receives BPDU whose Port ID is 128.10, po1 receives BPDU whose Port ID is 240.1000. In theory, the port gi1/0/10 should be selected as root port, but in effect, the po1 is selected.<br/>
Have verified same scenario on Catalyst switch, its behavior is normal.<br/>
See more in attachment<br/>
Expected Results:</p>
<p>Observed Results:</p>
<p>Reconstruct Frequency:<br/>
100%<br/>
Workaround:</p>
<p>Reconstruct in old releases Yes/No version number:</p>
<p>Steps to Reconstruct:</p>
<p>Browser Type &amp; Version:</p>
<p>PC Operating System:</p>
<p>Testing Tools:</p>
<p>Port Used: Fast/Giga/X-gig/NR</p>
<p>Attachments: Movie/Screen capture/configuration/Set-Up Drawing/Sniffer</p>
<p>Fatal Error Message:</p></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11415" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Discovered In</customfieldname>
<customfieldvalues>
<customfieldvalue key="520189"><![CDATA[QA]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11905" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Platform</customfieldname>
<customfieldvalues>
<customfieldvalue key="554667"><![CDATA[SG350X-24P]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11426" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Severity</customfieldname>
<customfieldvalues>
<customfieldvalue key="520269"><![CDATA[3-Minor]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11430" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS SubProduct</customfieldname>
<customfieldvalues>
<customfieldvalue key="520356"><![CDATA[CLI]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11855" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Subject</customfieldname>
<customfieldvalues>
<customfieldvalue key="541791"><![CDATA[SpanningTree]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11822" key="com.atlassian.jira.plugin.system.customfieldtypes:multiversion">
<customfieldname>Project version</customfieldname>
<customfieldvalues>
<customfieldvalue>20119</customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12303" key="com.marvell.jira.Versions:issueVersionDetails">
<customfieldname>Related Versions</customfieldname>
<customfieldvalues>
</customfieldvalues>
</customfield>
<customfield id="customfield_12304" key="com.marvell.jira.Versions:createLinkedVersion">
<customfieldname>Version appearances</customfieldname>
<customfieldvalues>
</customfieldvalues>
</customfield>
</customfields>
</item>
<item>
<title>[TESLA22-3457] The error rx port on Dashboard(Traffic Errors) still shows red color although interface counter and rmon statistics of proper ports are cleared.</title>
<link>https://jirail.marvell.com/browse/TESLA22-3457</link>
<project id="12301" key="TESLA22">Tesla 2.2</project>
<description><p>Problem Description:<br/>
1.TC sends Bad CRC packets, DUT detects error and marks red color for error rx port on dashboard, also there are CRC&amp;Align Errors alarm in Table View.<br/>
2.TC stops sending traffic<br/>
3.Clear interface counter and rmon statistics. Verify all error record is 0 on DUT.<br/>
4.Waiting for refresh time or refresh now, notice that the port on Dashboard(Traffic Errors) still shows red color.<br/>
Screenshot is in attachment<br/>
Expected Results:<br/>
The port marked red recover to normal color after refresh time<br/>
Observed Results:</p>
<p>Reconstruct Frequency:<br/>
100%<br/>
Workaround:</p>
<p>Reconstruct in old releases Yes/No version number:</p>
<p>Steps to Reconstruct:</p>
<p>Browser Type &amp; Version:</p>
<p>PC Operating System:</p>
<p>Testing Tools:</p>
<p>Port Used: Fast/Giga/X-gig/NR</p>
<p>Attachments: Movie/Screen capture/configuration/Set-Up Drawing/Sniffer</p>
<p>Fatal Error Message:</p></description>
<key id="240261">TESLA22-3457</key>
<summary>The error rx port on Dashboard(Traffic Errors) still shows red color although interface counter and rmon statistics of proper ports are cleared.</summary>
<type id="1" iconUrl="https://jirail.marvell.com/images/icons/issuetypes/bug.png">Bug</type>
<status id="10004" iconUrl="https://jirail.marvell.com/images/icons/statuses/resolved.png" description="">Fixed</status>
<statusCategory id="3" key="done" colorName="green"/>
<resolution id="1">Fixed</resolution>
<assignee username="gadis">Gadi Sirota</assignee>
<reporter username="[email protected]">Yilin Liu</reporter>
<labels>
<label>RN</label>
</labels>
<created>Mon, 7 Mar 2016 20:21:26 +0800</created>
<updated>Mon, 28 Mar 2016 19:46:42 +0800</updated>
<resolved>Sun, 27 Mar 2016 21:47:13 +0800</resolved>
<votes>0</votes>
<watches>6</watches>
<comments>
<comment id="132309" author="[email protected]" created="Tue, 8 Mar 2016 15:59:06 +0800"><p>mf</p></comment>
<comment id="132317" author="rafiit" created="Tue, 8 Mar 2016 19:22:50 +0800"><p>reconstructed on version 2.2.0.58</p></comment>
<comment id="132935" author="[email protected]" created="Thu, 10 Mar 2016 19:18:13 +0800"><p>dublicate <a href="https://jirail.marvell.com/browse/TESLA22-1435" title="[SQA] The traffic error dashboard doesn&#39;t update its error code after clearing interface counters." class="issue-link" data-issue-key="TESLA22-1435">TESLA22-1435</a></p></comment>
<comment id="133348" author="[email protected]" created="Thu, 17 Mar 2016 16:55:56 +0800"><p>RN- need discuss with rest of cisco team</p></comment>
<comment id="133710" author="gadis" created="Sun, 27 Mar 2016 21:47:13 +0800"><p><a href="http://vgitil10.il.marvell.com:8080/12114" class="external-link" rel="nofollow">http://vgitil10.il.marvell.com:8080/12114</a></p></comment>
<comment id="133786" author="naftalit" created="Mon, 28 Mar 2016 19:46:42 +0800"><p>added to RN (fix not included in approved release.</p></comment>
</comments>
<attachments>
<attachment id="76752" name="screenshot.JPG" size="138123" author="[email protected]" created="Mon, 7 Mar 2016 20:21:26 +0800"/>
</attachments>
<subtasks>
</subtasks>
<customfields>
<customfield id="customfield_12008" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Automation Status</customfieldname>
<customfieldvalues>
<customfieldvalue key="554099"><![CDATA[Open]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12009" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Development Auto Test Status</customfieldname>
<customfieldvalues>
<customfieldvalue key="554105"><![CDATA[Not Done]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12010" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Documentation Updated</customfieldname>
<customfieldvalues>
<customfieldvalue key="554107"><![CDATA[True]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12011" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Mockup Review</customfieldname>
<customfieldvalues>
<customfieldvalue key="554108"><![CDATA[False]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12012" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM PR Issued</customfieldname>
<customfieldvalues>
<customfieldvalue key="554111"><![CDATA[False]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12017" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM WebWiz Status</customfieldname>
<customfieldvalues>
<customfieldvalue key="554117"><![CDATA[Open]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11406" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
<customfieldname>NPS CPSS Environment</customfieldname>
<customfieldvalues>
<customfieldvalue key="520107"><![CDATA[HW]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11409" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
<customfieldname>NPS CPSS Platforms</customfieldname>
<customfieldvalues>
<customfieldvalue key="520166"><![CDATA[ALL]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11412" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Customer Fix Decision</customfieldname>
<customfieldvalues>
<customfieldvalue key="520177"><![CDATA[RN–Release Notes]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11912" key="com.atlassian.jira.plugin.system.customfieldtypes:textarea">
<customfieldname>NPS Description</customfieldname>
<customfieldvalues>
<customfieldvalue><p>Problem Description:<br/>
1.TC sends Bad CRC packets, DUT detects error and marks red color for error rx port on dashboard, also there are CRC&amp;Align Errors alarm in Table View.<br/>
2.TC stops sending traffic<br/>
3.Clear interface counter and rmon statistics. Verify all error record is 0 on DUT.<br/>
4.Waiting for refresh time or refresh now, notice that the port on Dashboard(Traffic Errors) still shows red color.<br/>
Screenshot is in attachment<br/>
Expected Results:<br/>
The port marked red recover to normal color after refresh time<br/>
Observed Results:</p>
<p>Reconstruct Frequency:<br/>
100%<br/>
Workaround:</p>
<p>Reconstruct in old releases Yes/No version number:</p>
<p>Steps to Reconstruct:</p>
<p>Browser Type &amp; Version:</p>
<p>PC Operating System:</p>
<p>Testing Tools:</p>
<p>Port Used: Fast/Giga/X-gig/NR</p>
<p>Attachments: Movie/Screen capture/configuration/Set-Up Drawing/Sniffer</p>
<p>Fatal Error Message:</p></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11415" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Discovered In</customfieldname>
<customfieldvalues>
<customfieldvalue key="520189"><![CDATA[QA]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11905" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Platform</customfieldname>
<customfieldvalues>
<customfieldvalue key="554667"><![CDATA[SG350X-24P]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11426" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Severity</customfieldname>
<customfieldvalues>
<customfieldvalue key="520269"><![CDATA[3-Minor]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11430" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS SubProduct</customfieldname>
<customfieldvalues>
<customfieldvalue key="520360"><![CDATA[EWS]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11855" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Subject</customfieldname>
<customfieldvalues>
<customfieldvalue key="541802"><![CDATA[WEB]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11822" key="com.atlassian.jira.plugin.system.customfieldtypes:multiversion">
<customfieldname>Project version</customfieldname>
<customfieldvalues>
<customfieldvalue>20119</customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12303" key="com.marvell.jira.Versions:issueVersionDetails">
<customfieldname>Related Versions</customfieldname>
<customfieldvalues>
</customfieldvalues>
</customfield>
<customfield id="customfield_12304" key="com.marvell.jira.Versions:createLinkedVersion">
<customfieldname>Version appearances</customfieldname>
<customfieldvalues>
</customfieldvalues>
</customfield>
</customfields>
</item>
<item>
<title>[TESLA22-3107] UPOE port of PSE Switch cannot supply power to legacy IP phone </title>
<link>https://jirail.marvell.com/browse/TESLA22-3107</link>
<project id="12301" key="TESLA22">Tesla 2.2</project>
<description><p>Problem Description:</p>
<p>Expected Results:<br/>
Cisco IP phone7960 should power by DUT successfully</p>
<p>Observed Results:<br/>
Cisco IP phone7960 cannot power by DUT</p>
<p>Reconstruct Frequency:<br/>
Always</p>
<p>Workaround:</p>
<p>Reconstruct in old releases Yes/No version number:</p>
<p>Steps to Reconstruct:<br/>
1. Connect DUT port1 to Cisco IP phone7960<br/>
2. Check Cisco IP phone7960 whether phone can power by DUT or not</p>
<p>Browser Type &amp; Version:</p>
<p>PC Operating System:</p>
<p>Testing Tools:</p>
<p>Port Used: Fast/Giga/X-gig/NR</p>
<p>Attachments: Movie/Screen capture/configuration/Set-Up Drawing/Sniffer</p>
<p>Fatal Error Message:</p></description>
<key id="238621">TESLA22-3107</key>
<summary>UPOE port of PSE Switch cannot supply power to legacy IP phone </summary>
<type id="1" iconUrl="https://jirail.marvell.com/images/icons/issuetypes/bug.png">Bug</type>
<status id="6" iconUrl="https://jirail.marvell.com/images/icons/statuses/closed.png" description="The issue is considered finished, the resolution is correct. Issues which are closed can be reopened.">Closed</status>
<statusCategory id="3" key="done" colorName="green"/>
<resolution id="21">Suggest to Release Note</resolution>
<assignee username="naftalit">Naftali Tannin</assignee>
<reporter username="[email protected]">Youyu Jhang</reporter>
<labels>
<label>HW</label>
<label>POE</label>
<label>RN</label>
</labels>
<created>Fri, 29 Jan 2016 19:21:32 +0800</created>
<updated>Wed, 16 Mar 2016 10:52:33 +0800</updated>
<resolved>Sun, 28 Feb 2016 20:49:30 +0800</resolved>
<votes>0</votes>
<watches>9</watches>
<comments>
<comment id="129455" author="[email protected]" created="Sat, 30 Jan 2016 15:23:16 +0800"><p>mf</p></comment>
<comment id="129526" author="rafiit" created="Sun, 31 Jan 2016 17:14:56 +0800"><p>Reconstructed 2.2.0.42</p></comment>
<comment id="129535" author="yahal" created="Sun, 31 Jan 2016 18:08:00 +0800"><p>Waiting for Microsemi - <br/>
Port Status: Port is off. Detection is in process</p></comment>
<comment id="130070" author="orenv" created="Sun, 7 Feb 2016 15:24:30 +0800"><p>requires new PoE FW from Microsemi</p></comment>
<comment id="130170" author="[email protected]" created="Mon, 8 Feb 2016 17:41:21 +0800"><p>Reconstructed on 2.1 all versions</p></comment>
<comment id="130310" author="yahal" created="Wed, 10 Feb 2016 19:59:17 +0800"><p>From Microsemi:<br/>
"After thoroughly analyzing this issue, we notice that the pins 12 &amp; 36 in SF350-48MP ports, are in wrong polarity.<br/>
After we change the polarity (12 &amp; 36 cross on the UTP cable), the Cisco 7960 was able to power up normally. "</p>
<p>"We found an internal short between pins 45 to 12 in Cisco phone 7960 (modules A0, B0, 08) and 7910 (module D0) as shown below.<br/>
We tested CAT3 straight cable (2pairs 12,36 only) as shown below and all phones worked well including 7960."</p>
</comment>
<comment id="131040" author="doronr" created="Wed, 17 Feb 2016 15:54:54 +0800"><p>RN?</p></comment>
<comment id="131122" author="naftalit" created="Wed, 17 Feb 2016 23:29:30 +0800"><p>• Micro semi tests show that phone cannot be powered up due to a fault in the phone - an internal short between pins 45 to 12 of the phone,<br/>
• This means that issue is not with switch and not related to phone being a legacy phone.<br/>
• Issue occurs on UPoE ports since PoE uses all 4 pairs (including the ones creating a short).<br/>
• As a workaround a Cat 3 cable can be used to power up phone – since this prevents the short.</p>
<ul>
<li>Another workaround - ALT B polarity change</li>
</ul>
</comment>
<comment id="131351" author="[email protected]" created="Mon, 22 Feb 2016 13:48:11 +0800"><p>RN- will not fix.</p>
<p>@Jiamin, same as previous decision to close <a href="https://jirail.marvell.com/browse/TESLA22-3107" title="UPOE port of PSE Switch cannot supply power to legacy IP phone " class="issue-link" data-issue-key="TESLA22-3107"><del>TESLA22-3107</del></a> and RN, with 2 workarounds to (1) power this specific 7960 with our Tesla .AT ports (non UPoE ports) and (2) to use Cat3 cables.</p>
<p>Thanks,<br/>
— Solomon</p></comment>
<comment id="131352" author="[email protected]" created="Mon, 22 Feb 2016 13:49:02 +0800"><p>NTF and RN.</p>
<p>Discussed with PE, will not fix.</p></comment>
<comment id="131471" author="naftalit" created="Tue, 23 Feb 2016 21:14:14 +0800"><p>added to RN - please close</p></comment>
<comment id="131718" author="naftalit" created="Sun, 28 Feb 2016 20:49:30 +0800"><p>Added to release notes - please close</p></comment>
<comment id="131962" author="[email protected]" created="Tue, 1 Mar 2016 17:40:41 +0800"><p>Closed on version 2.2.0.56</p></comment>
<comment id="133257" author="[email protected]" created="Wed, 16 Mar 2016 10:52:33 +0800"><p>Added more info on 7960:</p>
<p>Pega also verified 7960 rev A0/B0/E0, unable to work with UPoE ports. </p>
<p>Replacement phone 8841/8851 verified working with Tesla2/3 (UPoE/af/at ports).</p>
<p>Cisco EOL and replacement info on Cisco IP Phone 7960: <br/>
7960 EOL, and was replaced by 7962<br/>
Then 7962 eol’ed, and was replaced by 8841/8851</p>
<p> 7960:2002, May(End of Sale), <a href="http://www.cisco.com/c/en/us/products/collateral/collaboration-endpoints/unified-ip-phone-7900-series/prod_end-of-life_notice09186a0080088a2c.html" class="external-link" rel="nofollow">http://www.cisco.com/c/en/us/products/collateral/collaboration-endpoints/unified-ip-phone-7900-series/prod_end-of-life_notice09186a0080088a2c.html</a></p>
<p> 7962G:2016 Feb(End of Sale), <a href="http://www.cisco.com/c/en/us/products/collateral/collaboration-endpoints/unified-ip-phone-7900-series/eos-eol-notice-c51-735570.html" class="external-link" rel="nofollow">http://www.cisco.com/c/en/us/products/collateral/collaboration-endpoints/unified-ip-phone-7900-series/eos-eol-notice-c51-735570.html</a></p>
<p> 7960G:2010.July(End of Sale), <a href="http://www.cisco.com/c/en/us/products/collateral/collaboration-endpoints/unified-ip-phone-7940g/end_of_life_notice_c51-574072.html" class="external-link" rel="nofollow">http://www.cisco.com/c/en/us/products/collateral/collaboration-endpoints/unified-ip-phone-7940g/end_of_life_notice_c51-574072.html</a></p>
</comment>
</comments>
<attachments>
<attachment id="76265" name="UPoE with Cisco 7960 IP Phone.pdf" size="401017" author="naftalit" created="Wed, 17 Feb 2016 23:29:30 +0800"/>
</attachments>
<subtasks>
</subtasks>
<customfields>
<customfield id="customfield_10001" key="com.atlassian.jira.plugin.system.customfieldtypes:datepicker">
<customfieldname>Close Date</customfieldname>
<customfieldvalues>
<customfieldvalue>Tue, 1 Mar 2016 11:40:41 +0200</customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12008" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Automation Status</customfieldname>
<customfieldvalues>
<customfieldvalue key="554099"><![CDATA[Open]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12009" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Development Auto Test Status</customfieldname>
<customfieldvalues>
<customfieldvalue key="554105"><![CDATA[Not Done]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12010" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Documentation Updated</customfieldname>
<customfieldvalues>
<customfieldvalue key="554107"><![CDATA[True]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12011" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM Mockup Review</customfieldname>
<customfieldvalues>
<customfieldvalue key="554108"><![CDATA[False]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12012" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM PR Issued</customfieldname>
<customfieldvalues>
<customfieldvalue key="554111"><![CDATA[False]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12017" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>DFM WebWiz Status</customfieldname>
<customfieldvalues>
<customfieldvalue key="554117"><![CDATA[Open]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11406" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
<customfieldname>NPS CPSS Environment</customfieldname>
<customfieldvalues>
<customfieldvalue key="520107"><![CDATA[HW]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11409" key="com.atlassian.jira.plugin.system.customfieldtypes:multicheckboxes">
<customfieldname>NPS CPSS Platforms</customfieldname>
<customfieldvalues>
<customfieldvalue key="520166"><![CDATA[ALL]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11412" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Customer Fix Decision</customfieldname>
<customfieldvalues>
<customfieldvalue key="520177"><![CDATA[RN–Release Notes]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11912" key="com.atlassian.jira.plugin.system.customfieldtypes:textarea">
<customfieldname>NPS Description</customfieldname>
<customfieldvalues>
<customfieldvalue><p>Problem Description:</p>
<p>Expected Results:<br/>
Cisco IP phone7960 should power by DUT successfully</p>
<p>Observed Results:<br/>
Cisco IP phone7960 cannot power by DUT</p>
<p>Reconstruct Frequency:<br/>
Always</p>
<p>Workaround:</p>
<p>Reconstruct in old releases Yes/No version number:</p>
<p>Steps to Reconstruct:<br/>
1. Connect DUT port1 to Cisco IP phone7960<br/>
2. Check Cisco IP phone7960 whether phone can power by DUT or not</p>
<p>Browser Type &amp; Version:</p>
<p>PC Operating System:</p>
<p>Testing Tools:</p>
<p>Port Used: Fast/Giga/X-gig/NR</p>
<p>Attachments: Movie/Screen capture/configuration/Set-Up Drawing/Sniffer</p>
<p>Fatal Error Message:</p></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11415" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Discovered In</customfieldname>
<customfieldvalues>
<customfieldvalue key="520189"><![CDATA[QA]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11905" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Platform</customfieldname>
<customfieldvalues>
<customfieldvalue key="554674"><![CDATA[SF550X-24MP]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11426" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Severity</customfieldname>
<customfieldvalues>
<customfieldvalue key="520268"><![CDATA[2-Major]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11430" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS SubProduct</customfieldname>
<customfieldvalues>
<customfieldvalue key="520360"><![CDATA[EWS]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11855" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
<customfieldname>NPS Subject</customfieldname>
<customfieldvalues>
<customfieldvalue key="543438"><![CDATA[POE]]></customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_11822" key="com.atlassian.jira.plugin.system.customfieldtypes:multiversion">
<customfieldname>Project version</customfieldname>
<customfieldvalues>
<customfieldvalue>18260</customfieldvalue>
</customfieldvalues>
</customfield>
<customfield id="customfield_12303" key="com.marvell.jira.Versions:issueVersionDetails">
<customfieldname>Related Versions</customfieldname>
<customfieldvalues>
</customfieldvalues>
</customfield>
<customfield id="customfield_12304" key="com.marvell.jira.Versions:createLinkedVersion">
<customfieldname>Version appearances</customfieldname>
<customfieldvalues>
</customfieldvalues>
</customfield>
</customfields>
</item>
<item>
<title>[TESLA22-3042] After switch port XG1 connect Ixia port1 via DAC cable , the XG1 cannot configure 1G speed and disable auto negotiation at the same time</title>
<link>https://jirail.marvell.com/browse/TESLA22-3042</link>
<project id="12301" key="TESLA22">Tesla 2.2</project>
<description><p>Problem Description:</p>
<p>Expected Results:<br/>
The result1 and result2 should be the same </p>
<p>Observed Results:<br/>
The result1 can display error message” Port te1/0/1 cannot be configured to other speed than 10G.”<br/>
The result2 can change 1000M speed and no auto negotiation successfully</p>
<p>Reconstruct Frequency:<br/>
Always</p>
<p>Workaround:</p>
<p>Reconstruct in old releases Yes/No version number:</p>
<p>Steps to Reconstruct:<br/>
1. Test 1: Connect Ixia port1 to DUT port XG1 via DAC cable<br/>
2. Go to “Port Management&gt; Port Settings”<br/>
3. Select port XG1 edit<br/>
4. “Disable” Auto Negotiation and Administrative Port Speed is “1000M” then apply ==&gt;result1<br/>
5. Test 2: Connect Ixia port1 to DUT port XG1 via DAC cable<br/>
6. Go to “Port Management&gt; Port Settings”<br/>
7. Select port XG1 edit<br/>
8. “Disable” Auto Negotiation then apply <br/>
9. Administrative Port Speed is “1000M” then apply ==&gt;result2</p>
<p>Browser Type &amp; Version:</p>
<p>PC Operating System:</p>
<p>Testing Tools:</p>
<p>Port Used: Fast/Giga/X-gig/NR</p>
<p>Attachments: Movie/Screen capture/configuration/Set-Up Drawing/Sniffer</p>
<p>Fatal Error Message:</p></description>
<key id="238428">TESLA22-3042</key>