aboutsummaryrefslogtreecommitdiffstats
path: root/docs/report/detailed_test_results/vpp_performance_results/vpp_performance_results.rst
blob: 84fb2d4b3160ba0fc1f1ee1196bec3af8ff491af (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
.. |br| raw:: html

    <br />

L2 Ethernet Switching
=====================

.. note::

    Data sources for reported test results: i) FD.io test executor jobs
    `csit-vpp-perf-1701-all/4
    <https://jenkins.fd.io/view/csit/job/csit-vpp-perf-1701-all/4>`_
    , ii) archived FD.io jobs test result `output files
    <../../_static/archive/>`_.

10ge2p1x520-dot1ad-l2xcbase-ndrpdrdisc
``````````````````````````````````````

**RFC2544: Pkt throughput L2XC with 802.1ad test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 xconnect. 802.1ad tagging is applied on link between DUT1 and DUT2 with inner 4B vlan tag (id=100) and outer 4B vlan tag (id=200).  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 cross- connect. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                    | Documentation                                                                                                                                                                                                        | Message                                                                                                                                                                                                                                                                           |
+=========================================+======================================================================================================================================================================================================================+===================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-dot1ad-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC forwarding config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 9050814.875 pps (2x 4525407.4375 pps)  |br| FINAL_BANDWIDTH: 6.082147596 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/2570/2684', '10/1567/1703']  |br| LAT_50%NDR: ['10/30/476', '10/29/455']  |br| LAT_10%NDR: ['10/21/81', '10/21/67'] |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-dot1ad-l2xcbase-pdrdisc   |  |br| [Cfg] DUT runs L2XC forwarding config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 9050814.875 pps (2x 4525407.4375 pps)  |br| FINAL_BANDWIDTH: 6.082147596 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/2563/2685', '10/1575/1686']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1514B-1t1c-dot1ad-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1514 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.89622544 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/214/268', '20/69/269']  |br| LAT_50%NDR: ['20/29/85', '10/30/87']  |br| LAT_10%NDR: ['10/13/69', '10/14/45']              |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1514B-1t1c-dot1ad-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1514 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.89622544 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/286/454', '20/182/473']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-dot1ad-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 276916.0 pps (2x 138458.0 pps)  |br| FINAL_BANDWIDTH: 19.98225856 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/748/876', '50/196/836']  |br| LAT_50%NDR: ['50/66/228', '50/66/235']  |br| LAT_10%NDR: ['50/55/104', '50/62/76']           |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-dot1ad-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 276916.0 pps (2x 138458.0 pps)  |br| FINAL_BANDWIDTH: 19.98225856 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/185/316', '50/192/296']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-dot1ad-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC forwarding config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 18955298.1875 pps (2x 9477649.09375 pps)  |br| FINAL_BANDWIDTH: 12.737960382 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/54/148', '20/156/210']  |br| LAT_50%NDR: ['10/24/515', '10/24/607']  |br| LAT_10%NDR: ['10/21/45', '10/19/44']  |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-dot1ad-l2xcbase-pdrdisc   |  |br| [Cfg] DUT runs L2XC forwarding config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 18955298.1875 pps (2x 9477649.09375 pps)  |br| FINAL_BANDWIDTH: 12.737960382 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/55/201', '10/720/808']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                    |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1514B-2t2c-dot1ad-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1514 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.89622544 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/168/203', '20/134/396']  |br| LAT_50%NDR: ['20/27/164', '10/27/65']  |br| LAT_10%NDR: ['10/27/61', '10/26/42']            |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1514B-2t2c-dot1ad-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1514 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.89622544 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/242/368', '20/150/207']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-dot1ad-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 276916.0 pps (2x 138458.0 pps)  |br| FINAL_BANDWIDTH: 19.98225856 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/213/233', '50/148/237']  |br| LAT_50%NDR: ['50/32/228', '50/33/191']  |br| LAT_10%NDR: ['50/61/202', '50/59/75']           |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-dot1ad-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 276916.0 pps (2x 138458.0 pps)  |br| FINAL_BANDWIDTH: 19.98225856 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/253/399', '50/173/261']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-dot1ad-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC forwarding config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 19376765.5625 pps (2x 9688382.78125 pps)  |br| FINAL_BANDWIDTH: 13.021186458 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/47/87', '10/63/219']  |br| LAT_50%NDR: ['10/21/542', '10/23/615']  |br| LAT_10%NDR: ['10/19/705', '10/20/777']  |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-dot1ad-l2xcbase-pdrdisc   |  |br| [Cfg] DUT runs L2XC forwarding config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 19587499.25 pps (2x 9793749.625 pps)  |br| FINAL_BANDWIDTH: 13.162799496 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/544/632', '20/547/627']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                       |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1514B-4t4c-dot1ad-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1514 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.89622544 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/133/286', '20/36/96']  |br| LAT_50%NDR: ['10/25/173', '10/27/54']  |br| LAT_10%NDR: ['10/26/143', '10/25/40']             |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1514B-4t4c-dot1ad-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1514 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.89622544 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/115/127', '20/40/95']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                               |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-dot1ad-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 276916.0 pps (2x 138458.0 pps)  |br| FINAL_BANDWIDTH: 19.98225856 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/103/609', '60/80/579']  |br| LAT_50%NDR: ['50/65/222', '50/65/228']  |br| LAT_10%NDR: ['50/61/130', '50/55/183']           |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-dot1ad-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 276916.0 pps (2x 138458.0 pps)  |br| FINAL_BANDWIDTH: 19.98225856 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/171/252', '60/75/164']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                               |
+-----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+


10ge2p1x520-dot1q-l2xcbase-ndrpdrdisc
`````````````````````````````````````

**RFC2544: Pkt throughput L2XC with 802.1q test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 cross connect. 802.1q tagging is applied on link between DUT1 and DUT2.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 cross- connect. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                   | Documentation                                                                                                                                                                                                       | Message                                                                                                                                                                                                                                                                        |
+========================================+=====================================================================================================================================================================================================================+================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-dot1q-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 9015340.625 pps (2x 4507670.3125 pps)  |br| FINAL_BANDWIDTH: 6.0583089 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/2561/2660', '20/1555/1672']  |br| LAT_50%NDR: ['10/28/62', '10/28/66']  |br| LAT_10%NDR: ['10/21/128', '10/22/80'] |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-dot1q-l2xcbase-pdrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 9015340.625 pps (2x 4507670.3125 pps)  |br| FINAL_BANDWIDTH: 6.0583089 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/2569/2689', '20/1540/1664']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                  |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-dot1q-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/148/359', '20/223/354']  |br| LAT_50%NDR: ['20/28/190', '20/29/155']  |br| LAT_10%NDR: ['20/13/60', '10/14/44']        |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-dot1q-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/145/300', '20/171/204']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-dot1q-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 277038.0 pps (2x 138519.0 pps)  |br| FINAL_BANDWIDTH: 19.99106208 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/139/305', '50/191/246']  |br| LAT_50%NDR: ['50/32/202', '50/33/168']  |br| LAT_10%NDR: ['50/61/87', '50/62/90']         |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-dot1q-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 277038.0 pps (2x 138519.0 pps)  |br| FINAL_BANDWIDTH: 19.99106208 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/747/878', '50/195/856']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-dot1q-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 18712215.3125 pps (2x 9356107.65625 pps)  |br| FINAL_BANDWIDTH: 12.57460869 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/55/112', '20/723/799']  |br| LAT_50%NDR: ['10/25/46', '10/24/47']  |br| LAT_10%NDR: ['10/20/44', '10/19/51']  |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-dot1q-l2xcbase-pdrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 18932598.8281 pps (2x 9466299.41406 pps)  |br| FINAL_BANDWIDTH: 12.7227064125 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/52/214', '10/725/878']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-dot1q-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/84/513', '20/133/498']  |br| LAT_50%NDR: ['10/27/86', '10/27/181']  |br| LAT_10%NDR: ['10/27/98', '10/26/50']          |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-dot1q-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/86/221', '20/81/148']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-dot1q-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 277038.0 pps (2x 138519.0 pps)  |br| FINAL_BANDWIDTH: 19.99106208 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/108/259', '50/78/227']  |br| LAT_50%NDR: ['50/32/224', '50/32/130']  |br| LAT_10%NDR: ['50/61/78', '50/61/75']          |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-dot1q-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 277038.0 pps (2x 138519.0 pps)  |br| FINAL_BANDWIDTH: 19.99106208 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/102/162', '60/169/219']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-dot1q-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 23119885.625 pps (2x 11559942.8125 pps)  |br| FINAL_BANDWIDTH: 15.53656314 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/379/394', '20/380/397']  |br| LAT_50%NDR: ['10/21/34', '10/20/38']  |br| LAT_10%NDR: ['10/19/50', '10/18/34']  |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-dot1q-l2xcbase-pdrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 23119885.625 pps (2x 11559942.8125 pps)  |br| FINAL_BANDWIDTH: 15.53656314 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/381/539', '20/381/404']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                  |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-dot1q-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/169/247', '20/93/136']  |br| LAT_50%NDR: ['10/26/68', '10/28/168']  |br| LAT_10%NDR: ['10/27/44', '10/26/59']          |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-dot1q-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/73/119', '20/33/153']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-dot1q-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277038.0 pps (2x 138519.0 pps)  |br| FINAL_BANDWIDTH: 19.99106208 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/116/154', '50/128/298']  |br| LAT_50%NDR: ['50/64/149', '50/64/96']  |br| LAT_10%NDR: ['50/60/91', '50/61/188']         |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-dot1q-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277038.0 pps (2x 138519.0 pps)  |br| FINAL_BANDWIDTH: 19.99106208 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/152/541', '60/76/514']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+----------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-eth-l2bdbasemaclrn-ndrpdrdisc
`````````````````````````````````````````

**RFC2544: Pkt throughput L2BD test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 switching of IPv4.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 bridge- domain and MAC learning enabled. DUT1 and DUT2 tested with 2p10GE NI X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                       | Documentation                                                                                                                                                                                                           | Message                                                                                                                                                                                                                                                                     |
+============================================+=========================================================================================================================================================================================================================+=============================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-eth-l2bdbasemaclrn-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 10592856.875 pps (2x 5296428.4375 pps)  |br| FINAL_BANDWIDTH: 7.11839982 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/152/208', '10/149/200']  |br| LAT_50%NDR: ['10/26/54', '10/26/56']  |br| LAT_10%NDR: ['10/22/56', '10/19/33'] |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-eth-l2bdbasemaclrn-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 10592856.875 pps (2x 5296428.4375 pps)  |br| FINAL_BANDWIDTH: 7.11839982 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/120/159', '30/123/168']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                 |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/451/941', '20/473/952']  |br| LAT_50%NDR: ['20/28/80', '20/30/101']  |br| LAT_10%NDR: ['20/26/89', '10/27/174']    |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-eth-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/108/245', '20/103/214']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/154/174', '60/152/192']  |br| LAT_50%NDR: ['50/62/228', '50/66/232']  |br| LAT_10%NDR: ['50/56/172', '50/62/124']     |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-eth-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/247/282', '60/226/244']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-eth-l2bdbasemaclrn-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 22371428.0 pps (2x 11185714.0 pps)  |br| FINAL_BANDWIDTH: 15.033599616 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/52/501', '20/78/628']  |br| LAT_50%NDR: ['10/23/73', '10/24/85']  |br| LAT_10%NDR: ['10/21/50', '10/20/48']     |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-eth-l2bdbasemaclrn-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 22833332.75 pps (2x 11416666.375 pps)  |br| FINAL_BANDWIDTH: 15.343999608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/73/104', '10/1159/1196']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                               |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.           | Search FAILED                                                                                                                                                                                                                                                               |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-eth-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/205/215', '20/157/164']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/311/357', '60/87/105']  |br| LAT_50%NDR: ['50/65/117', '50/65/233']  |br| LAT_10%NDR: ['50/60/97', '50/61/157']       |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-eth-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/219/270', '60/90/115']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-eth-l2bdbasemaclrn-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 23295237.5 pps (2x 11647618.75 pps)  |br| FINAL_BANDWIDTH: 15.6543996 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/491/508', '10/486/500']  |br| LAT_50%NDR: ['10/19/34', '10/19/32']  |br| LAT_10%NDR: ['10/19/46', '10/19/34']    |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-eth-l2bdbasemaclrn-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 23526189.875 pps (2x 11763094.9375 pps)  |br| FINAL_BANDWIDTH: 15.809599596 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/32/77', '10/31/76']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                  |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/160/229', '20/172/195']  |br| LAT_50%NDR: ['20/26/62', '10/27/53']  |br| LAT_10%NDR: ['20/27/52', '10/27/160']     |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-eth-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/162/226', '20/134/191']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/229/266', '50/103/122']  |br| LAT_50%NDR: ['50/65/150', '50/65/267']  |br| LAT_10%NDR: ['50/55/228', '50/62/71']      |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-eth-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/80/110', '50/174/265']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-eth-l2xcbase-ndrpdrdisc
```````````````````````````````````

**RFC2544: Pkt throughput L2XC test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 cross connect.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 cross- connect. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                 | Documentation                                                                                                                                                                                                                                              | Message                                                                                                                                                                                                                                                                          |
+======================================+============================================================================================================================================================================================================================================================+==================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-eth-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.                                                     | FINAL_RATE: 12671428.25 pps (2x 6335714.125 pps)  |br| FINAL_BANDWIDTH: 8.515199784 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/1060/1162', '10/1065/1168']  |br| LAT_50%NDR: ['10/23/843', '10/23/868']  |br| LAT_10%NDR: ['10/19/32', '10/19/41'] |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-eth-l2xcbase-pdrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.                                            | FINAL_RATE: 12671428.25 pps (2x 6335714.125 pps)  |br| FINAL_BANDWIDTH: 8.515199784 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1060/1160', '20/1074/1163']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-eth-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                    | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/417/447', '20/418/430']  |br| LAT_50%NDR: ['20/28/162', '10/29/211']  |br| LAT_10%NDR: ['10/27/64', '10/26/59']         |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-eth-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                           | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/374/441', '20/286/294']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-eth-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.                                                     | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/397/880', '50/414/853']  |br| LAT_50%NDR: ['50/61/84', '50/66/86']  |br| LAT_10%NDR: ['50/61/84', '50/56/115']             |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-eth-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.                                            | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/269/335', '50/401/434']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-eth-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.                                                   | FINAL_RATE: 23064285.125 pps (2x 11532142.5625 pps)  |br| FINAL_BANDWIDTH: 15.499199604 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/30/107', '10/32/187']  |br| LAT_50%NDR: ['10/20/71', '10/20/35']  |br| LAT_10%NDR: ['10/19/541', '10/19/495']   |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-eth-l2xcbase-pdrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.                                          | FINAL_RATE: 23295237.5 pps (2x 11647618.75 pps)  |br| FINAL_BANDWIDTH: 15.6543996 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/953/968', '20/495/556']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-eth-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/289/327', '20/231/246']  |br| LAT_50%NDR: ['10/26/179', '10/27/39']  |br| LAT_10%NDR: ['10/27/102', '10/27/97']         |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-eth-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                         | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/90/114', '20/335/345']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-eth-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.                                                   | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/126/275', '50/189/413']  |br| LAT_50%NDR: ['50/64/207', '50/65/95']  |br| LAT_10%NDR: ['50/59/90', '50/62/76']             |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-eth-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.                                          | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/142/263', '50/312/336']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-eth-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.                                                  | FINAL_RATE: 23295237.5 pps (2x 11647618.75 pps)  |br| FINAL_BANDWIDTH: 15.6543996 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/943/959', '10/484/664']  |br| LAT_50%NDR: ['10/17/541', '10/18/514']  |br| LAT_10%NDR: ['10/19/43', '10/18/34']       |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-eth-l2xcbase-pdrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.                                         | FINAL_RATE: 23295237.5 pps (2x 11647618.75 pps)  |br| FINAL_BANDWIDTH: 15.6543996 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/945/958', '10/488/514']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-eth-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                 | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/84/115', '20/102/275']  |br| LAT_50%NDR: ['10/27/77', '10/27/61']  |br| LAT_10%NDR: ['10/27/57', '10/24/41']            |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-eth-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                        | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/184/310', '20/181/242']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-eth-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.                                                  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/237/270', '50/111/143']  |br| LAT_50%NDR: ['50/65/541', '50/65/496']  |br| LAT_10%NDR: ['50/61/82', '50/61/87']            |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-eth-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.                                         | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/225/256', '60/103/117']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc19-IMIX-1t1c-eth-l2xcbase-ndrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 100kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)          | FINAL_RATE: 6687472.0 pps (2x 3343736.0 pps)  |br| FINAL_BANDWIDTH: 19.9999994163 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']             |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc20-IMIX-1t1c-eth-l2xcbase-pdrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 100kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B) | FINAL_RATE: 6687472.0 pps (2x 3343736.0 pps)  |br| FINAL_BANDWIDTH: 19.9999994163 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x710-eth-l2bdbasemaclrn-ndrpdrdisc
`````````````````````````````````````````

**RFC2544: Pkt throughput L2BD test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 switching of IPv4.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 bridge- domain and MAC learning enabled. DUT1 and DUT2 tested with 2p10GE NIC X710 by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                       | Documentation                                                                                                                                                                                                           | Message                                                                                                                                                                                                                                                                    |
+============================================+=========================================================================================================================================================================================================================+============================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-eth-l2bdbasemaclrn-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 9899999.75 pps (2x 4949999.875 pps)  |br| FINAL_BANDWIDTH: 6.652799832 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/156/254', '20/166/300']  |br| LAT_50%NDR: ['10/13/54', '10/13/67']  |br| LAT_10%NDR: ['10/20/46', '10/23/60']  |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-eth-l2bdbasemaclrn-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 10130952.125 pps (2x 5065476.0625 pps)  |br| FINAL_BANDWIDTH: 6.807999828 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/182/310', '10/185/357']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                               |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/110/203', '20/87/155']  |br| LAT_50%NDR: ['10/25/72', '10/25/73']  |br| LAT_10%NDR: ['10/25/54', '10/25/33']      |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-eth-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/330/437', '20/273/330']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['40/143/281', '50/162/282']  |br| LAT_50%NDR: ['40/53/107', '40/54/107']  |br| LAT_10%NDR: ['40/51/74', '40/51/72']      |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-eth-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/131/262', '40/241/348']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-eth-l2bdbasemaclrn-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 12902380.625 pps (2x 6451190.3125 pps)  |br| FINAL_BANDWIDTH: 8.67039978 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/24/84', '10/25/83']  |br| LAT_50%NDR: ['10/24/45', '10/23/47']  |br| LAT_10%NDR: ['10/20/30', '10/20/100']   |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-eth-l2bdbasemaclrn-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 21678570.875 pps (2x 10839285.4375 pps)  |br| FINAL_BANDWIDTH: 14.567999628 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/59/86', '10/214/232']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                               |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/149/243', '10/124/221']  |br| LAT_50%NDR: ['10/24/120', '10/25/52']  |br| LAT_10%NDR: ['10/25/58', '10/25/36']    |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-eth-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/36/82', '10/220/270']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                       |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['40/73/208', '40/75/118']  |br| LAT_50%NDR: ['40/53/78', '40/53/81']  |br| LAT_10%NDR: ['40/47/77', '40/51/59']          |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-eth-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/155/243', '40/91/215']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-eth-l2bdbasemaclrn-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 22140475.625 pps (2x 11070237.8125 pps)  |br| FINAL_BANDWIDTH: 14.87839962 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/20/41', '10/21/46']  |br| LAT_50%NDR: ['10/20/164', '10/20/31']  |br| LAT_10%NDR: ['10/20/37', '10/20/70'] |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-eth-l2bdbasemaclrn-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 29761904.0 pps (2x 14880952.0 pps)  |br| FINAL_BANDWIDTH: 19.999999488 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/82/267', '10/36/97']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/73/196', '10/41/93']  |br| LAT_50%NDR: ['10/23/54', '10/24/64']  |br| LAT_10%NDR: ['10/25/113', '10/24/31']       |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-eth-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/51/102', '10/74/192']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                       |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/706/1060', '40/741/1038']  |br| LAT_50%NDR: ['40/52/75', '40/54/136']  |br| LAT_10%NDR: ['40/50/81', '40/48/64']     |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-eth-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['40/61/103', '40/97/241']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

40ge2p1xl710-eth-l2bdbasemaclrn-ndrpdrdisc
``````````````````````````````````````````

**RFC2544: Pkt throughput L2BD test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 switching of IPv4.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 bridge- domain and MAC learning enabled. DUT1 and DUT2 tested with 2p40GE NIC XL710-DA2 by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                       | Documentation                                                                                                                                                                                                  | Message                                                                                                                                                                                                                                                                        |
+============================================+================================================================================================================================================================================================================+================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-eth-l2bdbasemaclrn-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 18.75Mpps rate, step 100kpps.    | FINAL_RATE: 9233593.75 pps (2x 4616796.875 pps)  |br| FINAL_BANDWIDTH: 6.204975 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/39/79', '10/41/76']  |br| LAT_50%NDR: ['10/27/175', '10/25/176']  |br| LAT_10%NDR: ['10/20/47', '10/21/44']           |
+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 24.5G rate, step 10kpps.       | FINAL_RATE: 3982444.0 pps (2x 1991222.0 pps)  |br| FINAL_BANDWIDTH: 48.999990976 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/31/239', '10/32/305']  |br| LAT_50%NDR: ['10/29/235', '10/28/225']  |br| LAT_10%NDR: ['10/23/59', '10/23/53']        |
+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-eth-l2bdbasemaclrn-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 18.75Mpps rate, step 100kpps.  | FINAL_RATE: 15935937.5 pps (2x 7967968.75 pps)  |br| FINAL_BANDWIDTH: 10.70895 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/28/129', '10/28/196']  |br| LAT_50%NDR: ['10/21/41', '10/22/68']  |br| LAT_10%NDR: ['10/20/72', '10/20/43']            |
+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 24.5G rate, step 10kpps.       | FINAL_RATE: 3982444.0 pps (2x 1991222.0 pps)  |br| FINAL_BANDWIDTH: 48.999990976 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/17/180', '10/16/109']  |br| LAT_50%NDR: ['10/25/165', '10/24/93']  |br| LAT_10%NDR: ['10/22/61', '10/21/74']         |
+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-eth-l2bdbasemaclrn-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 18.75Mpps rate, step 100kpps. | FINAL_RATE: 26426562.5 pps (2x 13213281.25 pps)  |br| FINAL_BANDWIDTH: 17.75865 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/11/198', '10/11/74']  |br| LAT_50%NDR: ['10/18/35', '10/18/31']  |br| LAT_10%NDR: ['10/19/37', '10/19/35']            |
+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-eth-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 24.5G rate, step 10kpps.    | FINAL_RATE: 3889574.21876 pps (2x 1944787.10938 pps)  |br| FINAL_BANDWIDTH: 47.8573211876 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/31/182', '10/31/186']  |br| LAT_50%NDR: ['10/28/54', '10/26/52']  |br| LAT_10%NDR: ['10/23/53', '10/22/50'] |
+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc19-IMIX-1t1c-eth-l2bdbasemaclrn-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frames using binary search start at 24.5G rate, step 100kpps.      | FINAL_RATE: 9050792.34376 pps (2x 4525396.17188 pps)  |br| FINAL_BANDWIDTH: 27.0679027281 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']   |
+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc20-IMIX-2t2c-eth-l2bdbasemaclrn-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frames using binary search start at 24.5G rate, step 100kpps.    | FINAL_RATE: 16131426.2188 pps (2x 8065713.10938 pps)  |br| FINAL_BANDWIDTH: 48.2437182482 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']   |
+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc21-IMIX-4t4c-eth-l2bdbasemaclrn-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frames using binary search start at 24.5G rate, step 100kpps.   | FINAL_RATE: 16384306.0 pps (2x 8192153.0 pps)  |br| FINAL_BANDWIDTH: 48.9999973738 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']          |
+--------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

40ge2p1xl710-eth-l2xcbase-ndrpdrdisc
````````````````````````````````````

**RFC2544: Pkt throughput L2XC test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 cross connect.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 cross- connect. DUT1 and DUT2 tested with 2p40GE NIC XL710 by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                 | Documentation                                                                                                                                                                                                                                  | Message                                                                                                                                                                                                                                                                        |
+======================================+================================================================================================================================================================================================================================================+================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-eth-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 18.75Mpps rate, step 100kpps.                                        | FINAL_RATE: 12439062.5 pps (2x 6219531.25 pps)  |br| FINAL_BANDWIDTH: 8.35905 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/345/398', '20/247/300']  |br| LAT_50%NDR: ['10/22/229', '10/20/159']  |br| LAT_10%NDR: ['10/19/39', '10/17/38']         |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-eth-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 24.5G rate, step 10kpps.                                           | FINAL_RATE: 3672878.0625 pps (2x 1836439.03125 pps)  |br| FINAL_BANDWIDTH: 45.191091681 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/35/136', '10/34/209']  |br| LAT_50%NDR: ['10/27/81', '10/26/76']  |br| LAT_10%NDR: ['10/23/190', '10/21/167'] |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-eth-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 18.75Mpps rate, step 100kpps.                                      | FINAL_RATE: 13896093.75 pps (2x 6948046.875 pps)  |br| FINAL_BANDWIDTH: 9.338175 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/21/63', '10/21/81']  |br| LAT_50%NDR: ['10/21/499', '10/20/501']  |br| LAT_10%NDR: ['10/20/36', '10/17/32']          |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-eth-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 24.5G rate, step 10kpps.                                         | FINAL_RATE: 3703834.65624 pps (2x 1851917.32812 pps)  |br| FINAL_BANDWIDTH: 45.5719816104 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/30/133', '10/30/62']  |br| LAT_50%NDR: ['10/26/61', '10/25/58']  |br| LAT_10%NDR: ['10/22/55', '10/22/69']  |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-eth-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 18.75Mpps rate, step 100kpps.                                     | FINAL_RATE: 26717968.75 pps (2x 13358984.375 pps)  |br| FINAL_BANDWIDTH: 17.954475 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/20/40', '10/19/39']  |br| LAT_50%NDR: ['10/18/176', '10/17/198']  |br| LAT_10%NDR: ['10/19/48', '10/19/35']        |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-eth-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 24.5G rate, step 10kpps.                                        | FINAL_RATE: 3580008.28124 pps (2x 1790004.14062 pps)  |br| FINAL_BANDWIDTH: 44.0484218924 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/34/94', '10/33/83']  |br| LAT_50%NDR: ['10/24/57', '10/25/185']  |br| LAT_10%NDR: ['10/21/42', '10/22/47']  |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc19-IMIX-1t1c-eth-l2xcbase-ndrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 24.5G rate, step 100kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B) | FINAL_RATE: 10820950.8125 pps (2x 5410475.40625 pps)  |br| FINAL_BANDWIDTH: 32.361856608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']    |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc20-IMIX-2t2c-eth-l2xcbase-ndrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 2 thread, 2 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 24.5G rate, step 100kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B) | FINAL_RATE: 12085349.7188 pps (2x 6042674.85938 pps)  |br| FINAL_BANDWIDTH: 36.1432522367 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']   |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc21-IMIX-4t4c-eth-l2xcbase-ndrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 4 thread, 4 phy core,  2 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 24.5G rate, step 100kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B) | FINAL_RATE: 16384306.0 pps (2x 8192153.0 pps)  |br| FINAL_BANDWIDTH: 48.9999973738 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']          |
+--------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

IPv4 Routed-Forwarding
======================

.. note::

    Data sources for reported test results: i) FD.io test executor jobs
    `csit-vpp-perf-1701-all/4
    <https://jenkins.fd.io/view/csit/job/csit-vpp-perf-1701-all/4>`_
    , ii) archived FD.io jobs test result `output files
    <../../_static/archive/>`_.

10ge2p1x520-ethip4-ip4base-copwhtlistbase-ndrpdrdisc
````````````````````````````````````````````````````

**RFC2544: Pkt throughput IPv4 whitelist test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for IPv4 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv4 routing, two static IPv4 /24 routes and IPv4 COP security whitelist ingress /24 filter entries applied on links TG - DUT1 and DUT2 - TG. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                                  | Documentation                                                                                                                                                                                                                          | Message                                                                                                                                                                                                                                                                       |
+=======================================================+========================================================================================================================================================================================================================================+===============================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4-ip4base-copwhtlistbase-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.             | FINAL_RATE: 8283333.125 pps (2x 4141666.5625 pps)  |br| FINAL_BANDWIDTH: 5.56639986 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/108/219', '20/118/241']  |br| LAT_50%NDR: ['10/35/649', '10/33/602']  |br| LAT_10%NDR: ['10/20/67', '10/24/110'] |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4-ip4base-copwhtlistbase-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.    | FINAL_RATE: 8514285.5 pps (2x 4257142.75 pps)  |br| FINAL_BANDWIDTH: 5.721599856 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1599/1724', '20/3041/3182']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip4-ip4base-copwhtlistbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.            | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/942/970', '20/938/946']  |br| LAT_50%NDR: ['20/30/189', '20/31/170']  |br| LAT_10%NDR: ['20/26/77', '20/27/94']      |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip4-ip4base-copwhtlistbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.   | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/465/501', '20/526/534']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip4-ip4base-copwhtlistbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.             | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/384/412', '50/420/459']  |br| LAT_50%NDR: ['50/65/151', '50/65/173']  |br| LAT_10%NDR: ['50/62/105', '50/62/119']       |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip4-ip4base-copwhtlistbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.    | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/393/470', '50/448/490']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4-ip4base-copwhtlistbase-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 15673809.125 pps (2x 7836904.5625 pps)  |br| FINAL_BANDWIDTH: 10.532799732 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/46/75', '10/186/247']  |br| LAT_50%NDR: ['10/32/53', '10/25/67']  |br| LAT_10%NDR: ['10/22/57', '10/19/191']  |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4-ip4base-copwhtlistbase-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 15673809.125 pps (2x 7836904.5625 pps)  |br| FINAL_BANDWIDTH: 10.532799732 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/41/79', '20/863/890']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip4-ip4base-copwhtlistbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/208/229', '20/150/156']  |br| LAT_50%NDR: ['20/27/568', '10/28/643']  |br| LAT_10%NDR: ['20/27/78', '10/27/93']      |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip4-ip4base-copwhtlistbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/128/163', '20/202/210']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip4-ip4base-copwhtlistbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/215/583', '50/257/664']  |br| LAT_50%NDR: ['50/65/230', '50/64/109']  |br| LAT_10%NDR: ['50/55/97', '50/62/181']        |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip4-ip4base-copwhtlistbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/72/259', '60/141/317']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4-ip4base-copwhtlistbase-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 23757142.25 pps (2x 11878571.125 pps)  |br| FINAL_BANDWIDTH: 15.964799592 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/487/508', '10/935/948']  |br| LAT_50%NDR: ['10/18/199', '10/22/47']  |br| LAT_10%NDR: ['10/20/53', '10/20/37'] |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4-ip4base-copwhtlistbase-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 23757142.25 pps (2x 11878571.125 pps)  |br| FINAL_BANDWIDTH: 15.964799592 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/486/502', '20/935/1023']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                 |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip4-ip4base-copwhtlistbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/107/118', '20/193/313']  |br| LAT_50%NDR: ['10/13/74', '10/14/63']  |br| LAT_10%NDR: ['10/27/58', '10/27/50']        |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip4-ip4base-copwhtlistbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/103/271', '20/83/105']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip4-ip4base-copwhtlistbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/171/271', '60/108/144']  |br| LAT_50%NDR: ['50/63/106', '50/65/148']  |br| LAT_10%NDR: ['50/61/91', '50/62/79']         |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip4-ip4base-copwhtlistbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/187/251', '60/208/311']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip4-ip4base-iacldstbase-ndrpdrdisc
`````````````````````````````````````````````````

**RFC2544: Pkt throughput IPv4 iAcl whitelist test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for IPv4 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv4 routing, two static IPv4 /24 routes and IPv4 iAcl security whitelist ingress /24 filter entries applied on links TG - DUT1 and DUT2 - TG. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                               | Documentation                                                                                                                                                                                                                          | Message                                                                                                                                                                                                                                                                     |
+====================================================+========================================================================================================================================================================================================================================+=============================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4-ip4base-iacldstbase-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.             | FINAL_RATE: 7821428.375 pps (2x 3910714.1875 pps)  |br| FINAL_BANDWIDTH: 5.255999868 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/175/291', '20/192/334']  |br| LAT_50%NDR: ['10/21/79', '10/31/68']  |br| LAT_10%NDR: ['10/9/36', '10/11/66']  |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4-ip4base-iacldstbase-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.    | FINAL_RATE: 7821428.375 pps (2x 3910714.1875 pps)  |br| FINAL_BANDWIDTH: 5.255999868 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/177/313', '10/181/296']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                 |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip4-ip4base-iacldstbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.            | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/443/505', '20/309/316']  |br| LAT_50%NDR: ['20/29/210', '20/30/215']  |br| LAT_10%NDR: ['20/27/53', '10/24/57']    |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip4-ip4base-iacldstbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.   | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/461/484', '20/371/376']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip4-ip4base-iacldstbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.             | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/366/403', '60/349/364']  |br| LAT_50%NDR: ['50/66/230', '50/66/233']  |br| LAT_10%NDR: ['50/62/86', '50/62/79']       |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip4-ip4base-iacldstbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.    | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/391/427', '50/338/371']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4-ip4base-iacldstbase-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 13595237.75 pps (2x 6797618.875 pps)  |br| FINAL_BANDWIDTH: 9.135999768 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/42/181', '20/972/1075']  |br| LAT_50%NDR: ['10/27/56', '10/26/58']  |br| LAT_10%NDR: ['10/19/40', '10/25/51']  |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4-ip4base-iacldstbase-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 13826190.125 pps (2x 6913095.0625 pps)  |br| FINAL_BANDWIDTH: 9.291199764 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/43/74', '30/971/1025']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                 |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip4-ip4base-iacldstbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/207/224', '20/173/180']  |br| LAT_50%NDR: ['20/27/126', '10/27/140']  |br| LAT_10%NDR: ['10/27/66', '10/26/43']    |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip4-ip4base-iacldstbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/212/238', '20/189/196']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip4-ip4base-iacldstbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/184/228', '60/143/185']  |br| LAT_50%NDR: ['50/66/176', '50/65/82']  |br| LAT_10%NDR: ['50/61/191', '50/55/104']      |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip4-ip4base-iacldstbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/211/319', '60/102/139']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4-ip4base-iacldstbase-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 20292856.625 pps (2x 10146428.3125 pps)  |br| FINAL_BANDWIDTH: 13.636799652 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/37/688', '10/30/89']  |br| LAT_50%NDR: ['10/21/50', '10/21/40']  |br| LAT_10%NDR: ['10/18/31', '10/22/48'] |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4-ip4base-iacldstbase-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 23526189.875 pps (2x 11763094.9375 pps)  |br| FINAL_BANDWIDTH: 15.809599596 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/108/404', '10/61/289']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                               |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip4-ip4base-iacldstbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/130/144', '20/170/175']  |br| LAT_50%NDR: ['20/27/85', '20/27/73']  |br| LAT_10%NDR: ['10/27/166', '10/24/41']     |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip4-ip4base-iacldstbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/257/353', '20/195/214']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip4-ip4base-iacldstbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/132/176', '50/150/209']  |br| LAT_50%NDR: ['50/62/93', '50/65/109']  |br| LAT_10%NDR: ['50/60/90', '50/61/161']       |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip4-ip4base-iacldstbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/96/192', '60/170/297']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip4-ip4base-ipolicemarkbase-ndrpdrdisc
`````````````````````````````````````````````````````

**RFC2544: Pkt throughput IPv4 policer test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for IPv4 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv4 routing and two static IPv4 /24 route entries and policer with 2R3C color-aware configuration. Policer is applied on links TG - DUT1 and DUT2 - TG. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and generated payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544, RFC2698.

+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                                   | Documentation                                                                                                                                                                                                                  | Message                                                                                                                                                                                                                                                                       |
+========================================================+================================================================================================================================================================================================================================+===============================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4-ip4base-ipolicemarkbase-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing and policer config with 1 thread, 1  phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64  Byte frames using binary search start at 10GE linerate, step  100kpps.             | FINAL_RATE: 7590476.0 pps (2x 3795238.0 pps)  |br| FINAL_BANDWIDTH: 5.100799872 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/3396/3514', '20/1818/1941']  |br| LAT_50%NDR: ['10/28/195', '10/35/208']  |br| LAT_10%NDR: ['10/20/34', '10/21/47']  |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4-ip4base-ipolicemarkbase-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing and policer config with 1 thread, 1  phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64  Byte frames using binary search start at 10GE linerate, step  100kpps, LT=0.5%.    | FINAL_RATE: 7590476.0 pps (2x 3795238.0 pps)  |br| FINAL_BANDWIDTH: 5.100799872 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/3387/3459', '20/1801/1952']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                    |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip4-ip4base-ipolicemarkbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and policer config with 1 thread, 1  phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518  Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/285/344', '20/358/364']  |br| LAT_50%NDR: ['20/27/231', '10/28/226']  |br| LAT_10%NDR: ['20/26/60', '20/26/85']      |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip4-ip4base-ipolicemarkbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and policer config with 1 thread, 1  phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518  Byte frames using binary search start at 10GE linerate, step  10kpps, LT=0.5%.   | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/475/497', '20/326/334']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip4-ip4base-ipolicemarkbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and policer config with 1 thread, 1  phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000  Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/374/406', '50/440/493']  |br| LAT_50%NDR: ['50/63/161', '50/65/196']  |br| LAT_10%NDR: ['50/62/94', '50/59/72']         |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip4-ip4base-ipolicemarkbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and policer config with 1 thread, 1  phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000  Byte frames using binary search start at 10GE linerate, step 5kpps,  LT=0.5%.    | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/383/415', '60/412/459']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4-ip4base-ipolicemarkbase-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing and policer config with 2 threads, 2  phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64  Byte frames using binary search start at 10GE linerate, step  100kpps.           | FINAL_RATE: 12902380.625 pps (2x 6451190.3125 pps)  |br| FINAL_BANDWIDTH: 8.67039978 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/43/66', '20/60/126']  |br| LAT_50%NDR: ['10/28/194', '10/27/58']  |br| LAT_10%NDR: ['10/19/116', '10/20/91']    |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4-ip4base-ipolicemarkbase-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing and policer config with 2 threads, 2  phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64  Byte frames using binary search start at 10GE linerate, step  100kpps, LT=0.5%.  | FINAL_RATE: 13364285.375 pps (2x 6682142.6875 pps)  |br| FINAL_BANDWIDTH: 8.980799772 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/45/116', '10/1007/1045']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                 |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip4-ip4base-ipolicemarkbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and policer config with 2 threads, 2  phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518  Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/264/298', '20/197/205']  |br| LAT_50%NDR: ['20/27/76', '20/26/78']  |br| LAT_10%NDR: ['10/27/61', '10/27/39']        |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip4-ip4base-ipolicemarkbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and policer config with 2 threads, 2  phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518  Byte frames using binary search start at 10GE linerate, step  10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/203/228', '20/271/278']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip4-ip4base-ipolicemarkbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and policer config with 2 threads, 2  phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000  Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/322/364', '50/194/215']  |br| LAT_50%NDR: ['50/66/230', '50/66/205']  |br| LAT_10%NDR: ['50/60/132', '50/62/72']        |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip4-ip4base-ipolicemarkbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and policer config with 2 threads, 2  phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000  Byte frames using binary search start at 10GE linerate, step 5kpps,  LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/98/142', '50/338/358']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4-ip4base-ipolicemarkbase-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing and policer config with 4 threads, 4  phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 64  Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 22140475.625 pps (2x 11070237.8125 pps)  |br| FINAL_BANDWIDTH: 14.87839962 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/142/573', '20/51/326']  |br| LAT_50%NDR: ['10/22/43', '10/21/45']  |br| LAT_10%NDR: ['10/20/58', '10/20/139'] |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4-ip4base-ipolicemarkbase-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing and policer config with 4 threads, 4  phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 64  Byte frames using binary search start at 10GE linerate, step  100kpps, LT=0.5%.  | FINAL_RATE: 22833332.75 pps (2x 11416666.375 pps)  |br| FINAL_BANDWIDTH: 15.343999608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['30/516/923', '10/49/222']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip4-ip4base-ipolicemarkbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and policer config with 4 threads, 4  phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 1518  Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/172/236', '20/123/131']  |br| LAT_50%NDR: ['20/26/201', '10/28/59']  |br| LAT_10%NDR: ['20/27/54', '10/27/42']       |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip4-ip4base-ipolicemarkbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and policer config with 4 threads, 4  phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 1518  Byte frames using binary search start at 10GE linerate, step  10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/89/127', '20/169/250']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip4-ip4base-ipolicemarkbase-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing and policer config with 4 threads, 4  phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 9000  Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/146/197', '50/195/217']  |br| LAT_50%NDR: ['50/65/157', '50/65/107']  |br| LAT_10%NDR: ['50/59/502', '50/62/566']       |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip4-ip4base-ipolicemarkbase-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing and policer config with 4 threads, 4  phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 9000  Byte frames using binary search start at 10GE linerate, step 5kpps,  LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/172/213', '60/166/206']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+--------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip4-ip4base-ndrpdrdisc
`````````````````````````````````````

**RFC2544: Pkt throughput IPv4 routing test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for IPv4 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv4 routing and two static IPv4 /24 route entries. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                   | Documentation                                                                                                                                                                                                                                            | Message                                                                                                                                                                                                                                                                    |
+========================================+==========================================================================================================================================================================================================================================================+============================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4-ip4base-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.                                                     | FINAL_RATE: 9669047.375 pps (2x 4834523.6875 pps)  |br| FINAL_BANDWIDTH: 6.497599836 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/76/253', '20/77/278']  |br| LAT_50%NDR: ['10/29/104', '10/26/81']  |br| LAT_10%NDR: ['10/20/45', '10/20/61'] |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4-ip4base-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.                                            | FINAL_RATE: 9669047.375 pps (2x 4834523.6875 pps)  |br| FINAL_BANDWIDTH: 6.497599836 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/82/214', '10/83/223']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                  |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                    | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/335/376', '20/450/458']  |br| LAT_50%NDR: ['20/29/158', '10/29/199']  |br| LAT_10%NDR: ['10/27/64', '10/28/83']   |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip4-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                           | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/904/952', '20/939/950']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.                                                     | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/234/309', '60/376/416']  |br| LAT_50%NDR: ['50/65/116', '50/65/116']  |br| LAT_10%NDR: ['50/61/76', '50/57/96']      |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip4-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.                                            | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/759/785', '50/840/868']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4-ip4base-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.                                                   | FINAL_RATE: 20523809.0 pps (2x 10261904.5 pps)  |br| FINAL_BANDWIDTH: 13.791999648 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/51/112', '20/683/750']  |br| LAT_50%NDR: ['10/23/68', '10/24/41']  |br| LAT_10%NDR: ['10/18/37', '10/20/36']   |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4-ip4base-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.                                          | FINAL_RATE: 20523809.0 pps (2x 10261904.5 pps)  |br| FINAL_BANDWIDTH: 13.791999648 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/57/85', '20/678/704']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                    |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/242/280', '20/300/308']  |br| LAT_50%NDR: ['10/27/72', '10/27/182']  |br| LAT_10%NDR: ['10/26/49', '10/27/42']    |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip4-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                         | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/114/156', '20/438/453']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.                                                   | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/274/303', '50/128/166']  |br| LAT_50%NDR: ['50/65/248', '50/64/103']  |br| LAT_10%NDR: ['50/61/97', '50/62/79']      |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip4-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.                                          | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/105/124', '60/308/330']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4-ip4base-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.                                                  | FINAL_RATE: 23526189.875 pps (2x 11763094.9375 pps)  |br| FINAL_BANDWIDTH: 15.809599596 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/27/84', '10/28/83']  |br| LAT_50%NDR: ['10/18/30', '10/18/36']  |br| LAT_10%NDR: ['10/19/31', '10/19/30'] |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4-ip4base-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.                                         | FINAL_RATE: 23757142.25 pps (2x 11878571.125 pps)  |br| FINAL_BANDWIDTH: 15.964799592 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/481/552', '20/692/714']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                               |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                 | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/100/235', '20/124/224']  |br| LAT_50%NDR: ['10/27/52', '10/27/142']  |br| LAT_10%NDR: ['10/26/59', '10/27/139']   |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip4-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                        | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/156/176', '20/307/327']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.                                                  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/144/195', '50/192/263']  |br| LAT_50%NDR: ['50/64/255', '50/65/235']  |br| LAT_10%NDR: ['50/62/113', '50/61/112']    |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip4-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.                                         | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/153/291', '60/159/228']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc19-IMIX-1t1c-ethip4-ip4base-ndrdisc  |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 100kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)          | FINAL_RATE: 6687472.0 pps (2x 3343736.0 pps)  |br| FINAL_BANDWIDTH: 19.9999994163 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']       |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc20-IMIX-1t1c-ethip4-ip4base-pdrdisc  |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 100kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B) | FINAL_RATE: 6687472.0 pps (2x 3343736.0 pps)  |br| FINAL_BANDWIDTH: 19.9999994163 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                       |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip4-ip4scale200k-ndrpdrdisc
``````````````````````````````````````````

**RFC2544: Pkt throughput IPv4 routing test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for IPv4 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv4 routing and 2x100k static IPv4 /32 route entries. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 100k flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces. Incrementing of IP.dst (IPv4 destination address) field is applied to both streams.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                        | Documentation                                                                                                                                                                                                     | Message                                                                                                                                                                                                                                                                         |
+=============================================+===================================================================================================================================================================================================================+=================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4-ip4scale200k-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 8976190.25 pps (2x 4488095.125 pps)  |br| FINAL_BANDWIDTH: 6.031999848 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/1511/2818', '30/2808/2895']  |br| LAT_50%NDR: ['10/22/50', '10/23/81']  |br| LAT_10%NDR: ['10/19/776', '10/20/779'] |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4-ip4scale200k-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 8976190.25 pps (2x 4488095.125 pps)  |br| FINAL_BANDWIDTH: 6.031999848 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/2841/2920', '30/1547/1647']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip4-ip4scale200k-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.             | Search FAILED                                                                                                                                                                                                                                                                   |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip4-ip4scale200k-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/359/479', '20/258/344']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip4-ip4scale200k-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/396/509', '50/284/327']  |br| LAT_50%NDR: ['50/66/234', '50/66/228']  |br| LAT_10%NDR: ['50/61/88', '50/62/89']           |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip4-ip4scale200k-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/381/408', '50/386/427']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4-ip4scale200k-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 19138094.75 pps (2x 9569047.375 pps)  |br| FINAL_BANDWIDTH: 12.860799672 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/49/151', '10/736/808']  |br| LAT_50%NDR: ['10/23/83', '10/24/51']  |br| LAT_10%NDR: ['10/19/37', '10/20/47']      |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4-ip4scale200k-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 19138094.75 pps (2x 9569047.375 pps)  |br| FINAL_BANDWIDTH: 12.860799672 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/51/121', '10/738/769']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip4-ip4scale200k-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.           | Search FAILED                                                                                                                                                                                                                                                                   |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip4-ip4scale200k-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/156/208', '20/105/278']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip4-ip4scale200k-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/249/294', '60/249/270']  |br| LAT_50%NDR: ['50/66/144', '50/65/139']  |br| LAT_10%NDR: ['50/59/152', '50/62/90']          |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip4-ip4scale200k-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/377/450', '50/209/228']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4-ip4scale200k-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 23757142.25 pps (2x 11878571.125 pps)  |br| FINAL_BANDWIDTH: 15.964799592 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/481/580', '10/933/948']  |br| LAT_50%NDR: ['10/18/60', '10/18/32']  |br| LAT_10%NDR: ['10/18/186', '10/18/38']   |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4-ip4scale200k-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 23757142.25 pps (2x 11878571.125 pps)  |br| FINAL_BANDWIDTH: 15.964799592 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/480/498', '10/933/949']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                    |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip4-ip4scale200k-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | Search FAILED                                                                                                                                                                                                                                                                   |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip4-ip4scale200k-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/30/82', '20/76/208']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip4-ip4scale200k-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/228/269', '50/103/133']  |br| LAT_50%NDR: ['50/65/179', '50/64/118']  |br| LAT_10%NDR: ['50/61/247', '50/56/97']          |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip4-ip4scale200k-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/166/202', '50/134/200']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip4-ip4scale20k-ndrpdrdisc
`````````````````````````````````````````

**RFC2544: Pkt throughput IPv4 routing test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for IPv4 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv4 routing and 2x10k static IPv4 /32 route entries. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 10k flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces. Incrementing of IP.dst (IPv4 destination address) field is applied to both streams.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                       | Documentation                                                                                                                                                                                                     | Message                                                                                                                                                                                                                                                                       |
+============================================+===================================================================================================================================================================================================================+===============================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4-ip4scale20k-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 9207142.625 pps (2x 4603571.3125 pps)  |br| FINAL_BANDWIDTH: 6.187199844 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/193/322', '10/215/297']  |br| LAT_50%NDR: ['10/30/227', '10/31/186']  |br| LAT_10%NDR: ['10/20/49', '10/21/51'] |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4-ip4scale20k-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 8976190.25 pps (2x 4488095.125 pps)  |br| FINAL_BANDWIDTH: 6.031999848 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1576/1808', '30/2863/2932']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                 |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip4-ip4scale20k-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/455/908', '20/378/767']  |br| LAT_50%NDR: ['20/29/254', '10/29/253']  |br| LAT_10%NDR: ['20/26/83', '10/28/106']     |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip4-ip4scale20k-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/330/363', '20/248/260']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip4-ip4scale20k-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/352/393', '50/404/442']  |br| LAT_50%NDR: ['50/64/187', '50/64/191']  |br| LAT_10%NDR: ['50/61/80', '50/54/110']        |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip4-ip4scale20k-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/326/355', '60/221/254']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4-ip4scale20k-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 19369047.125 pps (2x 9684523.5625 pps)  |br| FINAL_BANDWIDTH: 13.015999668 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/46/201', '20/243/336']  |br| LAT_50%NDR: ['10/22/93', '10/23/44']  |br| LAT_10%NDR: ['10/19/34', '10/20/41']  |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4-ip4scale20k-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 19138094.75 pps (2x 9569047.375 pps)  |br| FINAL_BANDWIDTH: 12.860799672 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/57/229', '10/739/873']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                    |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip4-ip4scale20k-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/243/724', '20/197/620']  |br| LAT_50%NDR: ['10/26/198', '10/27/62']  |br| LAT_10%NDR: ['10/27/51', '10/27/36']       |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip4-ip4scale20k-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/339/390', '20/264/270']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip4-ip4scale20k-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/125/242', '50/213/228']  |br| LAT_50%NDR: ['50/65/92', '50/64/215']  |br| LAT_10%NDR: ['50/61/97', '50/61/152']         |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip4-ip4scale20k-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/101/138', '60/376/411']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4-ip4scale20k-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 23757142.25 pps (2x 11878571.125 pps)  |br| FINAL_BANDWIDTH: 15.964799592 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/481/543', '20/933/947']  |br| LAT_50%NDR: ['10/18/33', '10/18/31']  |br| LAT_10%NDR: ['10/20/36', '10/19/32']  |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4-ip4scale20k-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 23757142.25 pps (2x 11878571.125 pps)  |br| FINAL_BANDWIDTH: 15.964799592 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/482/563', '20/931/946']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                  |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip4-ip4scale20k-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/140/650', '20/166/499']  |br| LAT_50%NDR: ['20/27/78', '10/28/184']  |br| LAT_10%NDR: ['10/26/47', '10/27/83']       |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip4-ip4scale20k-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/141/244', '20/169/268']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip4-ip4scale20k-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/157/192', '60/209/231']  |br| LAT_50%NDR: ['50/64/186', '50/65/116']  |br| LAT_10%NDR: ['50/57/88', '50/61/201']        |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip4-ip4scale20k-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/164/265', '50/215/334']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip4-ip4scale2m-ndrpdrdisc
````````````````````````````````````````

**RFC2544: Pkt throughput IPv4 routing test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for IPv4 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv4 routing and 2x1M static IPv4 /32 route entries. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 1M flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces. Incrementing of IP.dst (IPv4 destination address) field is applied to both streams.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                      | Documentation                                                                                                                                                                                                     | Message                                                                                                                                                                                                                                                                           |
+===========================================+===================================================================================================================================================================================================================+===================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4-ip4scale2m-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 8052380.75 pps (2x 4026190.375 pps)  |br| FINAL_BANDWIDTH: 5.411199864 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/2108/3237', '20/2800/3246']  |br| LAT_50%NDR: ['10/34/199', '10/34/269']  |br| LAT_10%NDR: ['10/20/155', '10/24/114'] |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4-ip4scale2m-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 8052380.75 pps (2x 4026190.375 pps)  |br| FINAL_BANDWIDTH: 5.411199864 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/997/2272', '10/1328/3089']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip4-ip4scale2m-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.             | Search FAILED                                                                                                                                                                                                                                                                     |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip4-ip4scale2m-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/212/331', '20/296/324']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip4-ip4scale2m-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/94/199', '50/120/161']  |br| LAT_50%NDR: ['50/62/84', '50/65/88']  |br| LAT_10%NDR: ['50/61/86', '50/57/90']                |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip4-ip4scale2m-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/133/216', '50/177/212']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                               |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4-ip4scale2m-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 16366666.25 pps (2x 8183333.125 pps)  |br| FINAL_BANDWIDTH: 10.99839972 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/59/155', '20/850/959']  |br| LAT_50%NDR: ['10/31/53', '10/23/47']  |br| LAT_10%NDR: ['10/19/154', '10/20/62']        |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4-ip4scale2m-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 16135713.875 pps (2x 8067856.9375 pps)  |br| FINAL_BANDWIDTH: 10.843199724 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/51/163', '20/117/425']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip4-ip4scale2m-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.           | Search FAILED                                                                                                                                                                                                                                                                     |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip4-ip4scale2m-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/74/122', '20/145/251']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip4-ip4scale2m-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/74/107', '50/367/404']  |br| LAT_50%NDR: ['50/65/85', '50/66/209']  |br| LAT_10%NDR: ['50/61/77', '50/62/226']              |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip4-ip4scale2m-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/73/121', '50/260/283']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4-ip4scale2m-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 23526189.875 pps (2x 11763094.9375 pps)  |br| FINAL_BANDWIDTH: 15.809599596 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/33/144', '10/33/77']  |br| LAT_50%NDR: ['10/20/483', '10/20/477']  |br| LAT_10%NDR: ['10/20/40', '10/19/38']     |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4-ip4scale2m-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 23757142.25 pps (2x 11878571.125 pps)  |br| FINAL_BANDWIDTH: 15.964799592 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/938/1003', '20/938/1039']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                    |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip4-ip4scale2m-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | Search FAILED                                                                                                                                                                                                                                                                     |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip4-ip4scale2m-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/33/54', '20/32/84']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip4-ip4scale2m-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | Search FAILED                                                                                                                                                                                                                                                                     |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip4-ip4scale2m-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 245015.0 pps (2x 122507.5 pps)  |br| FINAL_BANDWIDTH: 17.6802824 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/70/149', '50/70/293']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                 |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

40ge2p1xl710-ethip4-ip4base-ndrpdrdisc
``````````````````````````````````````

**RFC2544: Pkt throughput IPv4 routing test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for IPv4 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv4 routing and two static IPv4 /24 route entries. DUT1 and DUT2 tested with 2p40GE NIC XL710 by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                   | Documentation                                                                                                                                                                                                                                | Message                                                                                                                                                                                                                                                                        |
+========================================+==============================================================================================================================================================================================================================================+================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4-ip4base-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 18.75Mpps rate, step 100kpps.                                        | FINAL_RATE: 9525000.0 pps (2x 4762500.0 pps)  |br| FINAL_BANDWIDTH: 6.4008 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/280/386', '10/303/429']  |br| LAT_50%NDR: ['10/26/95', '10/27/69']  |br| LAT_10%NDR: ['10/21/45', '10/19/33']              |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 24.5G rate, step 10kpps.                                           | FINAL_RATE: 3920530.8125 pps (2x 1960265.40625 pps)  |br| FINAL_BANDWIDTH: 48.238211117 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/366/433', '10/195/264']  |br| LAT_50%NDR: ['10/28/56', '10/27/55']  |br| LAT_10%NDR: ['10/23/58', '10/22/68'] |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4-ip4base-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 18.75Mpps rate, step 100kpps.                                      | FINAL_RATE: 13896093.75 pps (2x 6948046.875 pps)  |br| FINAL_BANDWIDTH: 9.338175 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/31/55', '10/31/60']  |br| LAT_50%NDR: ['10/13/554', '10/12/533']  |br| LAT_10%NDR: ['10/21/38', '10/19/69']          |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 24.5G rate, step 10kpps.                                         | FINAL_RATE: 3920530.8125 pps (2x 1960265.40625 pps)  |br| FINAL_BANDWIDTH: 48.238211117 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/203/214', '10/361/372']  |br| LAT_50%NDR: ['10/20/54', '10/22/72']  |br| LAT_10%NDR: ['10/22/37', '10/21/35'] |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4-ip4base-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 18.75Mpps rate, step 100kpps.                                     | FINAL_RATE: 25552343.75 pps (2x 12776171.875 pps)  |br| FINAL_BANDWIDTH: 17.171175 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/21/83', '10/21/97']  |br| LAT_50%NDR: ['10/9/580', '10/9/550']  |br| LAT_10%NDR: ['10/19/34', '10/19/46']          |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 24.5G rate, step 10kpps.                                        | FINAL_RATE: 3889574.21876 pps (2x 1944787.10938 pps)  |br| FINAL_BANDWIDTH: 47.8573211876 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/35/49', '10/40/108']  |br| LAT_50%NDR: ['10/25/53', '10/26/50']  |br| LAT_10%NDR: ['10/23/62', '10/23/44']  |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc19-IMIX-1t1c-ethip4-ip4base-ndrdisc  |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 24.5G rate, step 100kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B) | FINAL_RATE: 9050792.34376 pps (2x 4525396.17188 pps)  |br| FINAL_BANDWIDTH: 27.0679027281 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']   |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc20-IMIX-2t2c-ethip4-ip4base-ndrdisc  |  |br| [Cfg] DUT runs IPv4 routing config with 2 thread, 2 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 24.5G rate, step 100kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B) | FINAL_RATE: 14361267.75 pps (2x 7180633.875 pps)  |br| FINAL_BANDWIDTH: 42.949764368 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']        |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc21-IMIX-4t4c-ethip4-ip4base-ndrdisc  |  |br| [Cfg] DUT runs IPv4 routing config with 4 thread, 4 phy core,  2 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 24.5G rate, step 100kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B) | FINAL_RATE: 16384306.0 pps (2x 8192153.0 pps)  |br| FINAL_BANDWIDTH: 48.9999973738 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']          |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

IPv6 Routed-Forwarding
======================

.. note::

    Data sources for reported test results: i) FD.io test executor jobs
    `csit-vpp-perf-1701-all/4
    <https://jenkins.fd.io/view/csit/job/csit-vpp-perf-1701-all/4>`_
    , ii) archived FD.io jobs test result `output files
    <../../_static/archive/>`_.

10ge2p1x520-ethip6-ip6base-copwhtlistbase-ndrpdrdisc
````````````````````````````````````````````````````

**RFC2544: Pkt throughput IPv6 whitelist test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv6 for IPv6 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv6 routing, two static IPv6 /64 routes and IPv6 COP security whitelist ingress /64 filter entries applied on links TG - DUT1 and DUT2 - TG. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv6 header and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                                  | Documentation                                                                                                                                                                                                                          | Message                                                                                                                                                                                                                                                                        |
+=======================================================+========================================================================================================================================================================================================================================+================================================================================================================================================================================================================================================================================+
| tc01-78B-1t1c-ethip6-ip6base-copwhtlistbase-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.             | FINAL_RATE: 6527551.0 pps (2x 3263775.5 pps)  |br| FINAL_BANDWIDTH: 5.117599984 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/1732/1963', '10/3148/3255']  |br| LAT_50%NDR: ['10/37/175', '10/35/121']  |br| LAT_10%NDR: ['10/20/64', '10/24/87']   |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-78B-1t1c-ethip6-ip6base-copwhtlistbase-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.    | FINAL_RATE: 6527551.0 pps (2x 3263775.5 pps)  |br| FINAL_BANDWIDTH: 5.117599984 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/3151/3336', '10/1701/1879']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip6-ip6base-copwhtlistbase-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.            | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/453/487', '20/406/413']  |br| LAT_50%NDR: ['20/29/266', '20/32/267']  |br| LAT_10%NDR: ['20/28/125', '20/28/87']      |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip6-ip6base-copwhtlistbase-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.   | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/350/373', '20/426/435']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip6-ip6base-copwhtlistbase-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.             | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/245/339', '50/249/279']  |br| LAT_50%NDR: ['50/67/244', '50/63/181']  |br| LAT_10%NDR: ['50/58/212', '50/62/179']        |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip6-ip6base-copwhtlistbase-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.    | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/359/428', '50/312/345']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-78B-2t2c-ethip6-ip6base-copwhtlistbase-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 11273214.25 pps (2x 5636607.125 pps)  |br| FINAL_BANDWIDTH: 8.838199972 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/50/79', '20/937/1007']  |br| LAT_50%NDR: ['10/28/64', '10/28/65']  |br| LAT_10%NDR: ['10/22/54', '10/20/40']      |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-78B-2t2c-ethip6-ip6base-copwhtlistbase-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 10482270.375 pps (2x 5241135.1875 pps)  |br| FINAL_BANDWIDTH: 8.218099974 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/46/158', '10/1000/1158']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                  |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip6-ip6base-copwhtlistbase-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/95/232', '20/137/282']  |br| LAT_50%NDR: ['20/28/80', '20/28/70']  |br| LAT_10%NDR: ['20/27/96', '20/28/46']          |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip6-ip6base-copwhtlistbase-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/172/234', '20/236/246']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip6-ip6base-copwhtlistbase-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/265/311', '50/102/119']  |br| LAT_50%NDR: ['50/63/163', '50/65/112']  |br| LAT_10%NDR: ['50/55/183', '50/62/106']        |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip6-ip6base-copwhtlistbase-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/248/277', '60/196/227']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-78B-4t4c-ethip6-ip6base-copwhtlistbase-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 21160012.6876 pps (2x 10580006.3438 pps)  |br| FINAL_BANDWIDTH: 16.5894499471 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/40/147', '10/42/112']  |br| LAT_50%NDR: ['10/22/42', '10/23/43']  |br| LAT_10%NDR: ['10/21/51', '10/19/38'] |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-78B-4t4c-ethip6-ip6base-copwhtlistbase-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 21160012.6876 pps (2x 10580006.3438 pps)  |br| FINAL_BANDWIDTH: 16.5894499471 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/38/244', '10/40/109']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                 |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip6-ip6base-copwhtlistbase-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/178/296', '20/157/239']  |br| LAT_50%NDR: ['20/28/152', '20/28/172']  |br| LAT_10%NDR: ['20/27/68', '20/27/125']      |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip6-ip6base-copwhtlistbase-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/107/307', '20/49/106']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip6-ip6base-copwhtlistbase-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/184/245', '50/182/199']  |br| LAT_50%NDR: ['50/63/270', '50/65/120']  |br| LAT_10%NDR: ['50/61/97', '50/56/100']         |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip6-ip6base-copwhtlistbase-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/129/174', '60/176/241']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip6-ip6base-iacldstbase-ndrpdrdisc
`````````````````````````````````````````````````

**RFC2544: Pkt throughput IPv6 iAcl whitelist test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv6 for IPv6 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv6 routing, two static IPv6 /64 routes and IPv6 iAcl security whitelist ingress /64 filter entries applied on links TG - DUT1 and DUT2 - TG. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv6 header and generated payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                               | Documentation                                                                                                                                                                                                                          | Message                                                                                                                                                                                                                                                                         |
+====================================================+========================================================================================================================================================================================================================================+=================================================================================================================================================================================================================================================================================+
| tc01-78B-1t1c-ethip6-ip6base-iacldstbase-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.             | FINAL_RATE: 6527551.0 pps (2x 3263775.5 pps)  |br| FINAL_BANDWIDTH: 5.117599984 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/3139/3224', '20/1701/1848']  |br| LAT_50%NDR: ['10/37/93', '10/36/87']  |br| LAT_10%NDR: ['10/20/189', '10/21/166']    |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-78B-1t1c-ethip6-ip6base-iacldstbase-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.    | FINAL_RATE: 6527551.0 pps (2x 3263775.5 pps)  |br| FINAL_BANDWIDTH: 5.117599984 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['30/3138/3227', '50/1701/1776']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip6-ip6base-iacldstbase-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.            | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/186/279', '20/291/311']  |br| LAT_50%NDR: ['20/30/218', '20/31/185']  |br| LAT_10%NDR: ['20/13/61', '20/13/51']        |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip6-ip6base-iacldstbase-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.   | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/350/362', '20/385/391']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip6-ip6base-iacldstbase-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.             | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/362/406', '50/432/464']  |br| LAT_50%NDR: ['50/65/189', '50/67/176']  |br| LAT_10%NDR: ['50/61/180', '50/58/238']         |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip6-ip6base-iacldstbase-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.    | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/241/261', '50/357/381']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-78B-2t2c-ethip6-ip6base-iacldstbase-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 11273214.25 pps (2x 5636607.125 pps)  |br| FINAL_BANDWIDTH: 8.838199972 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/912/974', '10/933/1009']  |br| LAT_50%NDR: ['10/30/124', '10/29/63']  |br| LAT_10%NDR: ['10/22/203', '10/20/43']   |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-78B-2t2c-ethip6-ip6base-iacldstbase-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 11668686.1875 pps (2x 5834343.09375 pps)  |br| FINAL_BANDWIDTH: 9.148249971 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/50/164', '30/916/984']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip6-ip6base-iacldstbase-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/150/223', '20/274/282']  |br| LAT_50%NDR: ['20/27/116', '20/27/197']  |br| LAT_10%NDR: ['20/27/147', '20/27/57']       |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip6-ip6base-iacldstbase-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/97/120', '20/396/405']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip6-ip6base-iacldstbase-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/107/149', '50/311/349']  |br| LAT_50%NDR: ['50/66/170', '50/66/220']  |br| LAT_10%NDR: ['50/56/200', '50/62/114']         |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip6-ip6base-iacldstbase-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/330/385', '50/189/242']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-78B-4t4c-ethip6-ip6base-iacldstbase-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 20369068.8124 pps (2x 10184534.4062 pps)  |br| FINAL_BANDWIDTH: 15.9693499489 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/67/178', '20/49/116']  |br| LAT_50%NDR: ['10/24/46', '10/22/71']  |br| LAT_10%NDR: ['10/19/49', '10/26/241'] |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-78B-4t4c-ethip6-ip6base-iacldstbase-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 21160012.6876 pps (2x 10580006.3438 pps)  |br| FINAL_BANDWIDTH: 16.5894499471 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/105/528', '20/77/194']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                 |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip6-ip6base-iacldstbase-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/183/240', '20/109/120']  |br| LAT_50%NDR: ['20/28/194', '20/28/235']  |br| LAT_10%NDR: ['20/27/124', '20/24/40']       |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip6-ip6base-iacldstbase-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/216/239', '20/74/80']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip6-ip6base-iacldstbase-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/241/332', '60/121/170']  |br| LAT_50%NDR: ['50/65/248', '50/66/127']  |br| LAT_10%NDR: ['50/62/170', '50/62/80']          |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip6-ip6base-iacldstbase-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing and whitelist filters config with  4 threads, 4 phy cores, 2 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/139/166', '50/197/308']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip6-ip6base-ndrpdrdisc
`````````````````````````````````````

**RFC2544: Pkt throughput IPv6 routing test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv6 for IPv6 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv6 routing and two static IPv6 /64 route entries. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv6 header and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                   | Documentation                                                                                                                                                                                                     | Message                                                                                                                                                                                                                                                                        |
+========================================+===================================================================================================================================================================================================================+================================================================================================================================================================================================================================================================================+
| tc01-78B-1t1c-ethip6-ip6base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 7713966.8125 pps (2x 3856983.40625 pps)  |br| FINAL_BANDWIDTH: 6.047749981 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/202/333', '20/217/350']  |br| LAT_50%NDR: ['10/22/67', '10/37/105']  |br| LAT_10%NDR: ['10/20/34', '10/22/80'] |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-78B-1t1c-ethip6-ip6base-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 7713966.8125 pps (2x 3856983.40625 pps)  |br| FINAL_BANDWIDTH: 6.047749981 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1418/1503', '10/1417/1484']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                              |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/295/340', '20/111/230']  |br| LAT_50%NDR: ['20/28/116', '20/29/192']  |br| LAT_10%NDR: ['20/26/98', '20/27/162']      |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip6-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/159/208', '20/218/226']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/784/949', '50/868/1040']  |br| LAT_50%NDR: ['50/64/257', '50/63/268']  |br| LAT_10%NDR: ['50/61/88', '50/61/74']         |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip6-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/859/944', '60/927/1023']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-78B-2t2c-ethip6-ip6base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 15623405.5625 pps (2x 7811702.78125 pps)  |br| FINAL_BANDWIDTH: 12.248749961 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/47/147', '20/177/307']  |br| LAT_50%NDR: ['10/29/51', '10/26/61']  |br| LAT_10%NDR: ['10/22/51', '10/20/47'] |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-78B-2t2c-ethip6-ip6base-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 15623405.5625 pps (2x 7811702.78125 pps)  |br| FINAL_BANDWIDTH: 12.248749961 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/48/80', '10/88/114']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/76/101', '20/261/269']  |br| LAT_50%NDR: ['20/27/122', '20/27/103']  |br| LAT_10%NDR: ['20/27/70', '10/26/46']        |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip6-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/245/261', '20/185/193']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/104/145', '50/206/248']  |br| LAT_50%NDR: ['50/66/96', '50/65/143']  |br| LAT_10%NDR: ['50/61/90', '50/62/110']          |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip6-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/220/252', '50/162/197']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-78B-4t4c-ethip6-ip6base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 21160012.6876 pps (2x 10580006.3438 pps)  |br| FINAL_BANDWIDTH: 16.5894499471 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/29/106', '10/30/117']  |br| LAT_50%NDR: ['10/20/49', '10/19/51']  |br| LAT_10%NDR: ['10/19/58', '10/19/57'] |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-78B-4t4c-ethip6-ip6base-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 21555484.625 pps (2x 10777742.3125 pps)  |br| FINAL_BANDWIDTH: 16.899499946 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/404/510', '10/777/840']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                 |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/126/143', '20/184/229']  |br| LAT_50%NDR: ['20/28/54', '20/28/74']  |br| LAT_10%NDR: ['20/26/97', '10/24/192']        |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip6-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/242/342', '20/100/110']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/173/313', '50/128/158']  |br| LAT_50%NDR: ['50/64/231', '50/65/115']  |br| LAT_10%NDR: ['50/55/90', '50/62/74']          |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip6-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/159/211', '60/174/205']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+----------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip6-ip6scale200k-ndrpdrdisc
``````````````````````````````````````````

**RFC2544: Pkt throughput IPv6 routing test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv6 for IPv6 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv6 routing and 2x100k static IPv6 /64 route entries. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 100k flows per flow-group) with all packets containing Ethernet header, IPv6 header withq IP and static payload. MAC addresses are matching MAC addresses of the TG node interfaces. Incrementing of IP.dst (IPv6 destination address) field is applied to both streams.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                        | Documentation                                                                                                                                                                                                     | Message                                                                                                                                                                                                                                                                          |
+=============================================+===================================================================================================================================================================================================================+==================================================================================================================================================================================================================================================================================+
| tc01-78B-1t1c-ethip6-ip6scale200k-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 5341135.1875 pps (2x 2670567.59375 pps)  |br| FINAL_BANDWIDTH: 4.187449987 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/69/456', '10/70/493']  |br| LAT_50%NDR: ['10/31/109', '10/37/151']  |br| LAT_10%NDR: ['10/24/119', '10/22/103']  |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-78B-1t1c-ethip6-ip6scale200k-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 5341135.1875 pps (2x 2670567.59375 pps)  |br| FINAL_BANDWIDTH: 4.187449987 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/261/959', '10/263/809']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                    |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip6-ip6scale200k-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/406/430', '20/592/599']  |br| LAT_50%NDR: ['20/14/355', '20/15/346']  |br| LAT_10%NDR: ['10/27/161', '10/27/124']       |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip6-ip6scale200k-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/403/466', '20/361/373']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip6-ip6scale200k-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/318/392', '60/481/510']  |br| LAT_50%NDR: ['50/65/287', '50/66/265']  |br| LAT_10%NDR: ['50/61/160', '50/62/246']          |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip6-ip6scale200k-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/276/310', '50/274/305']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-78B-2t2c-ethip6-ip6scale200k-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 11273214.25 pps (2x 5636607.125 pps)  |br| FINAL_BANDWIDTH: 8.838199972 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/137/527', '10/859/1123']  |br| LAT_50%NDR: ['10/18/99', '10/19/84']  |br| LAT_10%NDR: ['10/21/77', '10/18/123']     |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-78B-2t2c-ethip6-ip6scale200k-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 11668686.1875 pps (2x 5834343.09375 pps)  |br| FINAL_BANDWIDTH: 9.148249971 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/92/279', '10/791/1145']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip6-ip6scale200k-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/332/346', '20/255/267']  |br| LAT_50%NDR: ['20/13/276', '10/14/213']  |br| LAT_10%NDR: ['20/26/60', '10/24/176']        |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip6-ip6scale200k-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/266/284', '20/322/332']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip6-ip6scale200k-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/208/452', '50/65/147']  |br| LAT_50%NDR: ['50/66/176', '50/63/164']  |br| LAT_10%NDR: ['50/62/168', '50/62/76']            |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip6-ip6scale200k-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/282/303', '50/115/129']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-78B-4t4c-ethip6-ip6scale200k-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 17205293.3125 pps (2x 8602646.65625 pps)  |br| FINAL_BANDWIDTH: 13.488949957 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/126/351', '20/105/391']  |br| LAT_50%NDR: ['10/23/84', '10/24/327']  |br| LAT_10%NDR: ['10/20/55', '10/21/54'] |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-78B-4t4c-ethip6-ip6scale200k-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 18787181.0625 pps (2x 9393590.53125 pps)  |br| FINAL_BANDWIDTH: 14.729149953 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/162/480', '20/385/608']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                  |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip6-ip6scale200k-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/247/275', '20/81/90']  |br| LAT_50%NDR: ['20/26/231', '10/27/71']  |br| LAT_10%NDR: ['10/27/54', '10/27/45']            |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip6-ip6scale200k-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/185/282', '20/154/219']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip6-ip6scale200k-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/194/245', '60/183/259']  |br| LAT_50%NDR: ['50/65/91', '50/62/88']  |br| LAT_10%NDR: ['50/61/107', '50/58/88']             |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip6-ip6scale200k-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/244/443', '50/95/441']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                               |
+---------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip6-ip6scale20k-ndrpdrdisc
`````````````````````````````````````````

**RFC2544: Pkt throughput IPv6 routing test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv6 for IPv6 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv6 routing and 2x10k static IPv6 /64 route entries. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 10k flows per flow-group) with all packets containing Ethernet header, IPv6 header withq IP and static payload. MAC addresses are matching MAC addresses of the TG node interfaces. Incrementing of IP.dst (IPv6 destination address) field is applied to both streams.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                       | Documentation                                                                                                                                                                                                     | Message                                                                                                                                                                                                                                                                         |
+============================================+===================================================================================================================================================================================================================+=================================================================================================================================================================================================================================================================================+
| tc01-78B-1t1c-ethip6-ip6scale20k-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 6527551.0 pps (2x 3263775.5 pps)  |br| FINAL_BANDWIDTH: 5.117599984 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/1908/3226', '10/2919/3043']  |br| LAT_50%NDR: ['10/30/100', '10/31/74']  |br| LAT_10%NDR: ['10/20/69', '10/23/77']     |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-78B-1t1c-ethip6-ip6scale20k-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 6527551.0 pps (2x 3263775.5 pps)  |br| FINAL_BANDWIDTH: 5.117599984 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['40/1800/2004', '40/2162/2283']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip6-ip6scale20k-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/890/985', '20/955/1066']  |br| LAT_50%NDR: ['20/30/221', '20/29/229']  |br| LAT_10%NDR: ['20/26/235', '10/25/201']     |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip6-ip6scale20k-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/91/106', '20/112/120']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip6-ip6scale20k-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/381/437', '60/385/405']  |br| LAT_50%NDR: ['50/64/245', '50/65/251']  |br| LAT_10%NDR: ['50/62/115', '50/62/203']         |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip6-ip6scale20k-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/835/921', '50/931/1012']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-78B-2t2c-ethip6-ip6scale20k-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 13646045.875 pps (2x 6823022.9375 pps)  |br| FINAL_BANDWIDTH: 10.698499966 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/57/218', '20/822/991']  |br| LAT_50%NDR: ['10/29/62', '10/30/95']  |br| LAT_10%NDR: ['10/19/43', '10/19/47']    |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-78B-2t2c-ethip6-ip6scale20k-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 13646045.875 pps (2x 6823022.9375 pps)  |br| FINAL_BANDWIDTH: 10.698499966 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['30/62/173', '20/1523/1574']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                  |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip6-ip6scale20k-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/192/253', '20/214/223']  |br| LAT_50%NDR: ['20/27/163', '10/27/195']  |br| LAT_10%NDR: ['10/26/72', '20/27/126']       |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip6-ip6scale20k-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/76/108', '20/309/338']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip6-ip6scale20k-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/197/238', '60/207/222']  |br| LAT_50%NDR: ['50/64/104', '50/65/235']  |br| LAT_10%NDR: ['50/55/124', '50/62/136']         |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip6-ip6scale20k-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/188/244', '50/118/146']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-78B-4t4c-ethip6-ip6scale20k-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 21555484.625 pps (2x 10777742.3125 pps)  |br| FINAL_BANDWIDTH: 16.899499946 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/750/791', '10/775/792']  |br| LAT_50%NDR: ['10/10/36', '10/10/36']  |br| LAT_10%NDR: ['10/20/57', '10/19/103'] |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-78B-4t4c-ethip6-ip6scale20k-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 21555484.625 pps (2x 10777742.3125 pps)  |br| FINAL_BANDWIDTH: 16.899499946 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/409/456', '20/615/697']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                  |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip6-ip6scale20k-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/141/176', '20/161/213']  |br| LAT_50%NDR: ['20/28/213', '20/27/146']  |br| LAT_10%NDR: ['20/26/46', '10/27/40']        |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip6-ip6scale20k-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/278/366', '20/73/81']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip6-ip6scale20k-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/103/275', '60/148/167']  |br| LAT_50%NDR: ['50/66/293', '50/66/112']  |br| LAT_10%NDR: ['50/61/99', '50/62/84']           |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip6-ip6scale20k-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/69/273', '50/70/227']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                               |
+--------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip6-ip6scale2m-ndrpdrdisc
````````````````````````````````````````

**RFC2544: Pkt throughput IPv6 routing test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv6 for IPv6 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv6 routing and 2x1M static IPv6 /64 route entries. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 1M flows per flow-group) with all packets containing Ethernet header, IPv6 header withq IP and static payload. MAC addresses are matching MAC addresses of the TG node interfaces. Incrementing of IP.dst (IPv6 destination address) field is applied to both streams.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                      | Documentation                                                                                                                                                                                                     | Message                                                                                                                                                                                                                                                                         |
+===========================================+===================================================================================================================================================================================================================+=================================================================================================================================================================================================================================================================================+
| tc01-78B-1t1c-ethip6-ip6scale2m-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 4154719.375 pps (2x 2077359.6875 pps)  |br| FINAL_BANDWIDTH: 3.25729999 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/487/2732', '10/709/4583']  |br| LAT_50%NDR: ['10/34/316', '10/42/436']  |br| LAT_10%NDR: ['10/21/59', '10/27/133'] |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-78B-1t1c-ethip6-ip6scale2m-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 4154719.375 pps (2x 2077359.6875 pps)  |br| FINAL_BANDWIDTH: 3.25729999 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/735/2943', '10/1139/4397']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip6-ip6scale2m-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/121/145', '20/115/125']  |br| LAT_50%NDR: ['20/30/118', '20/31/116']  |br| LAT_10%NDR: ['20/27/48', '10/28/47']        |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip6-ip6scale2m-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/279/290', '20/276/285']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip6-ip6scale2m-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/129/151', '50/156/175']  |br| LAT_50%NDR: ['50/65/274', '50/62/217']  |br| LAT_10%NDR: ['50/61/93', '50/60/76']           |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip6-ip6scale2m-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/292/345', '60/289/313']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-78B-2t2c-ethip6-ip6scale2m-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 8900382.625 pps (2x 4450191.3125 pps)  |br| FINAL_BANDWIDTH: 6.977899978 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/235/929', '10/578/1590']  |br| LAT_50%NDR: ['10/33/72', '10/28/81']  |br| LAT_10%NDR: ['10/22/92', '10/23/87']    |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-78B-2t2c-ethip6-ip6scale2m-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 8900382.625 pps (2x 4450191.3125 pps)  |br| FINAL_BANDWIDTH: 6.977899978 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/166/711', '10/466/1279']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                    |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip6-ip6scale2m-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/304/324', '20/237/252']  |br| LAT_50%NDR: ['20/14/251', '10/14/137']  |br| LAT_10%NDR: ['20/27/54', '10/27/156']       |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip6-ip6scale2m-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/368/397', '20/126/134']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip6-ip6scale2m-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/120/147', '50/256/274']  |br| LAT_50%NDR: ['50/65/90', '50/66/110']  |br| LAT_10%NDR: ['50/61/168', '50/62/161']          |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip6-ip6scale2m-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/357/427', '50/88/120']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-78B-4t4c-ethip6-ip6scale2m-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 15623405.5625 pps (2x 7811702.78125 pps)  |br| FINAL_BANDWIDTH: 12.248749961 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/93/277', '10/270/818']  |br| LAT_50%NDR: ['10/23/72', '10/24/58']  |br| LAT_10%NDR: ['10/23/69', '10/21/51']  |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-78B-4t4c-ethip6-ip6scale2m-pdrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 16018877.5 pps (2x 8009438.75 pps)  |br| FINAL_BANDWIDTH: 12.55879996 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/560/1102', '20/1394/1662']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip6-ip6scale2m-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/169/194', '20/99/106']  |br| LAT_50%NDR: ['20/27/106', '10/27/44']  |br| LAT_10%NDR: ['20/26/128', '10/27/42']         |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip6-ip6scale2m-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/56/612', '20/161/683']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip6-ip6scale2m-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/79/102', '50/81/101']  |br| LAT_50%NDR: ['50/66/114', '50/66/283']  |br| LAT_10%NDR: ['50/55/780', '50/62/800']           |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip6-ip6scale2m-pdrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 277160.0 pps (2x 138580.0 pps)  |br| FINAL_BANDWIDTH: 19.9998656 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/97/140', '50/177/211']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+-------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

40ge2p1xl710-ethip6-ip6base-ndrpdrdisc
``````````````````````````````````````

**RFC2544: Pkt throughput IPv6 routing test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv6 for IPv6 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv6 routing and two static IPv6 /64 route entries. DUT1 and DUT2 tested with 2p40GE NIC XL710 by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv6 header and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                   | Documentation                                                                                                                                                                                            | Message                                                                                                                                                                                                                                                                        |
+========================================+==========================================================================================================================================================================================================+================================================================================================================================================================================================================================================================================+
| tc01-78B-1t1c-ethip6-ip6base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 18.75Mpps rate, step 100kpps.    | FINAL_RATE: 7485156.25 pps (2x 3742578.125 pps)  |br| FINAL_BANDWIDTH: 5.8683625 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/56/226', '20/58/219']  |br| LAT_50%NDR: ['10/11/67', '10/11/53']  |br| LAT_10%NDR: ['10/22/47', '10/21/104']         |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 24.5G rate, step 10kpps.       | FINAL_RATE: 3889574.21876 pps (2x 1944787.10938 pps)  |br| FINAL_BANDWIDTH: 47.8573211876 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/34/273', '10/33/256']  |br| LAT_50%NDR: ['10/22/48', '10/21/58']  |br| LAT_10%NDR: ['10/22/45', '10/23/47'] |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-78B-2t2c-ethip6-ip6base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 18.75Mpps rate, step 100kpps.  | FINAL_RATE: 15061718.75 pps (2x 7530859.375 pps)  |br| FINAL_BANDWIDTH: 11.8083875 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/49/158', '20/50/146']  |br| LAT_50%NDR: ['10/27/75', '10/28/94']  |br| LAT_10%NDR: ['10/20/37', '10/20/49']        |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 24.5G rate, step 10kpps.     | FINAL_RATE: 3827661.03124 pps (2x 1913830.51562 pps)  |br| FINAL_BANDWIDTH: 47.0955413284 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/34/57', '10/34/67']  |br| LAT_50%NDR: ['10/27/169', '10/25/186']  |br| LAT_10%NDR: ['10/22/47', '10/23/75'] |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-78B-4t4c-ethip6-ip6base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 18.75Mpps rate, step 100kpps. | FINAL_RATE: 24386718.75 pps (2x 12193359.375 pps)  |br| FINAL_BANDWIDTH: 19.1191875 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/26/203', '10/26/85']  |br| LAT_50%NDR: ['10/18/665', '10/19/612']  |br| LAT_10%NDR: ['10/20/35', '10/19/67']      |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 24.5G rate, step 10kpps.    | FINAL_RATE: 3889574.21876 pps (2x 1944787.10938 pps)  |br| FINAL_BANDWIDTH: 47.8573211876 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/35/194', '20/34/113']  |br| LAT_50%NDR: ['10/27/78', '10/26/52']  |br| LAT_10%NDR: ['10/22/43', '10/21/40'] |
+----------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

IPv4 Overlay Tunnels
====================

.. note::

    Data sources for reported test results: i) FD.io test executor jobs
    `csit-vpp-perf-1701-all/4
    <https://jenkins.fd.io/view/csit/job/csit-vpp-perf-1701-all/4>`_
    , ii) archived FD.io jobs test result `output files
    <../../_static/archive/>`_.

10ge2p1x520-ethip4lispip4-ip4base-ndrpdrdisc
````````````````````````````````````````````

**RFC6830: Pkt throughput Lisp test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4-LISP-IPv4 on DUT1-DUT2, Eth-IPv4 on TG-DUTn for IPv4 routing over LISPoIPv4 tunnel.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv4 routing and static routes. LISPoIPv4 tunnel is configured between DUT1 and DUT2. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search  

 - **[Ref] Applicable standard specifications:** RFC6830.

+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                          | Documentation                                                                                                                                                                                                                                              | Message                                                                                                                                                                                                                                                                            |
+===============================================+============================================================================================================================================================================================================================================================+====================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4lispip4-ip4base-ndrdisc   |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 4836141.125 pps (2x 2418070.5625 pps)  |br| FINAL_BANDWIDTH: 3.249886836 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/4300/4455', '40/2806/2991']  |br| LAT_50%NDR: ['10/42/104', '10/39/176']  |br| LAT_10%NDR: ['10/27/104', '10/24/68'] |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4lispip4-ip4base-pdrdisc   |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 4836141.125 pps (2x 2418070.5625 pps)  |br| FINAL_BANDWIDTH: 3.249886836 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/4188/4457', '20/2992/4464']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                    |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1480B-1t1c-ethip4lispip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1480 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1606642.0 pps (2x 803321.0 pps)  |br| FINAL_BANDWIDTH: 19.279704 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/1369/1384', '20/1370/1458']  |br| LAT_50%NDR: ['20/32/102', '20/35/97']  |br| LAT_10%NDR: ['20/29/48', '20/29/49']           |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1480B-1t1c-ethip4lispip4-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1480 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1632233.0 pps (2x 816116.5 pps)  |br| FINAL_BANDWIDTH: 19.586796 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1372/1386', '20/1372/1480']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip4lispip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 244801.5 pps (2x 122400.75 pps)  |br| FINAL_BANDWIDTH: 17.66487624 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/73/251', '50/75/262']  |br| LAT_50%NDR: ['50/66/165', '50/67/186']  |br| LAT_10%NDR: ['50/63/121', '50/63/137']            |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip4lispip4-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 276916.0 pps (2x 138458.0 pps)  |br| FINAL_BANDWIDTH: 19.98225856 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/1621/1829', '60/1620/1710']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4lispip4-ip4base-ndrdisc   |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 9261548.5625 pps (2x 4630774.28125 pps)  |br| FINAL_BANDWIDTH: 6.223760634 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/63/248', '20/77/203']  |br| LAT_50%NDR: ['10/34/84', '10/37/80']  |br| LAT_10%NDR: ['10/20/37', '10/20/37']        |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4lispip4-ip4base-pdrdisc   |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 9472282.25 pps (2x 4736141.125 pps)  |br| FINAL_BANDWIDTH: 6.365373672 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/928/968', '20/954/991']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1480B-2t2c-ethip4lispip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1480 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1606642.0 pps (2x 803321.0 pps)  |br| FINAL_BANDWIDTH: 19.279704 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/680/1377', '20/680/1377']  |br| LAT_50%NDR: ['20/29/164', '20/30/61']  |br| LAT_10%NDR: ['20/27/42', '20/28/40']             |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1480B-2t2c-ethip4lispip4-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1480 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1632233.0 pps (2x 816116.5 pps)  |br| FINAL_BANDWIDTH: 19.586796 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1359/1377', '20/1359/1377']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip4lispip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 244801.5 pps (2x 122400.75 pps)  |br| FINAL_BANDWIDTH: 17.66487624 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/71/156', '50/74/111']  |br| LAT_50%NDR: ['50/63/207', '50/67/85']  |br| LAT_10%NDR: ['50/56/81', '50/62/102']              |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip4lispip4-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 276916.0 pps (2x 138458.0 pps)  |br| FINAL_BANDWIDTH: 19.98225856 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/1619/1781', '50/1618/1748']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4lispip4-ip4base-ndrdisc   |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 9261548.5625 pps (2x 4630774.28125 pps)  |br| FINAL_BANDWIDTH: 6.223760634 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/62/126', '10/64/111']  |br| LAT_50%NDR: ['10/32/180', '10/30/98']  |br| LAT_10%NDR: ['10/21/51', '10/21/60']       |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4lispip4-ip4base-pdrdisc   |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 9472282.25 pps (2x 4736141.125 pps)  |br| FINAL_BANDWIDTH: 6.365373672 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['30/943/1064', '20/942/996']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1480B-4t4c-ethip4lispip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1480 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1606642.0 pps (2x 803321.0 pps)  |br| FINAL_BANDWIDTH: 19.279704 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/2543/2594', '20/2545/2607']  |br| LAT_50%NDR: ['20/29/60', '20/29/43']  |br| LAT_10%NDR: ['20/27/43', '20/28/179']           |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1480B-4t4c-ethip4lispip4-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 1480 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1632233.0 pps (2x 816116.5 pps)  |br| FINAL_BANDWIDTH: 19.586796 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/2546/2576', '20/2545/2605']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip4lispip4-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 244801.5 pps (2x 122400.75 pps)  |br| FINAL_BANDWIDTH: 17.66487624 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/71/173', '50/73/93']  |br| LAT_50%NDR: ['50/66/188', '50/66/90']  |br| LAT_10%NDR: ['50/62/81', '50/56/73']                |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip4lispip4-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv4 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 276916.0 pps (2x 138458.0 pps)  |br| FINAL_BANDWIDTH: 19.98225856 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/2856/2938', '60/2856/2956']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip4lispip6-ip4base-ndrpdrdisc
````````````````````````````````````````````

**RFC6830: Pkt throughput Lisp test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4-LISP-IPv6 on DUT1-DUT2 and Eth-IPv4 on TG-DUTn for IPv4 routing over LISPoIPv6 tunnel.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv4 routing and static routes. LISPoIPv6 tunnel is configured between DUT1 and DUT2. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search  

 - **[Ref] Applicable standard specifications:** RFC6830.

+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                          | Documentation                                                                                                                                                                                                                                              | Message                                                                                                                                                                                                                                                                      |
+===============================================+============================================================================================================================================================================================================================================================+==============================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4lispip6-ip4base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 4006439.0 pps (2x 2003219.5 pps)  |br| FINAL_BANDWIDTH: 2.692327008 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/118/334', '20/118/310']  |br| LAT_50%NDR: ['10/27/86', '10/48/128']  |br| LAT_10%NDR: ['10/21/66', '10/28/105']     |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4lispip6-ip4base-pdrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 4006439.0 pps (2x 2003219.5 pps)  |br| FINAL_BANDWIDTH: 2.692327008 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/89/273', '20/101/329']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1460B-1t1c-ethip4lispip6-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1460 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 1610872.0625 pps (2x 805436.03125 pps)  |br| FINAL_BANDWIDTH: 19.07272522 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/51/290', '20/52/288']  |br| LAT_50%NDR: ['20/38/76', '20/40/70']  |br| LAT_10%NDR: ['20/29/204', '20/29/163'] |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1460B-1t1c-ethip4lispip6-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1610872.0625 pps (2x 805436.03125 pps)  |br| FINAL_BANDWIDTH: 19.07272522 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/62/199', '20/62/199']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip4lispip6-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 243732.25 pps (2x 121866.125 pps)  |br| FINAL_BANDWIDTH: 17.58771916 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/76/145', '60/77/148']  |br| LAT_50%NDR: ['50/67/181', '50/70/247']  |br| LAT_10%NDR: ['50/61/92', '50/64/74']      |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip4lispip6-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 275694.0 pps (2x 137847.0 pps)  |br| FINAL_BANDWIDTH: 19.89407904 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/1617/1843', '60/1621/2461']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4lispip6-ip4base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 8398484.0 pps (2x 4199242.0 pps)  |br| FINAL_BANDWIDTH: 5.643781248 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/1045/1119', '20/1071/1114']  |br| LAT_50%NDR: ['10/37/129', '10/31/105']  |br| LAT_10%NDR: ['10/20/79', '10/31/97'] |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4lispip6-ip4base-pdrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 8398484.0 pps (2x 4199242.0 pps)  |br| FINAL_BANDWIDTH: 5.643781248 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1047/1087', '20/1079/1212']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1460B-2t2c-ethip4lispip6-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1610872.0625 pps (2x 805436.03125 pps)  |br| FINAL_BANDWIDTH: 19.07272522 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/37/161', '20/35/110']  |br| LAT_50%NDR: ['20/29/45', '20/31/52']  |br| LAT_10%NDR: ['20/14/61', '20/14/77']   |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1460B-2t2c-ethip4lispip6-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1610872.0625 pps (2x 805436.03125 pps)  |br| FINAL_BANDWIDTH: 19.07272522 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/34/52', '20/35/98']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip4lispip6-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 243732.25 pps (2x 121866.125 pps)  |br| FINAL_BANDWIDTH: 17.58771916 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/73/88', '50/75/88']  |br| LAT_50%NDR: ['50/68/98', '50/68/149']  |br| LAT_10%NDR: ['50/57/84', '50/63/116']        |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip4lispip6-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 275694.0 pps (2x 137847.0 pps)  |br| FINAL_BANDWIDTH: 19.89407904 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/1616/1665', '60/1618/1812']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4lispip6-ip4base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 8398484.0 pps (2x 4199242.0 pps)  |br| FINAL_BANDWIDTH: 5.643781248 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/1027/1067', '10/1036/1152']  |br| LAT_50%NDR: ['10/39/73', '20/43/72']  |br| LAT_10%NDR: ['10/23/94', '10/25/73']   |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4lispip6-ip4base-pdrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 8398484.0 pps (2x 4199242.0 pps)  |br| FINAL_BANDWIDTH: 5.643781248 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/1027/1074', '10/1031/1095']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1460B-4t4c-ethip4lispip6-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1610872.0625 pps (2x 805436.03125 pps)  |br| FINAL_BANDWIDTH: 19.07272522 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/36/152', '20/35/100']  |br| LAT_50%NDR: ['20/29/44', '20/29/46']  |br| LAT_10%NDR: ['20/27/60', '20/28/43']   |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1460B-4t4c-ethip4lispip6-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1610872.0625 pps (2x 805436.03125 pps)  |br| FINAL_BANDWIDTH: 19.07272522 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/36/82', '20/34/91']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip4lispip6-ip4base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 243732.25 pps (2x 121866.125 pps)  |br| FINAL_BANDWIDTH: 17.58771916 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/73/135', '50/75/111']  |br| LAT_50%NDR: ['50/65/107', '50/66/120']  |br| LAT_10%NDR: ['50/63/97', '50/57/83']      |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip4lispip6-ip4base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 275694.0 pps (2x 137847.0 pps)  |br| FINAL_BANDWIDTH: 19.89407904 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/2845/3363', '60/2845/3343']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip4vxlan-l2bdbasemaclrn-ndrpdrdisc
`````````````````````````````````````````````````

**RFC2544: Packet throughput L2BD with VXLANoIPv4 test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 bridge domain on TG-DUTn. Eth-IPv4-VXLAN-Eth-IPv4 is applied on link between DUT1 and DUT2.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 bridge domain. VXLAN tunnels are configured between L2BDs on DUT1 and DUT2. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and generated payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544, RFC7348.

+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                               | Documentation                                                                                                                                                                                                        | Message                                                                                                                                                                                                                                                                        |
+====================================================+======================================================================================================================================================================================================================+================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4vxlan-l2bdbasemaclrn-ndrdisc   |  |br| [Cfg] DUT runs L2BD forwarding config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.               | FINAL_RATE: 5967723.75 pps (2x 2983861.875 pps)  |br| FINAL_BANDWIDTH: 4.01031036 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/3565/3663', '20/2380/2454']  |br| LAT_50%NDR: ['10/36/102', '10/35/128']  |br| LAT_10%NDR: ['10/24/77', '10/25/67'] |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4vxlan-l2bdbasemaclrn-pdrdisc   |  |br| [Cfg] DUT runs L2BD forwarding config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.      | FINAL_RATE: 5967723.75 pps (2x 2983861.875 pps)  |br| FINAL_BANDWIDTH: 4.01031036 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/3566/3683', '20/2377/2457']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip4vxlan-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD forwarding config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.              | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/158/276', '20/252/419']  |br| LAT_50%NDR: ['20/17/117', '20/18/119']  |br| LAT_10%NDR: ['20/28/83', '20/29/60']       |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip4vxlan-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD forwarding config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.     | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/287/380', '20/110/292']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip4vxlan-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD forwarding config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.               | FINAL_RATE: 275632.0 pps (2x 137816.0 pps)  |br| FINAL_BANDWIDTH: 19.88960512 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/242/406', '60/202/369']  |br| LAT_50%NDR: ['50/68/225', '50/67/188']  |br| LAT_10%NDR: ['50/62/115', '50/58/99']        |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip4vxlan-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD forwarding config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.      | FINAL_RATE: 275632.0 pps (2x 137816.0 pps)  |br| FINAL_BANDWIDTH: 19.88960512 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/279/315', '50/114/417']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4vxlan-l2bdbasemaclrn-ndrdisc   |  |br| [Cfg] DUT runs L2BD forwarding config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.             | FINAL_RATE: 11158675.125 pps (2x 5579337.5625 pps)  |br| FINAL_BANDWIDTH: 7.498629684 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/64/168', '40/790/836']  |br| LAT_50%NDR: ['10/34/76', '10/33/69']  |br| LAT_10%NDR: ['10/23/68', '10/21/55']    |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4vxlan-l2bdbasemaclrn-pdrdisc   |  |br| [Cfg] DUT runs L2BD forwarding config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.    | FINAL_RATE: 11447061.3125 pps (2x 5723530.65625 pps)  |br| FINAL_BANDWIDTH: 7.692425202 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/68/175', '20/110/274']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                  |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip4vxlan-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD forwarding config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.            | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/182/308', '20/177/250']  |br| LAT_50%NDR: ['20/30/214', '20/31/81']  |br| LAT_10%NDR: ['20/27/201', '20/28/70']       |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip4vxlan-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD forwarding config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.   | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/100/144', '20/44/280']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip4vxlan-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD forwarding config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.             | FINAL_RATE: 275632.0 pps (2x 137816.0 pps)  |br| FINAL_BANDWIDTH: 19.88960512 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/110/164', '60/190/271']  |br| LAT_50%NDR: ['50/66/91', '50/66/146']  |br| LAT_10%NDR: ['50/60/190', '50/62/114']        |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip4vxlan-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD forwarding config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.    | FINAL_RATE: 275632.0 pps (2x 137816.0 pps)  |br| FINAL_BANDWIDTH: 19.88960512 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/104/205', '50/81/269']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4vxlan-l2bdbasemaclrn-ndrdisc   |  |br| [Cfg] DUT runs L2BD forwarding config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 18656716.0 pps (2x 9328358.0 pps)  |br| FINAL_BANDWIDTH: 12.537313152 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/168/376', '10/97/160']  |br| LAT_50%NDR: ['10/24/117', '10/23/185']  |br| LAT_10%NDR: ['10/21/131', '10/20/75']     |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4vxlan-l2bdbasemaclrn-pdrdisc   |  |br| [Cfg] DUT runs L2BD forwarding config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 18656716.0 pps (2x 9328358.0 pps)  |br| FINAL_BANDWIDTH: 12.537313152 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/92/268', '20/58/227']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip4vxlan-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD forwarding config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/90/130', '20/105/217']  |br| LAT_50%NDR: ['20/28/64', '20/30/144']  |br| LAT_10%NDR: ['20/27/78', '20/28/80']         |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip4vxlan-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD forwarding config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/104/186', '20/46/176']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip4vxlan-l2bdbasemaclrn-ndrdisc |  |br| [Cfg] DUT runs L2BD forwarding config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 275632.0 pps (2x 137816.0 pps)  |br| FINAL_BANDWIDTH: 19.88960512 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/93/309', '50/78/175']  |br| LAT_50%NDR: ['50/65/145', '50/67/106']  |br| LAT_10%NDR: ['50/62/117', '50/59/97']          |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip4vxlan-l2bdbasemaclrn-pdrdisc |  |br| [Cfg] DUT runs L2BD forwarding config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 275632.0 pps (2x 137816.0 pps)  |br| FINAL_BANDWIDTH: 19.88960512 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/129/171', '60/116/191']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+----------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip4vxlan-l2xcbase-ndrpdrdisc
```````````````````````````````````````````

**RFC2544: Pkt throughput L2XC with VXLANoIPv4 test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 cross-connect on TG-DUTn. Eth-IPv4-VXLAN-Eth-IPv4 is applied on link between DUT1 and DUT2.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 cross- connect. VXLAN tunnels are configured between L2XCs on DUT1 and DUT2. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and generated payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544, RFC7348.

+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                         | Documentation                                                                                                                                                                                                        | Message                                                                                                                                                                                                                                                                           |
+==============================================+======================================================================================================================================================================================================================+===================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4vxlan-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC forwarding config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 6544496.125 pps (2x 3272248.0625 pps)  |br| FINAL_BANDWIDTH: 4.397901396 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/1441/1658', '30/2127/2268']  |br| LAT_50%NDR: ['10/34/136', '10/31/143']  |br| LAT_10%NDR: ['10/21/43', '10/25/82'] |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4vxlan-l2xcbase-pdrdisc   |  |br| [Cfg] DUT runs L2XC forwarding config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 6544496.125 pps (2x 3272248.0625 pps)  |br| FINAL_BANDWIDTH: 4.397901396 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/3225/3379', '20/2123/2275']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                   |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip4vxlan-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/135/473', '20/104/291']  |br| LAT_50%NDR: ['20/31/119', '20/33/121']  |br| LAT_10%NDR: ['20/28/47', '20/29/51']          |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip4vxlan-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/301/498', '20/225/558']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip4vxlan-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 275632.0 pps (2x 137816.0 pps)  |br| FINAL_BANDWIDTH: 19.88960512 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/121/587', '60/99/545']  |br| LAT_50%NDR: ['50/66/103', '50/69/116']  |br| LAT_10%NDR: ['50/62/99', '50/63/88']             |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip4vxlan-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 275632.0 pps (2x 137816.0 pps)  |br| FINAL_BANDWIDTH: 19.88960512 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/126/274', '60/189/254']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4vxlan-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC forwarding config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 12312219.875 pps (2x 6156109.9375 pps)  |br| FINAL_BANDWIDTH: 8.273811756 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/57/171', '10/721/900']  |br| LAT_50%NDR: ['10/24/100', '10/28/215']  |br| LAT_10%NDR: ['10/21/44', '10/21/104']    |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4vxlan-l2xcbase-pdrdisc   |  |br| [Cfg] DUT runs L2XC forwarding config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 12600606.0625 pps (2x 6300303.03125 pps)  |br| FINAL_BANDWIDTH: 8.467607274 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/52/160', '20/93/267']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip4vxlan-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/264/328', '20/101/189']  |br| LAT_50%NDR: ['20/27/199', '20/30/208']  |br| LAT_10%NDR: ['20/27/68', '20/28/62']          |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip4vxlan-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/136/157', '20/87/323']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip4vxlan-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 275632.0 pps (2x 137816.0 pps)  |br| FINAL_BANDWIDTH: 19.88960512 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['2/217/289', '50/165/223']  |br| LAT_50%NDR: ['50/65/171', '50/64/116']  |br| LAT_10%NDR: ['50/62/122', '50/55/82']            |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip4vxlan-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 275632.0 pps (2x 137816.0 pps)  |br| FINAL_BANDWIDTH: 19.88960512 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/227/288', '60/85/201']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                               |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4vxlan-l2xcbase-ndrdisc   |  |br| [Cfg] DUT runs L2XC forwarding config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 18656716.0 pps (2x 9328358.0 pps)  |br| FINAL_BANDWIDTH: 12.537313152 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/110/226', '10/139/229']  |br| LAT_50%NDR: ['10/24/206', '10/22/89']  |br| LAT_10%NDR: ['10/21/36', '10/19/30']         |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4vxlan-l2xcbase-pdrdisc   |  |br| [Cfg] DUT runs L2XC forwarding config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 18656716.0 pps (2x 9328358.0 pps)  |br| FINAL_BANDWIDTH: 12.537313152 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/105/220', '20/73/179']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip4vxlan-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/63/104', '20/93/230']  |br| LAT_50%NDR: ['20/28/54', '20/29/161']  |br| LAT_10%NDR: ['20/27/86', '20/28/136']            |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip4vxlan-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/89/163', '20/65/164']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip4vxlan-l2xcbase-ndrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 275632.0 pps (2x 137816.0 pps)  |br| FINAL_BANDWIDTH: 19.88960512 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/174/228', '60/88/275']  |br| LAT_50%NDR: ['50/65/131', '50/66/303']  |br| LAT_10%NDR: ['50/60/101', '50/62/260']           |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip4vxlan-l2xcbase-pdrdisc |  |br| [Cfg] DUT runs L2XC forwarding config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 275632.0 pps (2x 137816.0 pps)  |br| FINAL_BANDWIDTH: 19.88960512 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/94/138', '50/119/229']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                               |
+----------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

IPv6 Overlay Tunnels
====================

.. note::

    Data sources for reported test results: i) FD.io test executor jobs
    `csit-vpp-perf-1701-all/4
    <https://jenkins.fd.io/view/csit/job/csit-vpp-perf-1701-all/4>`_
    , ii) archived FD.io jobs test result `output files
    <../../_static/archive/>`_.

10ge2p1x520-ethip6lispip4-ip6base-ndrpdrdisc
````````````````````````````````````````````

**RFC6830: Pkt throughput Lisp test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv6-LISP-IPv4 on DUT1-DUT2, Eth-IPv6 on TG-DUTn for IPv6 routing over LISPoIPv4 tunnel.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv6 routing and static routes. LISPoIPv4 tunnel is configured between DUT1 and DUT2. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search  

 - **[Ref] Applicable standard specifications:** RFC6830.

+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                          | Documentation                                                                                                                                                                                                                                              | Message                                                                                                                                                                                                                                                                             |
+===============================================+============================================================================================================================================================================================================================================================+=====================================================================================================================================================================================================================================================================================+
| tc01-78B-1t1c-ethip6lispip4-ip6base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 4166395.15624 pps (2x 2083197.57812 pps)  |br| FINAL_BANDWIDTH: 3.26645380249 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/219/456', '20/231/428']  |br| LAT_50%NDR: ['10/31/113', '10/47/115']  |br| LAT_10%NDR: ['10/21/40', '10/27/110'] |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-78B-1t1c-ethip6lispip4-ip6base-pdrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 4166395.15624 pps (2x 2083197.57812 pps)  |br| FINAL_BANDWIDTH: 3.26645380249 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/209/396', '20/222/429']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                    |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1460B-1t1c-ethip6lispip4-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1636124.0 pps (2x 818062.0 pps)  |br| FINAL_BANDWIDTH: 19.37170816 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/46/335', '20/45/329']  |br| LAT_50%NDR: ['20/34/210', '20/34/181']  |br| LAT_10%NDR: ['20/28/69', '20/29/84']               |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1460B-1t1c-ethip6lispip4-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1636124.0 pps (2x 818062.0 pps)  |br| FINAL_BANDWIDTH: 19.37170816 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/44/376', '20/46/388']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                 |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip6lispip4-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 275694.0 pps (2x 137847.0 pps)  |br| FINAL_BANDWIDTH: 19.89407904 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/79/223', '50/82/219']  |br| LAT_50%NDR: ['50/68/219', '50/69/200']  |br| LAT_10%NDR: ['50/63/189', '50/63/184']              |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip6lispip4-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 275694.0 pps (2x 137847.0 pps)  |br| FINAL_BANDWIDTH: 19.89407904 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/82/334', '60/80/347']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                  |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-78B-2t2c-ethip6lispip4-ip6base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 8661643.0 pps (2x 4330821.5 pps)  |br| FINAL_BANDWIDTH: 6.790728112 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/132/669', '10/1070/1121']  |br| LAT_50%NDR: ['10/49/123', '10/43/240']  |br| LAT_10%NDR: ['10/25/100', '10/26/76']         |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-78B-2t2c-ethip6lispip4-ip6base-pdrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 8661643.0 pps (2x 4330821.5 pps)  |br| FINAL_BANDWIDTH: 6.790728112 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/512/1113', '20/530/1110']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1460B-2t2c-ethip6lispip4-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps.           | Search FAILED                                                                                                                                                                                                                                                                       |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1460B-2t2c-ethip6lispip4-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1636124.0 pps (2x 818062.0 pps)  |br| FINAL_BANDWIDTH: 19.37170816 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/37/220', '20/37/202']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                 |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip6lispip4-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 275694.0 pps (2x 137847.0 pps)  |br| FINAL_BANDWIDTH: 19.89407904 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['60/39/251', '50/41/243']  |br| LAT_50%NDR: ['50/65/96', '50/68/222']  |br| LAT_10%NDR: ['50/62/146', '50/62/151']               |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip6lispip4-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.   | FINAL_RATE: 275694.0 pps (2x 137847.0 pps)  |br| FINAL_BANDWIDTH: 19.89407904 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/76/138', '60/77/211']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                  |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-78B-4t4c-ethip6lispip4-ip6base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 8661643.0 pps (2x 4330821.5 pps)  |br| FINAL_BANDWIDTH: 6.790728112 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/1021/1063', '20/1026/1075']  |br| LAT_50%NDR: ['10/32/61', '10/27/62']  |br| LAT_10%NDR: ['10/23/66', '10/23/58']          |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-78B-4t4c-ethip6lispip4-ip6base-pdrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 8661643.0 pps (2x 4330821.5 pps)  |br| FINAL_BANDWIDTH: 6.790728112 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1020/1060', '20/1026/1133']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1460B-4t4c-ethip6lispip4-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps.          | FINAL_RATE: 1636124.0 pps (2x 818062.0 pps)  |br| FINAL_BANDWIDTH: 19.37170816 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/33/238', '20/36/135']  |br| LAT_50%NDR: ['20/29/70', '20/30/272']  |br| LAT_10%NDR: ['20/28/81', '20/28/65']                |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1460B-4t4c-ethip6lispip4-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1636124.0 pps (2x 818062.0 pps)  |br| FINAL_BANDWIDTH: 19.37170816 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/36/219', '20/36/270']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                 |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip6lispip4-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 275694.0 pps (2x 137847.0 pps)  |br| FINAL_BANDWIDTH: 19.89407904 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/75/127', '60/77/206']  |br| LAT_50%NDR: ['50/66/125', '50/67/280']  |br| LAT_10%NDR: ['50/63/126', '50/63/86']               |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip6lispip4-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 275694.0 pps (2x 137847.0 pps)  |br| FINAL_BANDWIDTH: 19.89407904 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/78/205', '50/78/284']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                  |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip6lispip6-ip6base-ndrpdrdisc
````````````````````````````````````````````

**RFC6830: Pkt throughput Lisp test cases**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv6-LISP-IPv6 on DUT1-DUT2, Eth-IPv6 on TG-DUTn for IPv6 routing over LISPoIPv6 tunnel.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv6 routing and static routes. LISPoIPv6 tunnel is configured between DUT1 and DUT2. DUT1 and DUT2 tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search  

 - **[Ref] Applicable standard specifications:** RFC6830.

+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                          | Documentation                                                                                                                                                                                                                                              | Message                                                                                                                                                                                                                                                                         |
+===============================================+============================================================================================================================================================================================================================================================+=================================================================================================================================================================================================================================================================================+
| tc01-78B-1t1c-ethip6lispip6-ip6base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.              | FINAL_RATE: 3488502.125 pps (2x 1744251.0625 pps)  |br| FINAL_BANDWIDTH: 2.734985666 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/46/388', '10/48/393']  |br| LAT_50%NDR: ['10/49/226', '10/49/200']  |br| LAT_10%NDR: ['10/23/85', '10/26/87']     |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-78B-1t1c-ethip6lispip6-ip6base-pdrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.     | FINAL_RATE: 3488502.125 pps (2x 1744251.0625 pps)  |br| FINAL_BANDWIDTH: 2.734985666 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/108/334', '20/111/310']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1460B-1t1c-ethip6lispip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps.             | FINAL_RATE: 1602288.53125 pps (2x 801144.265625 pps)  |br| FINAL_BANDWIDTH: 18.97109621 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/57/309', '20/57/304']  |br| LAT_50%NDR: ['20/40/83', '20/42/124']  |br| LAT_10%NDR: ['20/30/269', '20/30/277'] |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1460B-1t1c-ethip6lispip6-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.    | FINAL_RATE: 1628227.6875 pps (2x 814113.84375 pps)  |br| FINAL_BANDWIDTH: 19.27821582 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1385/1538', '20/1387/1538']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-9000B-1t1c-ethip6lispip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.              | FINAL_RATE: 244801.5 pps (2x 122400.75 pps)  |br| FINAL_BANDWIDTH: 17.66487624 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/77/260', '50/77/265']  |br| LAT_50%NDR: ['50/67/116', '50/67/104']  |br| LAT_10%NDR: ['50/58/103', '50/65/101']         |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-9000B-1t1c-ethip6lispip6-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.     | FINAL_RATE: 244801.5 pps (2x 122400.75 pps)  |br| FINAL_BANDWIDTH: 17.66487624 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/77/157', '50/77/146']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-78B-2t2c-ethip6lispip6-ip6base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.            | FINAL_RATE: 7142393.375 pps (2x 3571196.6875 pps)  |br| FINAL_BANDWIDTH: 5.599636406 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/72/225', '20/120/313']  |br| LAT_50%NDR: ['10/42/101', '10/45/145']  |br| LAT_10%NDR: ['10/13/102', '10/13/73']   |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-78B-2t2c-ethip6lispip6-ip6base-pdrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.   | FINAL_RATE: 7142393.375 pps (2x 3571196.6875 pps)  |br| FINAL_BANDWIDTH: 5.599636406 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['10/55/91', '20/71/110']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1460B-2t2c-ethip6lispip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps.           | FINAL_RATE: 1602288.53125 pps (2x 801144.265625 pps)  |br| FINAL_BANDWIDTH: 18.97109621 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/47/264', '20/47/89']  |br| LAT_50%NDR: ['20/29/45', '20/30/120']  |br| LAT_10%NDR: ['20/27/75', '20/28/132']   |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1460B-2t2c-ethip6lispip6-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.  | FINAL_RATE: 1628227.6875 pps (2x 814113.84375 pps)  |br| FINAL_BANDWIDTH: 19.27821582 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1369/1440', '20/1370/1562']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-9000B-2t2c-ethip6lispip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 244801.5 pps (2x 122400.75 pps)  |br| FINAL_BANDWIDTH: 17.66487624 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/73/149', '50/75/89']  |br| LAT_50%NDR: ['50/68/235', '50/69/126']  |br| LAT_10%NDR: ['50/63/209', '50/65/106']          |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-9000B-2t2c-ethip6lispip6-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.            | FINAL_RATE: 244801.5 pps (2x 122400.75 pps)  |br| FINAL_BANDWIDTH: 17.66487624 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/73/89', '50/75/94']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                               |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-78B-4t4c-ethip6lispip6-ip6base-ndrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps.           | FINAL_RATE: 7873171.625 pps (2x 3936585.8125 pps)  |br| FINAL_BANDWIDTH: 6.172566554 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/35/237', '10/35/191']  |br| LAT_50%NDR: ['10/21/122', '10/45/84']  |br| LAT_10%NDR: ['10/20/50', '10/23/66']      |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-78B-4t4c-ethip6lispip6-ip6base-pdrdisc   |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 78 Byte frames using binary search start at 10GE linerate, step 100kpps, LT=0.5%.  | FINAL_RATE: 7873171.625 pps (2x 3936585.8125 pps)  |br| FINAL_BANDWIDTH: 6.172566554 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['30/61/191', '10/59/89']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1460B-4t4c-ethip6lispip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1460 Byte frames using binary search start at 10GE linerate, step 100kpps.         | FINAL_RATE: 1602288.53125 pps (2x 801144.265625 pps)  |br| FINAL_BANDWIDTH: 18.97109621 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/35/157', '20/35/61']  |br| LAT_50%NDR: ['20/29/51', '20/31/48']  |br| LAT_10%NDR: ['20/13/59', '20/14/55']     |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1460B-4t4c-ethip6lispip6-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 1460 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%. | FINAL_RATE: 1628227.6875 pps (2x 814113.84375 pps)  |br| FINAL_BANDWIDTH: 19.27821582 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1293/2614', '20/1292/2646']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-9000B-4t4c-ethip6lispip6-ip6base-ndrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps.           | FINAL_RATE: 244801.5 pps (2x 122400.75 pps)  |br| FINAL_BANDWIDTH: 17.66487624 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['50/74/245', '50/76/113']  |br| LAT_50%NDR: ['50/66/86', '50/67/95']  |br| LAT_10%NDR: ['50/63/77', '50/60/78']             |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-9000B-4t4c-ethip6lispip6-ip6base-pdrdisc |  |br| [Cfg] DUT runs IPv6 LISP remote static mappings and whitelist filters config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 9000 Byte frames using binary search start at 10GE linerate, step 5kpps, LT=0.5%.  | FINAL_RATE: 244801.5 pps (2x 122400.75 pps)  |br| FINAL_BANDWIDTH: 17.66487624 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['60/73/115', '60/75/225']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                             |
+-----------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

VM Vhost Connections
====================

.. note::

    Data sources for reported test results: i) FD.io test executor jobs
    `csit-vpp-perf-1701-all/4
    <https://jenkins.fd.io/view/csit/job/csit-vpp-perf-1701-all/4>`_
    , ii) archived FD.io jobs test result `output files
    <../../_static/archive/>`_.

10ge2p1x520-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-ndrpdrdisc
``````````````````````````````````````````````````````````

**RFC2544: Packet throughput L2BD test cases with vhost**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 switching of IPv4. 802.1q tagging is applied on link between DUT1 and DUT2.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 bridge- domain and MAC learning enabled. Qemu Guest is connected to VPP via vhost-user interfaces. Guest is running DPDK testpmd interconnecting vhost-user interfaces using 5 cores pinned to cpus 5-9 and 2048M memory. Testpmd is using socket-mem=1024M (512x2M hugepages), 5 cores (1 main core and 4 cores dedicated for io), forwarding mode is set to io, rxd/txd=256, burst=64. DUT1, DUT2 are tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                                        | Documentation                                                                                                                                                                                                                                                 | Message                                                                                                                                                                                                                                                                               |
+=============================================================+===============================================================================================================================================================================================================================================================+=======================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                          | FINAL_RATE: 2515134.86328 pps (2x 1257567.43164 pps)  |br| FINAL_BANDWIDTH: 1.69017062812 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/209/467', '20/234/464']  |br| LAT_50%NDR: ['10/61/213', '10/70/211']  |br| LAT_10%NDR: ['10/12/86', '10/16/124']   |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                                 | FINAL_RATE: 2626029.7461 pps (2x 1313014.87305 pps)  |br| FINAL_BANDWIDTH: 1.76469198938 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/379/625', '20/437/711']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                       |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                        | FINAL_RATE: 1195932.65625 pps (2x 597966.328125 pps)  |br| FINAL_BANDWIDTH: 14.7147554025 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/346/579', '20/392/607']  |br| LAT_50%NDR: ['20/97/342', '20/107/489']  |br| LAT_10%NDR: ['20/36/140', '20/38/179'] |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                               | FINAL_RATE: 1245972.34375 pps (2x 622986.171875 pps)  |br| FINAL_BANDWIDTH: 15.3304437175 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/677/1002', '30/815/1096']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                    |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-IMIX-1t1c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 10kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)              | FINAL_RATE: 1952620.50781 pps (2x 976310.253906 pps)  |br| FINAL_BANDWIDTH: 5.83963701329 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']          |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-IMIX-1t1c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 10kpps, LT=0.5%. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)     | FINAL_RATE: 2132998.42188 pps (2x 1066499.21094 pps)  |br| FINAL_BANDWIDTH: 6.37908722349 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                        | FINAL_RATE: 4733032.51954 pps (2x 2366516.25977 pps)  |br| FINAL_BANDWIDTH: 3.18059785313 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/97/251', '20/137/293']  |br| LAT_50%NDR: ['10/33/177', '10/36/180']  |br| LAT_10%NDR: ['10/32/155', '10/33/149']   |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                               | FINAL_RATE: 5342954.375 pps (2x 2671477.1875 pps)  |br| FINAL_BANDWIDTH: 3.59046534 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['30/122/981', '30/230/995']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                      | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['2/241/265', '20/167/284']  |br| LAT_50%NDR: ['20/53/168', '20/58/229']  |br| LAT_10%NDR: ['20/34/214', '20/34/163']              |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                             | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/89/669', '20/82/647']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                   |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-IMIX-2t2c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 10kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)            | FINAL_RATE: 3807936.19532 pps (2x 1903968.09766 pps)  |br| FINAL_BANDWIDTH: 11.3882677466 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']          |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-IMIX-2t2c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 10kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)            | FINAL_RATE: 4245996.84376 pps (2x 2122998.42188 pps)  |br| FINAL_BANDWIDTH: 12.6983611142 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                       | FINAL_RATE: 4649861.35742 pps (2x 2324930.67871 pps)  |br| FINAL_BANDWIDTH: 3.12470683219 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/58/152', '10/86/196']  |br| LAT_50%NDR: ['10/35/114', '10/40/127']  |br| LAT_10%NDR: ['10/27/131', '10/31/128']    |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                              | FINAL_RATE: 6784587.85156 pps (2x 3392293.92578 pps)  |br| FINAL_BANDWIDTH: 4.55924303625 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/127/249', '30/209/323']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                     | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/175/194', '20/156/203']  |br| LAT_50%NDR: ['20/45/159', '20/52/182']  |br| LAT_10%NDR: ['20/31/129', '20/34/201']             |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                            | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/200/217', '20/139/241']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                 |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-IMIX-4t4c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 10kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)           | FINAL_RATE: 4426374.75782 pps (2x 2213187.37891 pps)  |br| FINAL_BANDWIDTH: 13.2378113244 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']          |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-IMIX-4t4c-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 10kpps, LT=0.5%. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)  | FINAL_RATE: 5302496.05468 pps (2x 2651248.02734 pps)  |br| FINAL_BANDWIDTH: 15.8579980595 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+-------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-dot1q-l2xcbase-eth-2vhost-1vm-ndrpdrdisc
````````````````````````````````````````````````````

**RFC2544: Pkt throughput L2XC test cases with vhost**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 cross connect. 802.1q tagging is applied on link between DUT1 and DUT2.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 cross- connect. Qemu Guest is connected to VPP via vhost-user interfaces. Guest is running DPDK testpmd interconnecting vhost-user interfaces using 5 cores pinned to cpus 5-9 and 2048M memory. Testpmd is using socket-mem=1024M (512x2M hugepages), 5 cores (1 main core and 4 cores dedicated for io), forwarding mode is set to io, rxd/txd=256, burst=64. DUT1, DUT2 are tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                                | Documentation                                                                                                                                                                                                                                                 | Message                                                                                                                                                                                                                                                                                |
+=====================================================+===============================================================================================================================================================================================================================================================+========================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                          | FINAL_RATE: 2792372.07032 pps (2x 1396186.03516 pps)  |br| FINAL_BANDWIDTH: 1.87647403126 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/158/435', '30/176/462']  |br| LAT_50%NDR: ['10/67/210', '10/62/190']  |br| LAT_10%NDR: ['10/24/99', '10/29/153']    |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                                 | FINAL_RATE: 2875543.23242 pps (2x 1437771.61621 pps)  |br| FINAL_BANDWIDTH: 1.93236505219 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/227/435', '30/261/434']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                       |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                        | FINAL_RATE: 1245972.34375 pps (2x 622986.171875 pps)  |br| FINAL_BANDWIDTH: 15.3304437175 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/283/557', '30/323/553']  |br| LAT_50%NDR: ['20/120/423', '20/132/430']  |br| LAT_10%NDR: ['20/34/141', '20/38/200'] |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                               | FINAL_RATE: 1321031.875 pps (2x 660515.9375 pps)  |br| FINAL_BANDWIDTH: 16.25397619 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1103/1390', '20/1280/1575']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-IMIX-1t1c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 10kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)              | FINAL_RATE: 2210303.24218 pps (2x 1105151.62109 pps)  |br| FINAL_BANDWIDTH: 6.61028017067 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']           |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-IMIX-1t1c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 10kpps, LT=0.5%. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)     | FINAL_RATE: 2210303.24218 pps (2x 1105151.62109 pps)  |br| FINAL_BANDWIDTH: 6.61028017067 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                        | FINAL_RATE: 4677585.07812 pps (2x 2338792.53906 pps)  |br| FINAL_BANDWIDTH: 3.1433371725 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/85/180', '20/101/201']  |br| LAT_50%NDR: ['10/46/157', '10/51/173']  |br| LAT_10%NDR: ['10/33/162', '10/32/181']     |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                               | FINAL_RATE: 5980599.95118 pps (2x 2990299.97559 pps)  |br| FINAL_BANDWIDTH: 4.01896316719 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['40/99/248', '40/197/322']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                      | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/177/199', '30/156/204']  |br| LAT_50%NDR: ['20/47/174', '20/52/187']  |br| LAT_10%NDR: ['20/33/224', '20/33/168']              |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                             | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['30/193/292', '20/233/262']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                  |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-IMIX-2t2c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 10kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)            | FINAL_RATE: 3911009.28906 pps (2x 1955504.64453 pps)  |br| FINAL_BANDWIDTH: 11.6965250095 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']           |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-IMIX-2t2c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 10kpps, LT=0.5%. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)   | FINAL_RATE: 4658289.21876 pps (2x 2329144.60938 pps)  |br| FINAL_BANDWIDTH: 13.931390166 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                       | FINAL_RATE: 5952876.23046 pps (2x 2976438.11523 pps)  |br| FINAL_BANDWIDTH: 4.00033282687 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/51/133', '20/78/170']  |br| LAT_50%NDR: ['10/36/115', '10/50/145']  |br| LAT_10%NDR: ['10/24/106', '10/30/125']     |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                              | FINAL_RATE: 7477680.86914 pps (2x 3738840.43457 pps)  |br| FINAL_BANDWIDTH: 5.02500154406 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['30/98/194', '20/168/291']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                     | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/183/196', '20/132/284']  |br| LAT_50%NDR: ['20/42/129', '20/49/156']  |br| LAT_10%NDR: ['20/33/151', '20/33/243']              |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                            | FINAL_RATE: 1621270.0 pps (2x 810635.0 pps)  |br| FINAL_BANDWIDTH: 19.94810608 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/155/176', '20/130/200']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                  |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-IMIX-4t4c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 10kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)           | FINAL_RATE: 4529447.85156 pps (2x 2264723.92578 pps)  |br| FINAL_BANDWIDTH: 13.5460685873 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']           |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-IMIX-4t4c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 10kpps, LT=0.5%. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)  | FINAL_RATE: 5689020.15624 pps (2x 2844510.07812 pps)  |br| FINAL_BANDWIDTH: 17.0139627956 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-----------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrpdrdisc
````````````````````````````````````````````````````````

**RFC2544: Pkt throughput L2BD test cases with vhost**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 switching of IPv4.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 bridge- domain and MAC learning enabled. Qemu Guest is connected to VPP via vhost-user interfaces. Guest is running DPDK testpmd interconnecting vhost-user interfaces using 5 cores pinned to cpus 5-9 and 2048M memory. Testpmd is using socket-mem=1024M (512x2M hugepages), 5 cores (1 main core and 4 cores dedicated for io), forwarding mode is set to io, rxd/txd=256, burst=64. DUT1, DUT2 are tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                                      | Documentation                                                                                                                                                                                                                                                | Message                                                                                                                                                                                                                                                                              |
+===========================================================+==============================================================================================================================================================================================================================================================+======================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                       | FINAL_RATE: 2750213.84376 pps (2x 1375106.92188 pps)  |br| FINAL_BANDWIDTH: 1.84814370301 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/161/343', '30/156/329']  |br| LAT_50%NDR: ['10/71/201', '10/69/229']  |br| LAT_10%NDR: ['10/25/75', '10/30/146']  |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                              | FINAL_RATE: 2895437.98438 pps (2x 1447718.99219 pps)  |br| FINAL_BANDWIDTH: 1.9457343255 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/316/495', '20/303/508']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                     | FINAL_RATE: 1299371.65625 pps (2x 649685.828125 pps)  |br| FINAL_BANDWIDTH: 15.9874688585 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/548/802', '40/538/799']  |br| LAT_50%NDR: ['20/83/306', '20/77/295']  |br| LAT_10%NDR: ['20/35/619', '20/37/588'] |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                            | FINAL_RATE: 1324457.375 pps (2x 662228.6875 pps)  |br| FINAL_BANDWIDTH: 16.296123542 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/2805/3013', '30/2806/3096']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-IMIX-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)             | FINAL_RATE: 2285898.6875 pps (2x 1142949.34375 pps)  |br| FINAL_BANDWIDTH: 6.83636094713 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']          |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-IMIX-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B)    | FINAL_RATE: 2259853.875 pps (2x 1129926.9375 pps)  |br| FINAL_BANDWIDTH: 6.75846959524 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                     | FINAL_RATE: 4986665.60938 pps (2x 2493332.80469 pps)  |br| FINAL_BANDWIDTH: 3.3510392895 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/83/153', '20/100/178']  |br| LAT_50%NDR: ['10/45/158', '10/53/181']  |br| LAT_10%NDR: ['10/27/87', '10/25/90']     |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                            | FINAL_RATE: 5887055.28124 pps (2x 2943527.64062 pps)  |br| FINAL_BANDWIDTH: 3.95610114899 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/105/172', '20/197/357']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                   | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/87/187', '20/98/208']  |br| LAT_50%NDR: ['20/47/164', '20/52/262']  |br| LAT_10%NDR: ['20/32/201', '20/32/156']             |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/220/254', '20/243/278']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                               |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-IMIX-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)           | FINAL_RATE: 4082990.75 pps (2x 2041495.375 pps)  |br| FINAL_BANDWIDTH: 12.2108642275 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']              |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-IMIX-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B)  | FINAL_RATE: 4603887.0 pps (2x 2301943.5 pps)  |br| FINAL_BANDWIDTH: 13.7686912652 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                 |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                    | FINAL_RATE: 5654696.65624 pps (2x 2827348.32812 pps)  |br| FINAL_BANDWIDTH: 3.79995615299 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/54/133', '20/74/159']  |br| LAT_50%NDR: ['10/39/137', '10/48/142']  |br| LAT_10%NDR: ['10/23/75', '10/27/148']    |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                           | FINAL_RATE: 7571655.3125 pps (2x 3785827.65625 pps)  |br| FINAL_BANDWIDTH: 5.08815237 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/80/165', '20/184/320']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/152/559', '20/187/647']  |br| LAT_50%NDR: ['20/42/200', '20/49/231']  |br| LAT_10%NDR: ['20/32/130', '20/34/157']           |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                         | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/181/191', '20/210/226']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                               |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-IMIX-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)          | FINAL_RATE: 5228962.5 pps (2x 2614481.25 pps)  |br| FINAL_BANDWIDTH: 15.6380837106 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']                |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-IMIX-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B) | FINAL_RATE: 5801948.375 pps (2x 2900974.1875 pps)  |br| FINAL_BANDWIDTH: 17.3516934521 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-----------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-eth-l2xcbase-eth-2vhost-1vm-ndrpdrdisc
``````````````````````````````````````````````````

**RFC2544: Pkt throughput L2XC test cases with vhost**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 cross connect.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 cross- connect. Qemu Guest is connected to VPP via vhost-user interfaces. Guest is running DPDK testpmd interconnecting vhost-user interfaces using 5 cores pinned to cpus 5-9 and 2048M memory. Testpmd is using socket-mem=1024M (512x2M hugepages), 5 cores (1 main core and 4 cores dedicated for io), forwarding mode is set to io, rxd/txd=256, burst=64. DUT1, DUT2 are tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                                | Documentation                                                                                                                                                                                                                                                | Message                                                                                                                                                                                                                                                                             |
+=====================================================+==============================================================================================================================================================================================================================================================+=====================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                       | FINAL_RATE: 3185886.26562 pps (2x 1592943.13281 pps)  |br| FINAL_BANDWIDTH: 2.1409155705 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/156/296', '20/146/279']  |br| LAT_50%NDR: ['10/58/214', '10/60/234']  |br| LAT_10%NDR: ['10/26/115', '10/30/129'] |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                              | FINAL_RATE: 3243975.92188 pps (2x 1621987.96094 pps)  |br| FINAL_BANDWIDTH: 2.1799518195 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/231/404', '20/223/437']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                     | FINAL_RATE: 1374628.8125 pps (2x 687314.40625 pps)  |br| FINAL_BANDWIDTH: 16.913432909 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/866/1088', '20/862/1091']  |br| LAT_50%NDR: ['20/81/308', '20/81/316']  |br| LAT_10%NDR: ['20/34/144', '20/35/180'] |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                            | FINAL_RATE: 1399714.53125 pps (2x 699857.265625 pps)  |br| FINAL_BANDWIDTH: 17.2220875925 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['30/921/1232', '30/911/1229']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                  |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-IMIX-1t1c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)             | FINAL_RATE: 2416122.75 pps (2x 1208061.375 pps)  |br| FINAL_BANDWIDTH: 7.22581770657 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']             |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-IMIX-1t1c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B)    | FINAL_RATE: 2546346.8125 pps (2x 1273173.40625 pps)  |br| FINAL_BANDWIDTH: 7.61527446601 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                     | FINAL_RATE: 5073800.09376 pps (2x 2536900.04688 pps)  |br| FINAL_BANDWIDTH: 3.40959366301 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/59/169', '20/72/212']  |br| LAT_50%NDR: ['10/40/121', '10/48/162']  |br| LAT_10%NDR: ['10/24/78', '10/33/183']   |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                            | FINAL_RATE: 6613175.98438 pps (2x 3306587.99219 pps)  |br| FINAL_BANDWIDTH: 4.4440542615 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['30/89/168', '20/155/301']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                   | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/210/230', '20/246/254']  |br| LAT_50%NDR: ['20/43/162', '20/46/161']  |br| LAT_10%NDR: ['20/33/150', '20/33/192']          |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/202/210', '20/220/229']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-IMIX-2t2c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)           | FINAL_RATE: 3952766.6875 pps (2x 1976383.34375 pps)  |br| FINAL_BANDWIDTH: 11.821407468 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']          |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-IMIX-2t2c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B)  | FINAL_RATE: 5072693.625 pps (2x 2536346.8125 pps)  |br| FINAL_BANDWIDTH: 15.1707355992 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                    | FINAL_RATE: 5945144.9375 pps (2x 2972572.46875 pps)  |br| FINAL_BANDWIDTH: 3.995137398 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/42/112', '10/66/158']  |br| LAT_50%NDR: ['10/16/99', '10/18/119']  |br| LAT_10%NDR: ['10/24/87', '10/26/80']        |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                           | FINAL_RATE: 8443000.15624 pps (2x 4221500.07812 pps)  |br| FINAL_BANDWIDTH: 5.67369610499 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/76/145', '30/152/262']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/175/185', '30/204/222']  |br| LAT_50%NDR: ['20/40/124', '20/46/174']  |br| LAT_10%NDR: ['20/32/131', '20/32/175']          |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                         | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['30/235/259', '20/214/231']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-IMIX-4t4c-eth-l2xcbase-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)          | FINAL_RATE: 5463365.8125 pps (2x 2731682.90625 pps)  |br| FINAL_BANDWIDTH: 16.3391058776 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']         |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-IMIX-4t4c-eth-l2xcbase-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2XC switching config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B) | FINAL_RATE: 6218665.375 pps (2x 3109332.6875 pps)  |br| FINAL_BANDWIDTH: 18.5979550823 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-----------------------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip4-ip4base-eth-2vhost-1vm-ndrpdrdisc
````````````````````````````````````````````````````

**RFC2544: Pkt throughput IPv4 test cases with vhost**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for IPv4 routing.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with IPv4 routing and two static IPv4 /24 route entries. Qemu Guest is connected to VPP via vhost-user interfaces. Guest is running DPDK testpmd interconnecting vhost-user interfaces using 5 cores pinned to cpus 5-9 and 2048M memory. Testpmd is using socket-mem=1024M (512x2M hugepages), 5 cores (1 main core and 4 cores dedicated for io), forwarding mode is set to mac, rxd/txd=256, burst=64. DUT1, DUT2 are tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                                  | Documentation                                                                                                                                                                                                                                              | Message                                                                                                                                                                                                                                                                                  |
+=======================================================+============================================================================================================================================================================================================================================================+==========================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4-ip4base-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                       | FINAL_RATE: 2604989.70312 pps (2x 1302494.85156 pps)  |br| FINAL_BANDWIDTH: 1.7505530805 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/188/446', '20/190/473']  |br| LAT_50%NDR: ['10/67/200', '10/73/214']  |br| LAT_10%NDR: ['10/26/125', '10/32/187']      |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4-ip4base-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                              | FINAL_RATE: 2663079.35938 pps (2x 1331539.67969 pps)  |br| FINAL_BANDWIDTH: 1.7895893295 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/362/635', '20/364/666']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip4-ip4base-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                     | FINAL_RATE: 1249200.21875 pps (2x 624600.109375 pps)  |br| FINAL_BANDWIDTH: 15.3701594915 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/615/1112', '30/613/1120']  |br| LAT_50%NDR: ['20/137/429', '20/132/412']  |br| LAT_10%NDR: ['20/36/170', '20/37/178'] |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip4-ip4base-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                            | FINAL_RATE: 1299371.65625 pps (2x 649685.828125 pps)  |br| FINAL_BANDWIDTH: 15.9874688585 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1510/1856', '60/1488/1779']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                     |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-IMIX-1t1c-ethip4-ip4base-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)             | FINAL_RATE: 2103585.0 pps (2x 1051792.5 pps)  |br| FINAL_BANDWIDTH: 6.2911214839 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']                      |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-IMIX-1t1c-ethip4-ip4base-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs IPv4 routing config with 1 thread, 1 phy core,  1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B)    | FINAL_RATE: 2155674.625 pps (2x 1077837.3125 pps)  |br| FINAL_BANDWIDTH: 6.44690418768 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4-ip4base-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                     | FINAL_RATE: 5044755.26562 pps (2x 2522377.63281 pps)  |br| FINAL_BANDWIDTH: 3.3900755385 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['40/100/181', '60/131/221']  |br| LAT_50%NDR: ['10/56/153', '10/69/205']  |br| LAT_10%NDR: ['10/29/112', '10/39/175']      |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4-ip4base-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                            | FINAL_RATE: 5451382.85938 pps (2x 2725691.42969 pps)  |br| FINAL_BANDWIDTH: 3.6633292815 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/115/193', '20/256/410']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip4-ip4base-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                   | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/243/257', '20/310/318']  |br| LAT_50%NDR: ['20/51/184', '20/56/222']  |br| LAT_10%NDR: ['20/35/161', '20/34/173']               |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip4-ip4base-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                          | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/222/250', '20/256/262']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                   |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-IMIX-2t2c-ethip4-ip4base-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)           | FINAL_RATE: 3926721.875 pps (2x 1963360.9375 pps)  |br| FINAL_BANDWIDTH: 11.7435161161 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']                |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-IMIX-2t2c-ethip4-ip4base-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs IPv4 routing config with 2 threads, 2 phy cores,  1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B)  | FINAL_RATE: 4317394.0625 pps (2x 2158697.03125 pps)  |br| FINAL_BANDWIDTH: 12.9118863945 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4-ip4base-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                    | FINAL_RATE: 5567562.17188 pps (2x 2783781.08594 pps)  |br| FINAL_BANDWIDTH: 3.7414017795 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/66/157', '20/92/195']  |br| LAT_50%NDR: ['10/41/157', '10/49/170']  |br| LAT_10%NDR: ['10/25/92', '10/25/135']         |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4-ip4base-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                           | FINAL_RATE: 7019803.57812 pps (2x 3509901.78906 pps)  |br| FINAL_BANDWIDTH: 4.7173080045 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/94/175', '30/226/399']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip4-ip4base-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps.                                                  | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/161/177', '20/184/205']  |br| LAT_50%NDR: ['20/45/142', '20/48/174']  |br| LAT_10%NDR: ['20/33/136', '20/33/142']               |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip4-ip4base-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames  using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                         | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/155/171', '20/169/189']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                   |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-IMIX-4t4c-ethip4-ip4base-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)          | FINAL_RATE: 4786200.6875 pps (2x 2393100.34375 pps)  |br| FINAL_BANDWIDTH: 14.3139307285 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']              |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-IMIX-4t4c-ethip4-ip4base-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs IPv4 routing config with 4 threads, 4 phy cores,  2 receive queues per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame  size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B) | FINAL_RATE: 5489410.625 pps (2x 2744705.3125 pps)  |br| FINAL_BANDWIDTH: 16.4169972294 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                |
+-------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x520-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-ndrpdrdisc
````````````````````````````````````````````````````````````````

**RFC2544: Packet throughput L2BD test cases with VXLANoIPv4 and vhost**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 switching of IPv4. Eth-IPv4-VXLAN-Eth-IPv4 is applied on link between DUT1 and DUT2.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 bridge- domain and MAC learning enabled. Qemu Guest is connected to VPP via vhost-user interfaces. Guest is running DPDK testpmd interconnecting vhost-user interfaces using 5 cores pinned to cpus 5-9 and 2048M memory. Testpmd is using socket-mem=1024M (512x2M hugepages), 5 cores (1 main core and 4 cores dedicated for io), forwarding mode is set to io, rxd/txd=256, burst=64. DUT1, DUT2 are tested with 2p10GE NIC X520 Niantic by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544, RFC7348.

+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                                              | Documentation                                                                                                                                                                                                                                               | Message                                                                                                                                                                                                                                                                               |
+===================================================================+=============================================================================================================================================================================================================================================================+=======================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                        | FINAL_RATE: 2203990.15624 pps (2x 1101995.07812 pps)  |br| FINAL_BANDWIDTH: 1.48108138499 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/256/1220', '20/282/1368']  |br| LAT_50%NDR: ['10/69/258', '10/74/240']  |br| LAT_10%NDR: ['10/26/85', '10/33/160'] |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                               | FINAL_RATE: 2276789.82812 pps (2x 1138394.91406 pps)  |br| FINAL_BANDWIDTH: 1.5300027645 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/447/692', '20/507/708']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                       |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                      | FINAL_RATE: 1088585.375 pps (2x 544292.6875 pps)  |br| FINAL_BANDWIDTH: 13.393954454 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/522/899', '30/612/1014']  |br| LAT_50%NDR: ['20/139/464', '20/160/446']  |br| LAT_10%NDR: ['20/37/203', '20/36/177']    |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE using binary search start at 10GE linerate, step 10kpps, LT=0.5%.           | FINAL_RATE: 1137157.4375 pps (2x 568578.71875 pps)  |br| FINAL_BANDWIDTH: 13.991585111 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/907/1250', '30/1078/1393']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-IMIX-1t1c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 framesize using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)               | FINAL_RATE: 1811120.09375 pps (2x 905560.046875 pps)  |br| FINAL_BANDWIDTH: 5.41645644541 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']          |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-IMIX-1t1c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B)     | FINAL_RATE: 1857046.25 pps (2x 928523.125 pps)  |br| FINAL_BANDWIDTH: 5.55380626881 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                      | FINAL_RATE: 4096781.625 pps (2x 2048390.8125 pps)  |br| FINAL_BANDWIDTH: 2.753037252 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['40/121/245', '20/144/264']  |br| LAT_50%NDR: ['10/43/177', '10/86/217']  |br| LAT_10%NDR: ['10/29/111', '10/41/196']       |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                             | FINAL_RATE: 4533579.65624 pps (2x 2266789.82812 pps)  |br| FINAL_BANDWIDTH: 3.04656552899 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['40/128/236', '40/216/372']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                    | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/249/298', '20/168/400']  |br| LAT_50%NDR: ['20/56/205', '20/61/209']  |br| LAT_10%NDR: ['20/37/202', '20/35/224']            |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                           | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/167/211', '30/171/216']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-IMIX-2t2c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)            | FINAL_RATE: 2936310.92188 pps (2x 1468155.46094 pps)  |br| FINAL_BANDWIDTH: 8.78152711873 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']          |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-IMIX-2t2c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B)   | FINAL_RATE: 3694092.5 pps (2x 1847046.25 pps)  |br| FINAL_BANDWIDTH: 11.0477992048 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                 |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                     | FINAL_RATE: 4642779.16406 pps (2x 2321389.58203 pps)  |br| FINAL_BANDWIDTH: 3.11994759825 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['2/64/148', '30/92/188']  |br| LAT_50%NDR: ['10/22/157', '10/25/139']  |br| LAT_10%NDR: ['10/25/118', '10/34/196']     |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                            | FINAL_RATE: 5734774.24218 pps (2x 2867387.12109 pps)  |br| FINAL_BANDWIDTH: 3.85376829074 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['40/154/240', '30/200/325']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                   | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/146/178', '20/154/217']  |br| LAT_50%NDR: ['20/47/220', '20/58/171']  |br| LAT_10%NDR: ['20/35/152', '20/36/178']            |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                          | FINAL_RATE: 1574306.0 pps (2x 787153.0 pps)  |br| FINAL_BANDWIDTH: 19.370261024 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/148/185', '30/149/208']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-IMIX-4t4c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B;16x570B;4x1518B)           | FINAL_RATE: 4130390.98438 pps (2x 2065195.49219 pps)  |br| FINAL_BANDWIDTH: 12.3526225271 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']          |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-IMIX-4t4c-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B;16x570B;4x1518B)  | FINAL_RATE: 4543726.39062 pps (2x 2271863.19531 pps)  |br| FINAL_BANDWIDTH: 13.5887709377 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                          |
+-------------------------------------------------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

10ge2p1x710-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrpdrdisc
````````````````````````````````````````````````````````

**RFC2544: Pkt throughput L2BD test cases with vhost**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 switching of IPv4.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 bridge- domain and MAC learning enabled. Qemu Guest is connected to VPP via vhost-user interfaces. Guest is running DPDK testpmd interconnecting vhost-user interfaces using 5 cores pinned to cpus on NUMA1 and 2048M memory. Testpmd is using socket-mem=1024M (512x2M hugepages), 5 cores (1 main core and 4 cores dedicated for io), forwarding mode is set to io, rxd/txd=256, burst=64. DUT1, DUT2 are tested with 2p10GE NIC X710 by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                                      | Documentation                                                                                                                                                                                                                                                 | Message                                                                                                                                                                                                                                                                               |
+===========================================================+===============================================================================================================================================================================================================================================================+=======================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                          | FINAL_RATE: 2808303.5 pps (2x 1404151.75 pps)  |br| FINAL_BANDWIDTH: 1.887179952 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/152/333', '20/147/346']  |br| LAT_50%NDR: ['10/76/217', '10/59/203']  |br| LAT_10%NDR: ['10/26/93', '10/32/148']            |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                                 | FINAL_RATE: 2866393.15624 pps (2x 1433196.57812 pps)  |br| FINAL_BANDWIDTH: 1.92621620099 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/940/1103', '30/930/1116']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                    |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                        | FINAL_RATE: 1299371.65625 pps (2x 649685.828125 pps)  |br| FINAL_BANDWIDTH: 15.9874688585 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/652/1001', '30/645/976']  |br| LAT_50%NDR: ['20/93/375', '20/93/333']  |br| LAT_10%NDR: ['20/33/155', '20/35/166'] |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                               | FINAL_RATE: 1324457.375 pps (2x 662228.6875 pps)  |br| FINAL_BANDWIDTH: 16.296123542 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/2325/2528', '20/2337/2643']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                       |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-IMIX-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)              | FINAL_RATE: 2285898.6875 pps (2x 1142949.34375 pps)  |br| FINAL_BANDWIDTH: 6.83636094713 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']           |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-IMIX-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)     | FINAL_RATE: 2233809.0625 pps (2x 1116904.53125 pps)  |br| FINAL_BANDWIDTH: 6.68057824335 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                        | FINAL_RATE: 5073800.09376 pps (2x 2536900.04688 pps)  |br| FINAL_BANDWIDTH: 3.40959366301 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/79/195', '30/89/214']  |br| LAT_50%NDR: ['10/50/169', '10/56/168']  |br| LAT_10%NDR: ['10/29/96', '10/28/95']      |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                               | FINAL_RATE: 6148458.73438 pps (2x 3074229.36719 pps)  |br| FINAL_BANDWIDTH: 4.1317642695 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['40/115/210', '30/170/334']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                       |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                      | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/97/266', '20/116/296']  |br| LAT_50%NDR: ['20/45/178', '20/47/173']  |br| LAT_10%NDR: ['20/30/156', '20/32/169']             |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                             | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/154/595', '30/169/695']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-IMIX-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)            | FINAL_RATE: 4239259.625 pps (2x 2119629.8125 pps)  |br| FINAL_BANDWIDTH: 12.6782123388 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']             |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-IMIX-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)   | FINAL_RATE: 4682021.4375 pps (2x 2341010.71875 pps)  |br| FINAL_BANDWIDTH: 14.0023653209 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                       | FINAL_RATE: 5654696.65624 pps (2x 2827348.32812 pps)  |br| FINAL_BANDWIDTH: 3.79995615299 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/53/125', '20/72/173']  |br| LAT_50%NDR: ['10/38/125', '10/45/139']  |br| LAT_10%NDR: ['10/24/79', '10/23/81']      |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                              | FINAL_RATE: 7658789.79688 pps (2x 3829394.89844 pps)  |br| FINAL_BANDWIDTH: 5.1467067435 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['30/90/180', '40/154/259']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                        |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps.                                                     | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/125/143', '20/150/178']  |br| LAT_50%NDR: ['20/41/135', '20/47/155']  |br| LAT_10%NDR: ['20/31/135', '20/32/124']            |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE linerate, step 10kpps, LT=0.5%.                                            | FINAL_RATE: 1625486.0 pps (2x 812743.0 pps)  |br| FINAL_BANDWIDTH: 19.999979744 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/128/159', '20/162/194']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-IMIX-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 5kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)           | FINAL_RATE: 5281052.125 pps (2x 2640526.0625 pps)  |br| FINAL_BANDWIDTH: 15.7938664143 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']             |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-IMIX-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at 10GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)  | FINAL_RATE: 5827993.1875 pps (2x 2913996.59375 pps)  |br| FINAL_BANDWIDTH: 17.429584804 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                            |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+

40ge2p1xl710-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrpdrdisc
`````````````````````````````````````````````````````````

**RFC2544: Packet throughput L2BD test cases with vhost**   

 - **[Top] Network Topologies:** TG-DUT1-DUT2-TG 3-node circular topology with single links between nodes.  

 - **[Enc] Packet Encapsulations:** Eth-IPv4 for L2 switching of IPv4.  

 - **[Cfg] DUT configuration:** DUT1 and DUT2 are configured with L2 bridge- domain and MAC learning enabled. Qemu Guest is connected to VPP via vhost-user interfaces. Guest is running DPDK testpmd interconnecting vhost-user interfaces using 5 cores pinned to cpus on NUMA1 and 2048M memory. Testpmd is using socket-mem=1024M (512x2M hugepages), 5 cores (1 main core and 4 cores dedicated for io), forwarding mode is set to io, rxd/txd=256, burst=64. DUT1, DUT2 are tested with 2p40GE NIC XL710 by Intel.  

 - **[Ver] TG verification:** TG finds and reports throughput NDR (Non Drop Rate) with zero packet loss tolerance or throughput PDR (Partial Drop Rate) with non-zero packet loss tolerance (LT) expressed in percentage of packets transmitted. NDR and PDR are discovered for different Ethernet L2 frame sizes using either binary search or linear search algorithms with configured starting rate and final step that determines throughput measurement resolution. Test packets are generated by TG on links to DUTs. TG traffic profile contains two L3 flow-groups (flow-group per direction, 253 flows per flow-group) with all packets containing Ethernet header, IPv4 header with IP protocol=61 and static payload. MAC addresses are matching MAC addresses of the TG node interfaces.  

 - **[Ref] Applicable standard specifications:** RFC2544.

+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Name                                                      | Documentation                                                                                                                                                                                                                                                 | Message                                                                                                                                                                                                                                                                                |
+===========================================================+===============================================================================================================================================================================================================================================================+========================================================================================================================================================================================================================================================================================+
| tc01-64B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 40GE linerate, step 10kpps.                                                          | FINAL_RATE: 2765117.1875 pps (2x 1382558.59375 pps)  |br| FINAL_BANDWIDTH: 1.85815875 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/106/231', '30/98/232']  |br| LAT_50%NDR: ['10/61/217', '10/59/188']  |br| LAT_10%NDR: ['10/24/92', '10/31/139']         |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc02-64B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 40GE linerate, step 10kpps, LT=0.5%.                                                 | FINAL_RATE: 2948125.0 pps (2x 1474062.5 pps)  |br| FINAL_BANDWIDTH: 1.98114 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/909/1069', '30/921/1102']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                   |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc03-1518B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 40GE linerate, step 10kpps.                                                        | FINAL_RATE: 1289220.34375 pps (2x 644610.171875 pps)  |br| FINAL_BANDWIDTH: 15.8625671095 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/391/818', '20/394/710']  |br| LAT_50%NDR: ['10/119/525', '10/116/516']  |br| LAT_10%NDR: ['10/29/123', '10/33/174'] |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc04-1518B-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 40GE linerate, step 10kpps, LT=0.5%.                                               | FINAL_RATE: 1320176.9375 pps (2x 660088.46875 pps)  |br| FINAL_BANDWIDTH: 16.243457039 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/1034/1515', '20/1032/1491']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                      |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc05-IMIX-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 40GE linerate, step 5kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)              | FINAL_RATE: 1937692.10938 pps (2x 968846.054688 pps)  |br| FINAL_BANDWIDTH: 5.79499115011 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']           |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc06-IMIX-1t1c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core, 1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at 40GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)     | FINAL_RATE: 2257307.46094 pps (2x 1128653.73047 pps)  |br| FINAL_BANDWIDTH: 6.75085411966 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc07-64B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 40GE linerate, step 10kpps.                                                        | FINAL_RATE: 5876250.0 pps (2x 2938125.0 pps)  |br| FINAL_BANDWIDTH: 3.94884 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['30/98/168', '20/117/276']  |br| LAT_50%NDR: ['10/61/158', '10/63/219']  |br| LAT_10%NDR: ['10/26/160', '10/35/160']                  |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc08-64B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 40GE linerate, step 10kpps, LT=0.5%.                                               | FINAL_RATE: 6095859.375 pps (2x 3047929.6875 pps)  |br| FINAL_BANDWIDTH: 4.0964175 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['50/116/301', '60/193/344']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                              |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc09-1518B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 40GE linerate, step 10kpps.                                                      | FINAL_RATE: 2465570.90624 pps (2x 1232785.45312 pps)  |br| FINAL_BANDWIDTH: 30.3363844304 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/137/307', '20/173/406']  |br| LAT_50%NDR: ['10/62/244', '10/65/286']  |br| LAT_10%NDR: ['10/27/128', '10/29/164']   |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc10-1518B-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 40GE linerate, step 10kpps, LT=0.5%.                                             | FINAL_RATE: 2806093.4375 pps (2x 1403046.71875 pps)  |br| FINAL_BANDWIDTH: 34.526173655 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/233/529', '20/462/705']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc11-IMIX-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 40GE linerate, step 5kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)            | FINAL_RATE: 4079114.96484 pps (2x 2039557.48242 pps)  |br| FINAL_BANDWIDTH: 12.1992730461 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']           |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc12-IMIX-2t2c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores, 1 receive queue per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at 40GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)   | FINAL_RATE: 4654422.59766 pps (2x 2327211.29883 pps)  |br| FINAL_BANDWIDTH: 13.9198263913 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc13-64B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 64 Byte frames using binary search start at 40GE linerate, step 10kpps.                                                       | FINAL_RATE: 5839648.4375 pps (2x 2919824.21875 pps)  |br| FINAL_BANDWIDTH: 3.92424375 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['10/55/138', '20/75/188']  |br| LAT_50%NDR: ['10/39/133', '10/47/150']  |br| LAT_10%NDR: ['10/25/102', '10/28/127']         |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc14-64B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc   |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 64 Byte frames using binary search start at 40GE linerate, step 10kpps, LT=0.5%.                                              | FINAL_RATE: 7706328.125 pps (2x 3853164.0625 pps)  |br| FINAL_BANDWIDTH: 5.1786525 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/48/184', '20/79/278']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                                |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc15-1518B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for 1518 Byte frames using binary search start at 40GE linerate, step 10kpps.                                                     | FINAL_RATE: 3022789.59376 pps (2x 1511394.79688 pps)  |br| FINAL_BANDWIDTH: 37.1924031616 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['20/131/272', '20/183/330']  |br| LAT_50%NDR: ['10/62/238', '10/88/258']  |br| LAT_10%NDR: ['10/30/186', '10/34/182']   |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc16-1518B-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for 1518 Byte frames using binary search start at 40GE linerate, step 10kpps, LT=0.5%.                                            | FINAL_RATE: 3425225.3125 pps (2x 1712612.65625 pps)  |br| FINAL_BANDWIDTH: 42.143972245 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['20/284/427', '30/415/703']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                         |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc17-IMIX-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at 40GE linerate, step 5kpps. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)           | FINAL_RATE: 4430691.85156 pps (2x 2215345.92578 pps)  |br| FINAL_BANDWIDTH: 13.2507223126 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_50%NDR: ['-1/-1/-1', '-1/-1/-1']  |br| LAT_10%NDR: ['-1/-1/-1', '-1/-1/-1']           |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tc18-IMIX-4t4c-eth-l2bdbasemaclrn-eth-2vhost-1vm-pdrdisc  |  |br| [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores, 2 receive queues per NIC port.  |br| [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at 40GE linerate, step 5kpps, LT=0.5%. IMIX_v4_1 = (28x64B; 16x570B; 4x1518B)  | FINAL_RATE: 5836999.39844 pps (2x 2918499.69922 pps)  |br| FINAL_BANDWIDTH: 17.4565193786 Gbps (untagged)  |br| LATENCY usec [min/avg/max]  |br| LAT_100%PDR: ['-1/-1/-1', '-1/-1/-1']  |br| LOSS_ACCEPTANCE: 0.5 percentage                                                           |
+-----------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+