aboutsummaryrefslogtreecommitdiffstats
path: root/samples/vnf_samples/traffic_profiles/vfw/HTTP-vFW_IPv4_4Ports-CC-256K.rxf
blob: 1c27859c7b7cff2d67877b83c2614530c63ae572 (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
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
<?xml version="1.0" ?>
<root ver="[21, [1, [0, [0]]]]" type="ixRepository">
 <_smSessionXml ver="[0, [1, [0, [0]]]]" type="ixSMSessionXML">
  <xml type="str">&lt;rpf&gt;&#13;&#10;  &lt;Ixia.Aptixia.StackManager.SMSession type=&quot;Ixia.Aptixia.StackManager.SMSession&quot; objectid=&quot;04a56313-c07c-4fae-acc5-e29a816e1311&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;    &lt;doWaitLinkUp type=&quot;Bool&quot;&gt;0&lt;/doWaitLinkUp&gt;&#13;&#10;    &lt;doGratArp type=&quot;Bool&quot;&gt;0&lt;/doGratArp&gt;&#13;&#10;    &lt;subscribeToGratArpNotifications type=&quot;Bool&quot;&gt;0&lt;/subscribeToGratArpNotifications&gt;&#13;&#10;    &lt;doInterfaceCheck type=&quot;Bool&quot;&gt;0&lt;/doInterfaceCheck&gt;&#13;&#10;    &lt;rebootPortsBeforeConfigure type=&quot;Bool&quot;&gt;0&lt;/rebootPortsBeforeConfigure&gt;&#13;&#10;    &lt;testDuration type=&quot;Int&quot;&gt;10000&lt;/testDuration&gt;&#13;&#10;    &lt;checkLinkState type=&quot;Bool&quot;&gt;0&lt;/checkLinkState&gt;&#13;&#10;    &lt;portGroupList type=&quot;ListNode&quot;&gt;&#13;&#10;      &lt;Ixia.Aptixia.StackManager.PortGroup type=&quot;Ixia.Aptixia.StackManager.PortGroup&quot; objectid=&quot;865be042-32d5-426a-9e75-0908c943801f&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;        &lt;name type=&quot;String&quot;&gt;client network&lt;/name&gt;&#13;&#10;        &lt;category type=&quot;String&quot; /&gt;&#13;&#10;        &lt;stack type=&quot;Ixia.Aptixia.StackManager.L1EthernetPlugin&quot; objectid=&quot;1dcd6e1b-17cd-45a1-875a-cbea40d3468c&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;autoNegotiate type=&quot;Bool&quot;&gt;1&lt;/autoNegotiate&gt;&#13;&#10;          &lt;speed type=&quot;String&quot;&gt;k100FD&lt;/speed&gt;&#13;&#10;          &lt;advertise10Half type=&quot;Bool&quot;&gt;1&lt;/advertise10Half&gt;&#13;&#10;          &lt;advertise10Full type=&quot;Bool&quot;&gt;1&lt;/advertise10Full&gt;&#13;&#10;          &lt;advertise100Half type=&quot;Bool&quot;&gt;1&lt;/advertise100Half&gt;&#13;&#10;          &lt;advertise100Full type=&quot;Bool&quot;&gt;1&lt;/advertise100Full&gt;&#13;&#10;          &lt;advertise1000Full type=&quot;Bool&quot;&gt;1&lt;/advertise1000Full&gt;&#13;&#10;          &lt;advertise10000Full type=&quot;Bool&quot;&gt;1&lt;/advertise10000Full&gt;&#13;&#10;          &lt;cardDualPhy type=&quot;Ixia.Aptixia.StackManager.DualPhyPlugin&quot; objectid=&quot;b458c333-b4d4-48ef-bd38-3b456f72f8c8&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;medium type=&quot;String&quot;&gt;auto&lt;/medium&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/cardDualPhy&gt;&#13;&#10;          &lt;cardElm type=&quot;Ixia.Aptixia.StackManager.EthernetELMPlugin&quot; objectid=&quot;28c0383a-76a7-4750-8162-2ad946ddac97&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;negotiateMasterSlave type=&quot;Bool&quot;&gt;1&lt;/negotiateMasterSlave&gt;&#13;&#10;            &lt;negotiationType type=&quot;String&quot;&gt;master&lt;/negotiationType&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/cardElm&gt;&#13;&#10;          &lt;enableFlowControl type=&quot;Bool&quot;&gt;0&lt;/enableFlowControl&gt;&#13;&#10;          &lt;directedAddress type=&quot;String&quot;&gt;01:80:C2:00:00:01&lt;/directedAddress&gt;&#13;&#10;          &lt;dataCenter type=&quot;Ixia.Aptixia.StackManager.DataCenterSettings&quot; objectid=&quot;b9a0be2e-3880-4100-9e29-9b474f9301f4&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;dcSupported type=&quot;Bool&quot;&gt;1&lt;/dcSupported&gt;&#13;&#10;            &lt;dcEnabled type=&quot;Bool&quot;&gt;0&lt;/dcEnabled&gt;&#13;&#10;            &lt;dcFlowControl type=&quot;Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType&quot;&gt;0&lt;/dcFlowControl&gt;&#13;&#10;            &lt;dcMode type=&quot;Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode&quot;&gt;2&lt;/dcMode&gt;&#13;&#10;            &lt;dcPfcMapping type=&quot;IntList&quot; /&gt;&#13;&#10;            &lt;dcPfcPauseEnable type=&quot;Bool&quot;&gt;0&lt;/dcPfcPauseEnable&gt;&#13;&#10;            &lt;dcPfcPauseDelay type=&quot;Int&quot;&gt;1&lt;/dcPfcPauseDelay&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/dataCenter&gt;&#13;&#10;          &lt;childrenList type=&quot;ListNode&quot;&gt;&#13;&#10;            &lt;Ixia.Aptixia.StackManager.L2EthernetPlugin type=&quot;Ixia.Aptixia.StackManager.L2EthernetPlugin&quot; objectid=&quot;e0232591-010e-492c-8a28-75e436f4adb2&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;              &lt;macRangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                &lt;Ixia.Aptixia.StackManager.MacRange type=&quot;Ixia.Aptixia.StackManager.MacRange&quot; objectid=&quot;3011c8a8-a9fd-4b76-a27d-91948113ed4f&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                  &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;                  &lt;name type=&quot;String&quot;&gt;MAC-R1&lt;/name&gt;&#13;&#10;                  &lt;mac type=&quot;String&quot;&gt;00:98:10:64:14:00&lt;/mac&gt;&#13;&#10;                  &lt;incrementBy type=&quot;String&quot;&gt;00:00:00:00:00:01&lt;/incrementBy&gt;&#13;&#10;                  &lt;mtu type=&quot;Int&quot;&gt;1500&lt;/mtu&gt;&#13;&#10;                  &lt;count type=&quot;Int&quot;&gt;1&lt;/count&gt;&#13;&#10;                  &lt;vlanRange type=&quot;Ixia.Aptixia.StackManager.VlanIdRange&quot; objectid=&quot;adb27552-7165-46a3-bc9e-04914adf40ac&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                    &lt;name type=&quot;String&quot;&gt;VLAN-R1&lt;/name&gt;&#13;&#10;                    &lt;enabled type=&quot;Bool&quot;&gt;0&lt;/enabled&gt;&#13;&#10;                    &lt;firstId type=&quot;Int&quot;&gt;1&lt;/firstId&gt;&#13;&#10;                    &lt;incrementStep type=&quot;Int&quot;&gt;100&lt;/incrementStep&gt;&#13;&#10;                    &lt;increment type=&quot;Int&quot;&gt;1&lt;/increment&gt;&#13;&#10;                    &lt;uniqueCount type=&quot;Int&quot;&gt;4094&lt;/uniqueCount&gt;&#13;&#10;                    &lt;priority type=&quot;Int&quot;&gt;0&lt;/priority&gt;&#13;&#10;                    &lt;tpid type=&quot;String&quot;&gt;0x8100&lt;/tpid&gt;&#13;&#10;                    &lt;innerEnable type=&quot;Bool&quot;&gt;0&lt;/innerEnable&gt;&#13;&#10;                    &lt;innerFirstId type=&quot;Int&quot;&gt;1&lt;/innerFirstId&gt;&#13;&#10;                    &lt;innerIncrementStep type=&quot;Int&quot;&gt;1&lt;/innerIncrementStep&gt;&#13;&#10;                    &lt;innerIncrement type=&quot;Int&quot;&gt;1&lt;/innerIncrement&gt;&#13;&#10;                    &lt;innerUniqueCount type=&quot;Int&quot;&gt;4094&lt;/innerUniqueCount&gt;&#13;&#10;                    &lt;innerPriority type=&quot;Int&quot;&gt;0&lt;/innerPriority&gt;&#13;&#10;                    &lt;idIncrMode type=&quot;Int&quot;&gt;1&lt;/idIncrMode&gt;&#13;&#10;                    &lt;innerTpid type=&quot;String&quot;&gt;0x8100&lt;/innerTpid&gt;&#13;&#10;                    &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;                  &lt;/vlanRange&gt;&#13;&#10;                  &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;                &lt;/Ixia.Aptixia.StackManager.MacRange&gt;&#13;&#10;              &lt;/macRangeList&gt;&#13;&#10;              &lt;vlanRangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                &lt;Ixia.Aptixia.StackManager.VlanIdRange type=&quot;Ixia.Aptixia.StackManager.VlanIdRange&quot; objectid=&quot;adb27552-7165-46a3-bc9e-04914adf40ac&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;              &lt;/vlanRangeList&gt;&#13;&#10;              &lt;childrenList type=&quot;ListNode&quot;&gt;&#13;&#10;                &lt;Ixia.Aptixia.StackManager.IpV4V6Plugin type=&quot;Ixia.Aptixia.StackManager.IpV4V6Plugin&quot; objectid=&quot;a916ae0f-0731-405d-ad19-eaade6c515f1&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                  &lt;rangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                    &lt;Ixia.Aptixia.StackManager.IpV4V6Range type=&quot;Ixia.Aptixia.StackManager.IpV4V6Range&quot; objectid=&quot;a3559674-8d95-4020-90b3-b42eacaef105&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                      &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;                      &lt;name type=&quot;String&quot;&gt;IP-R1&lt;/name&gt;&#13;&#10;                      &lt;ipType type=&quot;String&quot;&gt;IPv4&lt;/ipType&gt;&#13;&#10;                      &lt;ipAddress type=&quot;String&quot;&gt;152.16.100.20&lt;/ipAddress&gt;&#13;&#10;                      &lt;prefix type=&quot;Int&quot;&gt;24&lt;/prefix&gt;&#13;&#10;                      &lt;incrementBy type=&quot;String&quot;&gt;0.0.0.1&lt;/incrementBy&gt;&#13;&#10;                      &lt;count type=&quot;Int&quot;&gt;1&lt;/count&gt;&#13;&#10;                      &lt;autoCountEnabled type=&quot;Bool&quot;&gt;0&lt;/autoCountEnabled&gt;&#13;&#10;                      &lt;gatewayAddress type=&quot;String&quot;&gt;152.16.100.10&lt;/gatewayAddress&gt;&#13;&#10;                      &lt;gatewayIncrement type=&quot;String&quot;&gt;0.0.0.0&lt;/gatewayIncrement&gt;&#13;&#10;                      &lt;gatewayIncrementMode type=&quot;String&quot;&gt;perSubnet&lt;/gatewayIncrementMode&gt;&#13;&#10;                      &lt;enableGatewayArp type=&quot;Bool&quot;&gt;0&lt;/enableGatewayArp&gt;&#13;&#10;                      &lt;generateStatistics type=&quot;Bool&quot;&gt;0&lt;/generateStatistics&gt;&#13;&#10;                      &lt;mss type=&quot;Int&quot;&gt;1460&lt;/mss&gt;&#13;&#10;                      &lt;randomizeAddress type=&quot;Bool&quot;&gt;0&lt;/randomizeAddress&gt;&#13;&#10;                      &lt;randomizeSeed type=&quot;Int&quot;&gt;2596329041&lt;/randomizeSeed&gt;&#13;&#10;                      &lt;autoMacGeneration type=&quot;Bool&quot;&gt;1&lt;/autoMacGeneration&gt;&#13;&#10;                      &lt;macRange type=&quot;Ixia.Aptixia.StackManager.MacRange&quot; objectid=&quot;3011c8a8-a9fd-4b76-a27d-91948113ed4f&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;                      &lt;vlanRange type=&quot;Ixia.Aptixia.StackManager.VlanIdRange&quot; objectid=&quot;adb27552-7165-46a3-bc9e-04914adf40ac&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;                      &lt;atmRange type=&quot;Ixia.Aptixia.StackManager.AtmRange&quot; objectid=&quot;00000000-0000-0000-0000-000000000000&quot; /&gt;&#13;&#10;                      &lt;pvcRange type=&quot;Ixia.Aptixia.StackManager.PvcRange&quot; objectid=&quot;00000000-0000-0000-0000-000000000000&quot; /&gt;&#13;&#10;                      &lt;autoIpTypeEnabled type=&quot;Bool&quot;&gt;0&lt;/autoIpTypeEnabled&gt;&#13;&#10;                      &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;                    &lt;/Ixia.Aptixia.StackManager.IpV4V6Range&gt;&#13;&#10;                  &lt;/rangeList&gt;&#13;&#10;                  &lt;rangeGroups type=&quot;ListNode&quot;&gt;&#13;&#10;                    &lt;Ixia.Aptixia.StackManager.RangeGroup type=&quot;Ixia.Aptixia.StackManager.RangeGroup&quot; objectid=&quot;aa33a76b-9c7f-48d9-a537-8d6eeec03662&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                      &lt;name type=&quot;String&quot;&gt;DistGroup1&lt;/name&gt;&#13;&#10;                      &lt;distribType type=&quot;Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType&quot;&gt;0&lt;/distribType&gt;&#13;&#10;                      &lt;rangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                        &lt;Ixia.Aptixia.StackManager.IpV4V6Range type=&quot;Ixia.Aptixia.StackManager.IpV4V6Range&quot; objectid=&quot;a3559674-8d95-4020-90b3-b42eacaef105&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;                      &lt;/rangeList&gt;&#13;&#10;                      &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;                    &lt;/Ixia.Aptixia.StackManager.RangeGroup&gt;&#13;&#10;                  &lt;/rangeGroups&gt;&#13;&#10;                  &lt;childrenList type=&quot;ListNode&quot; /&gt;&#13;&#10;                  &lt;extensionList type=&quot;ListNode&quot; /&gt;&#13;&#10;                  &lt;dscMode type=&quot;Bool&quot;&gt;0&lt;/dscMode&gt;&#13;&#10;                  &lt;name type=&quot;String&quot;&gt;IP-1&lt;/name&gt;&#13;&#10;                  &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;3&lt;/ixLoadRestObjectId&gt;&#13;&#10;                &lt;/Ixia.Aptixia.StackManager.IpV4V6Plugin&gt;&#13;&#10;              &lt;/childrenList&gt;&#13;&#10;              &lt;extensionList type=&quot;ListNode&quot; /&gt;&#13;&#10;              &lt;dscMode type=&quot;Bool&quot;&gt;0&lt;/dscMode&gt;&#13;&#10;              &lt;name type=&quot;String&quot;&gt;MAC/VLAN-1&lt;/name&gt;&#13;&#10;              &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;            &lt;/Ixia.Aptixia.StackManager.L2EthernetPlugin&gt;&#13;&#10;          &lt;/childrenList&gt;&#13;&#10;          &lt;extensionList type=&quot;ListNode&quot; /&gt;&#13;&#10;          &lt;dscMode type=&quot;Bool&quot;&gt;0&lt;/dscMode&gt;&#13;&#10;          &lt;name type=&quot;String&quot;&gt;Ethernet-1&lt;/name&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/stack&gt;&#13;&#10;        &lt;globalPluginList type=&quot;ListNode&quot;&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type=&quot;Ixia.Aptixia.StackManager.IxLoadSettingsPlugin&quot; objectid=&quot;9c6c8594-548e-4ea5-a478-0bfb6252c1ce&quot; version=&quot;1.0.0&quot;&gt;&#13;&#10;            &lt;teardownInterfaceWithUser type=&quot;Bool&quot;&gt;0&lt;/teardownInterfaceWithUser&gt;&#13;&#10;            &lt;interfaceBehavior type=&quot;Int&quot;&gt;0&lt;/interfaceBehavior&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;Settings-2&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.IxLoadSettingsPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.DnsPlugin type=&quot;Ixia.Aptixia.StackManager.DnsPlugin&quot; objectid=&quot;693c7b7b-327b-4d59-b187-57d7600308e3&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;domain type=&quot;String&quot; /&gt;&#13;&#10;            &lt;timeout type=&quot;Int&quot;&gt;30000&lt;/timeout&gt;&#13;&#10;            &lt;nameServerList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;searchList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;hostList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;DNS-2&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.DnsPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.FilterPlugin type=&quot;Ixia.Aptixia.StackManager.FilterPlugin&quot; objectid=&quot;0f6ebdb4-7909-447a-b80a-e132dae33a9b&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;auto type=&quot;Bool&quot;&gt;1&lt;/auto&gt;&#13;&#10;            &lt;all type=&quot;Bool&quot;&gt;0&lt;/all&gt;&#13;&#10;            &lt;pppoecontrol type=&quot;Bool&quot;&gt;0&lt;/pppoecontrol&gt;&#13;&#10;            &lt;pppoenetwork type=&quot;Bool&quot;&gt;0&lt;/pppoenetwork&gt;&#13;&#10;            &lt;isis type=&quot;Bool&quot;&gt;0&lt;/isis&gt;&#13;&#10;            &lt;ip type=&quot;String&quot; /&gt;&#13;&#10;            &lt;tcp type=&quot;String&quot; /&gt;&#13;&#10;            &lt;udp type=&quot;String&quot; /&gt;&#13;&#10;            &lt;mac type=&quot;String&quot; /&gt;&#13;&#10;            &lt;icmp type=&quot;String&quot; /&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;Filter-1&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;3&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.FilterPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.TCPPlugin type=&quot;Ixia.Aptixia.StackManager.TCPPlugin&quot; objectid=&quot;7a893f25-0ac6-41c7-ab5a-511c2068582a&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;bestPerfSettings type=&quot;Bool&quot;&gt;0&lt;/bestPerfSettings&gt;&#13;&#10;            &lt;accept_ra_all type=&quot;Bool&quot;&gt;0&lt;/accept_ra_all&gt;&#13;&#10;            &lt;tcp_abort_on_overflow type=&quot;Bool&quot;&gt;0&lt;/tcp_abort_on_overflow&gt;&#13;&#10;            &lt;tcp_adv_win_scale type=&quot;Int&quot;&gt;2&lt;/tcp_adv_win_scale&gt;&#13;&#10;            &lt;tcp_app_win type=&quot;Int&quot;&gt;31&lt;/tcp_app_win&gt;&#13;&#10;            &lt;tcp_bic type=&quot;Int&quot;&gt;0&lt;/tcp_bic&gt;&#13;&#10;            &lt;tcp_bic_fast_convergence type=&quot;Int&quot;&gt;1&lt;/tcp_bic_fast_convergence&gt;&#13;&#10;            &lt;tcp_bic_low_window type=&quot;Int&quot;&gt;14&lt;/tcp_bic_low_window&gt;&#13;&#10;            &lt;tcp_dsack type=&quot;Bool&quot;&gt;1&lt;/tcp_dsack&gt;&#13;&#10;            &lt;tcp_ecn type=&quot;Bool&quot;&gt;0&lt;/tcp_ecn&gt;&#13;&#10;            &lt;tcp_fack type=&quot;Bool&quot;&gt;1&lt;/tcp_fack&gt;&#13;&#10;            &lt;tcp_fin_timeout type=&quot;Int&quot;&gt;60&lt;/tcp_fin_timeout&gt;&#13;&#10;            &lt;tcp_frto type=&quot;Int&quot;&gt;0&lt;/tcp_frto&gt;&#13;&#10;            &lt;tcp_keepalive_intvl type=&quot;Int&quot;&gt;7200&lt;/tcp_keepalive_intvl&gt;&#13;&#10;            &lt;tcp_keepalive_probes type=&quot;Int&quot;&gt;75&lt;/tcp_keepalive_probes&gt;&#13;&#10;            &lt;tcp_keepalive_time type=&quot;Int&quot;&gt;9&lt;/tcp_keepalive_time&gt;&#13;&#10;            &lt;tcp_low_latency type=&quot;Int&quot;&gt;0&lt;/tcp_low_latency&gt;&#13;&#10;            &lt;tcp_max_orphans type=&quot;Int&quot;&gt;8192&lt;/tcp_max_orphans&gt;&#13;&#10;            &lt;tcp_max_syn_backlog type=&quot;Int&quot;&gt;1024&lt;/tcp_max_syn_backlog&gt;&#13;&#10;            &lt;tcp_max_tw_buckets type=&quot;Int&quot;&gt;180000&lt;/tcp_max_tw_buckets&gt;&#13;&#10;            &lt;tcp_mem_low type=&quot;Int&quot;&gt;24576&lt;/tcp_mem_low&gt;&#13;&#10;            &lt;tcp_mem_pressure type=&quot;Int&quot;&gt;32768&lt;/tcp_mem_pressure&gt;&#13;&#10;            &lt;tcp_mem_high type=&quot;Int&quot;&gt;49152&lt;/tcp_mem_high&gt;&#13;&#10;            &lt;tcp_moderate_rcvbuf type=&quot;Int&quot;&gt;0&lt;/tcp_moderate_rcvbuf&gt;&#13;&#10;            &lt;tcp_no_metrics_save type=&quot;Bool&quot;&gt;0&lt;/tcp_no_metrics_save&gt;&#13;&#10;            &lt;tcp_orphan_retries type=&quot;Int&quot;&gt;0&lt;/tcp_orphan_retries&gt;&#13;&#10;            &lt;tcp_reordering type=&quot;Int&quot;&gt;3&lt;/tcp_reordering&gt;&#13;&#10;            &lt;tcp_retrans_collapse type=&quot;Bool&quot;&gt;1&lt;/tcp_retrans_collapse&gt;&#13;&#10;            &lt;tcp_retries1 type=&quot;Int&quot;&gt;3&lt;/tcp_retries1&gt;&#13;&#10;            &lt;tcp_retries2 type=&quot;Int&quot;&gt;15&lt;/tcp_retries2&gt;&#13;&#10;            &lt;tcp_rfc1337 type=&quot;Bool&quot;&gt;0&lt;/tcp_rfc1337&gt;&#13;&#10;            &lt;tcp_rmem_min type=&quot;Int&quot;&gt;4096&lt;/tcp_rmem_min&gt;&#13;&#10;            &lt;tcp_rmem_default type=&quot;Int&quot;&gt;1024&lt;/tcp_rmem_default&gt;&#13;&#10;            &lt;tcp_rmem_max type=&quot;Int&quot;&gt;262144&lt;/tcp_rmem_max&gt;&#13;&#10;            &lt;tcp_sack type=&quot;Bool&quot;&gt;1&lt;/tcp_sack&gt;&#13;&#10;            &lt;tcp_stdurg type=&quot;Bool&quot;&gt;0&lt;/tcp_stdurg&gt;&#13;&#10;            &lt;tcp_synack_retries type=&quot;Int&quot;&gt;5&lt;/tcp_synack_retries&gt;&#13;&#10;            &lt;tcp_syn_retries type=&quot;Int&quot;&gt;5&lt;/tcp_syn_retries&gt;&#13;&#10;            &lt;tcp_timestamps type=&quot;Bool&quot;&gt;1&lt;/tcp_timestamps&gt;&#13;&#10;            &lt;tcp_tw_recycle type=&quot;Bool&quot;&gt;1&lt;/tcp_tw_recycle&gt;&#13;&#10;            &lt;tcp_tw_reuse type=&quot;Bool&quot;&gt;0&lt;/tcp_tw_reuse&gt;&#13;&#10;            &lt;tcp_vegas_alpha type=&quot;Int&quot;&gt;2&lt;/tcp_vegas_alpha&gt;&#13;&#10;            &lt;tcp_vegas_beta type=&quot;Int&quot;&gt;6&lt;/tcp_vegas_beta&gt;&#13;&#10;            &lt;tcp_vegas_cong_avoid type=&quot;Int&quot;&gt;0&lt;/tcp_vegas_cong_avoid&gt;&#13;&#10;            &lt;tcp_vegas_gamma type=&quot;Int&quot;&gt;2&lt;/tcp_vegas_gamma&gt;&#13;&#10;            &lt;tcp_westwood type=&quot;Int&quot;&gt;0&lt;/tcp_westwood&gt;&#13;&#10;            &lt;tcp_window_scaling type=&quot;Bool&quot;&gt;0&lt;/tcp_window_scaling&gt;&#13;&#10;            &lt;ip_no_pmtu_disc type=&quot;Bool&quot;&gt;1&lt;/ip_no_pmtu_disc&gt;&#13;&#10;            &lt;tcp_wmem_min type=&quot;Int&quot;&gt;4096&lt;/tcp_wmem_min&gt;&#13;&#10;            &lt;tcp_wmem_default type=&quot;Int&quot;&gt;1024&lt;/tcp_wmem_default&gt;&#13;&#10;            &lt;tcp_wmem_max type=&quot;Int&quot;&gt;262144&lt;/tcp_wmem_max&gt;&#13;&#10;            &lt;tcp_ipfrag_time type=&quot;Int&quot;&gt;30&lt;/tcp_ipfrag_time&gt;&#13;&#10;            &lt;tcp_port_min type=&quot;Int&quot;&gt;1024&lt;/tcp_port_min&gt;&#13;&#10;            &lt;tcp_port_max type=&quot;Int&quot;&gt;65535&lt;/tcp_port_max&gt;&#13;&#10;            &lt;tcp_rto_min type=&quot;Int&quot;&gt;1000&lt;/tcp_rto_min&gt;&#13;&#10;            &lt;tcp_rto_max type=&quot;Int&quot;&gt;120000&lt;/tcp_rto_max&gt;&#13;&#10;            &lt;tcp_tw_rfc1323_strict type=&quot;Bool&quot;&gt;0&lt;/tcp_tw_rfc1323_strict&gt;&#13;&#10;            &lt;udp_port_randomization type=&quot;Bool&quot;&gt;0&lt;/udp_port_randomization&gt;&#13;&#10;            &lt;disable_min_max_buffer_size type=&quot;Bool&quot;&gt;1&lt;/disable_min_max_buffer_size&gt;&#13;&#10;            &lt;llm_hdr_gap type=&quot;Int&quot;&gt;8&lt;/llm_hdr_gap&gt;&#13;&#10;            &lt;llm_hdr_gap_ns type=&quot;Int&quot;&gt;10&lt;/llm_hdr_gap_ns&gt;&#13;&#10;            &lt;inter_packet_granular_delay type=&quot;Double&quot;&gt;0&lt;/inter_packet_granular_delay&gt;&#13;&#10;            &lt;delayed_acks type=&quot;Bool&quot;&gt;1&lt;/delayed_acks&gt;&#13;&#10;            &lt;accept_ra_default type=&quot;Bool&quot;&gt;0&lt;/accept_ra_default&gt;&#13;&#10;            &lt;rps_needed type=&quot;Bool&quot;&gt;0&lt;/rps_needed&gt;&#13;&#10;            &lt;delayed_acks_segments type=&quot;Int&quot;&gt;0&lt;/delayed_acks_segments&gt;&#13;&#10;            &lt;delayed_acks_timeout type=&quot;Int&quot;&gt;0&lt;/delayed_acks_timeout&gt;&#13;&#10;            &lt;tcp_large_icwnd type=&quot;Int&quot;&gt;0&lt;/tcp_large_icwnd&gt;&#13;&#10;            &lt;tcp_mgmt_rmem type=&quot;Int&quot;&gt;87380&lt;/tcp_mgmt_rmem&gt;&#13;&#10;            &lt;tcp_mgmt_wmem type=&quot;Int&quot;&gt;32768&lt;/tcp_mgmt_wmem&gt;&#13;&#10;            &lt;adjust_tcp_buffers type=&quot;Bool&quot;&gt;1&lt;/adjust_tcp_buffers&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;TCP-2&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;4&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.TCPPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.GratArpPlugin type=&quot;Ixia.Aptixia.StackManager.GratArpPlugin&quot; objectid=&quot;fc54eec4-41ef-4b6c-9415-bf639013b52d&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;            &lt;forwardGratArp type=&quot;Bool&quot;&gt;0&lt;/forwardGratArp&gt;&#13;&#10;            &lt;rateControlEnabled type=&quot;Bool&quot;&gt;0&lt;/rateControlEnabled&gt;&#13;&#10;            &lt;maxFramesPerSecond type=&quot;Int&quot;&gt;0&lt;/maxFramesPerSecond&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;GratARP-1&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;5&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.GratArpPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.MeshingPlugin type=&quot;Ixia.Aptixia.StackManager.MeshingPlugin&quot; objectid=&quot;b0ccbeae-9db2-4416-bbed-80dcb2a7a9ed&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;trafficMaps type=&quot;ListNode&quot;&gt;&#13;&#10;              &lt;Ixia.Aptixia.StackManager.MeshingTrafficMap type=&quot;Ixia.Aptixia.StackManager.MeshingTrafficMap&quot; objectid=&quot;cac5e27f-ec70-45e3-bc6c-7b0ac9e43449&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                &lt;name type=&quot;String&quot;&gt;newClientActivity1!HTTP server_newServerActivity1&lt;/name&gt;&#13;&#10;                &lt;configMapFilename type=&quot;String&quot;&gt;newClientActivity1Script.configmap&lt;/configMapFilename&gt;&#13;&#10;                &lt;sourceActivityId type=&quot;Int&quot;&gt;0&lt;/sourceActivityId&gt;&#13;&#10;                &lt;ipPreference type=&quot;Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference&quot;&gt;2&lt;/ipPreference&gt;&#13;&#10;                &lt;portRangesString type=&quot;String&quot; /&gt;&#13;&#10;                &lt;meshingType type=&quot;Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType&quot;&gt;3&lt;/meshingType&gt;&#13;&#10;                &lt;destinationActivityId type=&quot;Int&quot;&gt;0&lt;/destinationActivityId&gt;&#13;&#10;              &lt;/Ixia.Aptixia.StackManager.MeshingTrafficMap&gt;&#13;&#10;            &lt;/trafficMaps&gt;&#13;&#10;            &lt;activityRangeMapInfoList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;Meshing-2&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;6&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.MeshingPlugin&gt;&#13;&#10;        &lt;/globalPluginList&gt;&#13;&#10;        &lt;portList type=&quot;Ixia.RpFramework.Server.Core.ShadowedPropertyStringList&quot; /&gt;&#13;&#10;        &lt;typeSpecificData type=&quot;ListNode&quot;&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.IPSecPortGroupData type=&quot;Ixia.Aptixia.StackManager.IPSecPortGroupData&quot; objectid=&quot;df783f7c-615e-47c1-b7f0-1174985ea22e&quot; version=&quot;6.70.0&quot;&gt;&#13;&#10;            &lt;role type=&quot;String&quot;&gt;Initiator&lt;/role&gt;&#13;&#10;            &lt;associates type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;overrideGlobalOptions type=&quot;Bool&quot;&gt;0&lt;/overrideGlobalOptions&gt;&#13;&#10;            &lt;useMaxInitiationRate type=&quot;Bool&quot;&gt;0&lt;/useMaxInitiationRate&gt;&#13;&#10;            &lt;maxInitiationRate type=&quot;Int&quot;&gt;50&lt;/maxInitiationRate&gt;&#13;&#10;            &lt;useMaxPendingTunnels type=&quot;Bool&quot;&gt;0&lt;/useMaxPendingTunnels&gt;&#13;&#10;            &lt;maxPendingTunnels type=&quot;Int&quot;&gt;50&lt;/maxPendingTunnels&gt;&#13;&#10;            &lt;teardownRate type=&quot;Int&quot;&gt;10&lt;/teardownRate&gt;&#13;&#10;            &lt;enableESPPerStreamStats type=&quot;Bool&quot;&gt;0&lt;/enableESPPerStreamStats&gt;&#13;&#10;            &lt;enableESPReplayStats type=&quot;Bool&quot;&gt;0&lt;/enableESPReplayStats&gt;&#13;&#10;            &lt;activities type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;pcpuLogLevel type=&quot;String&quot;&gt;0&lt;/pcpuLogLevel&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.IPSecPortGroupData&gt;&#13;&#10;        &lt;/typeSpecificData&gt;&#13;&#10;        &lt;virtualMode type=&quot;Bool&quot;&gt;0&lt;/virtualMode&gt;&#13;&#10;        &lt;allowedVirtualModeTypes type=&quot;Ixia.RpFramework.Server.Core.ShadowedPropertyStringList&quot; /&gt;&#13;&#10;        &lt;doOwnership type=&quot;Bool&quot;&gt;0&lt;/doOwnership&gt;&#13;&#10;        &lt;branchToNicMap type=&quot;ListNode&quot; /&gt;&#13;&#10;        &lt;cpuAggregation type=&quot;Bool&quot;&gt;0&lt;/cpuAggregation&gt;&#13;&#10;        &lt;activePort type=&quot;String&quot; /&gt;&#13;&#10;        &lt;networkLayersManager type=&quot;Ixia.Aptixia.StackManager.NetworkLayersManager&quot; objectid=&quot;3d3cf9ef-8aab-4388-9252-4baea80122d3&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;5&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/networkLayersManager&gt;&#13;&#10;        &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;      &lt;/Ixia.Aptixia.StackManager.PortGroup&gt;&#13;&#10;      &lt;Ixia.Aptixia.StackManager.PortGroup type=&quot;Ixia.Aptixia.StackManager.PortGroup&quot; objectid=&quot;6c1a9dc4-bc8e-48ad-982f-956b0561e947&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;        &lt;name type=&quot;String&quot;&gt;client network_1&lt;/name&gt;&#13;&#10;        &lt;category type=&quot;String&quot; /&gt;&#13;&#10;        &lt;stack type=&quot;Ixia.Aptixia.StackManager.L1EthernetPlugin&quot; objectid=&quot;af65320b-b937-4835-b8c1-510cc79660ac&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;autoNegotiate type=&quot;Bool&quot;&gt;1&lt;/autoNegotiate&gt;&#13;&#10;          &lt;speed type=&quot;String&quot;&gt;k100FD&lt;/speed&gt;&#13;&#10;          &lt;advertise10Half type=&quot;Bool&quot;&gt;1&lt;/advertise10Half&gt;&#13;&#10;          &lt;advertise10Full type=&quot;Bool&quot;&gt;1&lt;/advertise10Full&gt;&#13;&#10;          &lt;advertise100Half type=&quot;Bool&quot;&gt;1&lt;/advertise100Half&gt;&#13;&#10;          &lt;advertise100Full type=&quot;Bool&quot;&gt;1&lt;/advertise100Full&gt;&#13;&#10;          &lt;advertise1000Full type=&quot;Bool&quot;&gt;1&lt;/advertise1000Full&gt;&#13;&#10;          &lt;advertise10000Full type=&quot;Bool&quot;&gt;1&lt;/advertise10000Full&gt;&#13;&#10;          &lt;cardDualPhy type=&quot;Ixia.Aptixia.StackManager.DualPhyPlugin&quot; objectid=&quot;0216d80d-55b8-4b3e-a187-6e8536fa5902&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;medium type=&quot;String&quot;&gt;auto&lt;/medium&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;11&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/cardDualPhy&gt;&#13;&#10;          &lt;cardElm type=&quot;Ixia.Aptixia.StackManager.EthernetELMPlugin&quot; objectid=&quot;a645bdf1-8071-4555-b862-9f30729946e7&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;negotiateMasterSlave type=&quot;Bool&quot;&gt;1&lt;/negotiateMasterSlave&gt;&#13;&#10;            &lt;negotiationType type=&quot;String&quot;&gt;master&lt;/negotiationType&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;11&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/cardElm&gt;&#13;&#10;          &lt;enableFlowControl type=&quot;Bool&quot;&gt;0&lt;/enableFlowControl&gt;&#13;&#10;          &lt;directedAddress type=&quot;String&quot;&gt;01:80:C2:00:00:01&lt;/directedAddress&gt;&#13;&#10;          &lt;dataCenter type=&quot;Ixia.Aptixia.StackManager.DataCenterSettings&quot; objectid=&quot;6b363dca-4b7b-45f3-a094-50df1f3b6fb7&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;dcSupported type=&quot;Bool&quot;&gt;1&lt;/dcSupported&gt;&#13;&#10;            &lt;dcEnabled type=&quot;Bool&quot;&gt;0&lt;/dcEnabled&gt;&#13;&#10;            &lt;dcFlowControl type=&quot;Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType&quot;&gt;0&lt;/dcFlowControl&gt;&#13;&#10;            &lt;dcMode type=&quot;Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode&quot;&gt;2&lt;/dcMode&gt;&#13;&#10;            &lt;dcPfcMapping type=&quot;IntList&quot; /&gt;&#13;&#10;            &lt;dcPfcPauseEnable type=&quot;Bool&quot;&gt;0&lt;/dcPfcPauseEnable&gt;&#13;&#10;            &lt;dcPfcPauseDelay type=&quot;Int&quot;&gt;1&lt;/dcPfcPauseDelay&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;11&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/dataCenter&gt;&#13;&#10;          &lt;childrenList type=&quot;ListNode&quot;&gt;&#13;&#10;            &lt;Ixia.Aptixia.StackManager.L2EthernetPlugin type=&quot;Ixia.Aptixia.StackManager.L2EthernetPlugin&quot; objectid=&quot;0ee36d95-6f82-49e3-aaed-52fada95c460&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;              &lt;macRangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                &lt;Ixia.Aptixia.StackManager.MacRange type=&quot;Ixia.Aptixia.StackManager.MacRange&quot; objectid=&quot;c74e6630-4c22-46a1-bd5a-9a18c361199f&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                  &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;                  &lt;name type=&quot;String&quot;&gt;MAC-R6&lt;/name&gt;&#13;&#10;                  &lt;mac type=&quot;String&quot;&gt;00:C0:10:64:14:00&lt;/mac&gt;&#13;&#10;                  &lt;incrementBy type=&quot;String&quot;&gt;00:00:00:00:00:01&lt;/incrementBy&gt;&#13;&#10;                  &lt;mtu type=&quot;Int&quot;&gt;1500&lt;/mtu&gt;&#13;&#10;                  &lt;count type=&quot;Int&quot;&gt;1&lt;/count&gt;&#13;&#10;                  &lt;vlanRange type=&quot;Ixia.Aptixia.StackManager.VlanIdRange&quot; objectid=&quot;32278720-9728-4c1e-98a1-c7a41ccf1f83&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                    &lt;name type=&quot;String&quot;&gt;VLAN-R6&lt;/name&gt;&#13;&#10;                    &lt;enabled type=&quot;Bool&quot;&gt;0&lt;/enabled&gt;&#13;&#10;                    &lt;firstId type=&quot;Int&quot;&gt;1&lt;/firstId&gt;&#13;&#10;                    &lt;incrementStep type=&quot;Int&quot;&gt;100&lt;/incrementStep&gt;&#13;&#10;                    &lt;increment type=&quot;Int&quot;&gt;1&lt;/increment&gt;&#13;&#10;                    &lt;uniqueCount type=&quot;Int&quot;&gt;4094&lt;/uniqueCount&gt;&#13;&#10;                    &lt;priority type=&quot;Int&quot;&gt;0&lt;/priority&gt;&#13;&#10;                    &lt;tpid type=&quot;String&quot;&gt;0x8100&lt;/tpid&gt;&#13;&#10;                    &lt;innerEnable type=&quot;Bool&quot;&gt;0&lt;/innerEnable&gt;&#13;&#10;                    &lt;innerFirstId type=&quot;Int&quot;&gt;1&lt;/innerFirstId&gt;&#13;&#10;                    &lt;innerIncrementStep type=&quot;Int&quot;&gt;1&lt;/innerIncrementStep&gt;&#13;&#10;                    &lt;innerIncrement type=&quot;Int&quot;&gt;1&lt;/innerIncrement&gt;&#13;&#10;                    &lt;innerUniqueCount type=&quot;Int&quot;&gt;4094&lt;/innerUniqueCount&gt;&#13;&#10;                    &lt;innerPriority type=&quot;Int&quot;&gt;0&lt;/innerPriority&gt;&#13;&#10;                    &lt;idIncrMode type=&quot;Int&quot;&gt;1&lt;/idIncrMode&gt;&#13;&#10;                    &lt;innerTpid type=&quot;String&quot;&gt;0x8100&lt;/innerTpid&gt;&#13;&#10;                    &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;6&lt;/ixLoadRestObjectId&gt;&#13;&#10;                  &lt;/vlanRange&gt;&#13;&#10;                  &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;6&lt;/ixLoadRestObjectId&gt;&#13;&#10;                &lt;/Ixia.Aptixia.StackManager.MacRange&gt;&#13;&#10;              &lt;/macRangeList&gt;&#13;&#10;              &lt;vlanRangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                &lt;Ixia.Aptixia.StackManager.VlanIdRange type=&quot;Ixia.Aptixia.StackManager.VlanIdRange&quot; objectid=&quot;32278720-9728-4c1e-98a1-c7a41ccf1f83&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;              &lt;/vlanRangeList&gt;&#13;&#10;              &lt;childrenList type=&quot;ListNode&quot;&gt;&#13;&#10;                &lt;Ixia.Aptixia.StackManager.IpV4V6Plugin type=&quot;Ixia.Aptixia.StackManager.IpV4V6Plugin&quot; objectid=&quot;410b3e8d-36a6-41b5-821e-9ee93496ea7a&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                  &lt;rangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                    &lt;Ixia.Aptixia.StackManager.IpV4V6Range type=&quot;Ixia.Aptixia.StackManager.IpV4V6Range&quot; objectid=&quot;0304987f-176a-4aea-a3cb-c117279fe0ea&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                      &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;                      &lt;name type=&quot;String&quot;&gt;IP-R6&lt;/name&gt;&#13;&#10;                      &lt;ipType type=&quot;String&quot;&gt;IPv4&lt;/ipType&gt;&#13;&#10;                      &lt;ipAddress type=&quot;String&quot;&gt;192.16.100.20&lt;/ipAddress&gt;&#13;&#10;                      &lt;prefix type=&quot;Int&quot;&gt;24&lt;/prefix&gt;&#13;&#10;                      &lt;incrementBy type=&quot;String&quot;&gt;0.0.0.1&lt;/incrementBy&gt;&#13;&#10;                      &lt;count type=&quot;Int&quot;&gt;1&lt;/count&gt;&#13;&#10;                      &lt;autoCountEnabled type=&quot;Bool&quot;&gt;0&lt;/autoCountEnabled&gt;&#13;&#10;                      &lt;gatewayAddress type=&quot;String&quot;&gt;192.16.100.10&lt;/gatewayAddress&gt;&#13;&#10;                      &lt;gatewayIncrement type=&quot;String&quot;&gt;0.0.0.0&lt;/gatewayIncrement&gt;&#13;&#10;                      &lt;gatewayIncrementMode type=&quot;String&quot;&gt;perSubnet&lt;/gatewayIncrementMode&gt;&#13;&#10;                      &lt;enableGatewayArp type=&quot;Bool&quot;&gt;0&lt;/enableGatewayArp&gt;&#13;&#10;                      &lt;generateStatistics type=&quot;Bool&quot;&gt;0&lt;/generateStatistics&gt;&#13;&#10;                      &lt;mss type=&quot;Int&quot;&gt;1460&lt;/mss&gt;&#13;&#10;                      &lt;randomizeAddress type=&quot;Bool&quot;&gt;0&lt;/randomizeAddress&gt;&#13;&#10;                      &lt;randomizeSeed type=&quot;Int&quot;&gt;2596329041&lt;/randomizeSeed&gt;&#13;&#10;                      &lt;autoMacGeneration type=&quot;Bool&quot;&gt;1&lt;/autoMacGeneration&gt;&#13;&#10;                      &lt;macRange type=&quot;Ixia.Aptixia.StackManager.MacRange&quot; objectid=&quot;c74e6630-4c22-46a1-bd5a-9a18c361199f&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;                      &lt;vlanRange type=&quot;Ixia.Aptixia.StackManager.VlanIdRange&quot; objectid=&quot;32278720-9728-4c1e-98a1-c7a41ccf1f83&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;                      &lt;atmRange type=&quot;Ixia.Aptixia.StackManager.AtmRange&quot; objectid=&quot;00000000-0000-0000-0000-000000000000&quot; /&gt;&#13;&#10;                      &lt;pvcRange type=&quot;Ixia.Aptixia.StackManager.PvcRange&quot; objectid=&quot;00000000-0000-0000-0000-000000000000&quot; /&gt;&#13;&#10;                      &lt;autoIpTypeEnabled type=&quot;Bool&quot;&gt;0&lt;/autoIpTypeEnabled&gt;&#13;&#10;                      &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;6&lt;/ixLoadRestObjectId&gt;&#13;&#10;                    &lt;/Ixia.Aptixia.StackManager.IpV4V6Range&gt;&#13;&#10;                  &lt;/rangeList&gt;&#13;&#10;                  &lt;rangeGroups type=&quot;ListNode&quot;&gt;&#13;&#10;                    &lt;Ixia.Aptixia.StackManager.RangeGroup type=&quot;Ixia.Aptixia.StackManager.RangeGroup&quot; objectid=&quot;f020117b-0c7f-4da8-a1ae-0fca36b0caad&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                      &lt;name type=&quot;String&quot;&gt;DistGroup1&lt;/name&gt;&#13;&#10;                      &lt;distribType type=&quot;Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType&quot;&gt;0&lt;/distribType&gt;&#13;&#10;                      &lt;rangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                        &lt;Ixia.Aptixia.StackManager.IpV4V6Range type=&quot;Ixia.Aptixia.StackManager.IpV4V6Range&quot; objectid=&quot;0304987f-176a-4aea-a3cb-c117279fe0ea&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;                      &lt;/rangeList&gt;&#13;&#10;                      &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;                    &lt;/Ixia.Aptixia.StackManager.RangeGroup&gt;&#13;&#10;                  &lt;/rangeGroups&gt;&#13;&#10;                  &lt;childrenList type=&quot;ListNode&quot; /&gt;&#13;&#10;                  &lt;extensionList type=&quot;ListNode&quot; /&gt;&#13;&#10;                  &lt;dscMode type=&quot;Bool&quot;&gt;0&lt;/dscMode&gt;&#13;&#10;                  &lt;name type=&quot;String&quot;&gt;IP-8&lt;/name&gt;&#13;&#10;                  &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;8&lt;/ixLoadRestObjectId&gt;&#13;&#10;                &lt;/Ixia.Aptixia.StackManager.IpV4V6Plugin&gt;&#13;&#10;              &lt;/childrenList&gt;&#13;&#10;              &lt;extensionList type=&quot;ListNode&quot; /&gt;&#13;&#10;              &lt;dscMode type=&quot;Bool&quot;&gt;0&lt;/dscMode&gt;&#13;&#10;              &lt;name type=&quot;String&quot;&gt;MAC/VLAN-8&lt;/name&gt;&#13;&#10;              &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;5&lt;/ixLoadRestObjectId&gt;&#13;&#10;            &lt;/Ixia.Aptixia.StackManager.L2EthernetPlugin&gt;&#13;&#10;          &lt;/childrenList&gt;&#13;&#10;          &lt;extensionList type=&quot;ListNode&quot; /&gt;&#13;&#10;          &lt;dscMode type=&quot;Bool&quot;&gt;0&lt;/dscMode&gt;&#13;&#10;          &lt;name type=&quot;String&quot;&gt;Ethernet-8&lt;/name&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;4&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/stack&gt;&#13;&#10;        &lt;globalPluginList type=&quot;ListNode&quot;&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type=&quot;Ixia.Aptixia.StackManager.IxLoadSettingsPlugin&quot; objectid=&quot;a360ad81-4163-41db-b64f-bc1af27777d5&quot; version=&quot;1.0.0&quot;&gt;&#13;&#10;            &lt;teardownInterfaceWithUser type=&quot;Bool&quot;&gt;0&lt;/teardownInterfaceWithUser&gt;&#13;&#10;            &lt;interfaceBehavior type=&quot;Int&quot;&gt;0&lt;/interfaceBehavior&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;Settings-10&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;7&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.IxLoadSettingsPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.DnsPlugin type=&quot;Ixia.Aptixia.StackManager.DnsPlugin&quot; objectid=&quot;5d8e54de-002f-41c6-aac8-aff822bb0f7e&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;domain type=&quot;String&quot; /&gt;&#13;&#10;            &lt;timeout type=&quot;Int&quot;&gt;30000&lt;/timeout&gt;&#13;&#10;            &lt;nameServerList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;searchList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;hostList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;DNS-10&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;8&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.DnsPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.FilterPlugin type=&quot;Ixia.Aptixia.StackManager.FilterPlugin&quot; objectid=&quot;8a334019-95aa-49f2-80dd-08bd013b6f6c&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;auto type=&quot;Bool&quot;&gt;1&lt;/auto&gt;&#13;&#10;            &lt;all type=&quot;Bool&quot;&gt;0&lt;/all&gt;&#13;&#10;            &lt;pppoecontrol type=&quot;Bool&quot;&gt;0&lt;/pppoecontrol&gt;&#13;&#10;            &lt;pppoenetwork type=&quot;Bool&quot;&gt;0&lt;/pppoenetwork&gt;&#13;&#10;            &lt;isis type=&quot;Bool&quot;&gt;0&lt;/isis&gt;&#13;&#10;            &lt;ip type=&quot;String&quot; /&gt;&#13;&#10;            &lt;tcp type=&quot;String&quot; /&gt;&#13;&#10;            &lt;udp type=&quot;String&quot; /&gt;&#13;&#10;            &lt;mac type=&quot;String&quot; /&gt;&#13;&#10;            &lt;icmp type=&quot;String&quot; /&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;Filter-8&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;9&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.FilterPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.TCPPlugin type=&quot;Ixia.Aptixia.StackManager.TCPPlugin&quot; objectid=&quot;45915d75-f382-4032-821f-233d11a38c11&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;bestPerfSettings type=&quot;Bool&quot;&gt;0&lt;/bestPerfSettings&gt;&#13;&#10;            &lt;accept_ra_all type=&quot;Bool&quot;&gt;0&lt;/accept_ra_all&gt;&#13;&#10;            &lt;tcp_abort_on_overflow type=&quot;Bool&quot;&gt;0&lt;/tcp_abort_on_overflow&gt;&#13;&#10;            &lt;tcp_adv_win_scale type=&quot;Int&quot;&gt;2&lt;/tcp_adv_win_scale&gt;&#13;&#10;            &lt;tcp_app_win type=&quot;Int&quot;&gt;31&lt;/tcp_app_win&gt;&#13;&#10;            &lt;tcp_bic type=&quot;Int&quot;&gt;0&lt;/tcp_bic&gt;&#13;&#10;            &lt;tcp_bic_fast_convergence type=&quot;Int&quot;&gt;1&lt;/tcp_bic_fast_convergence&gt;&#13;&#10;            &lt;tcp_bic_low_window type=&quot;Int&quot;&gt;14&lt;/tcp_bic_low_window&gt;&#13;&#10;            &lt;tcp_dsack type=&quot;Bool&quot;&gt;1&lt;/tcp_dsack&gt;&#13;&#10;            &lt;tcp_ecn type=&quot;Bool&quot;&gt;0&lt;/tcp_ecn&gt;&#13;&#10;            &lt;tcp_fack type=&quot;Bool&quot;&gt;1&lt;/tcp_fack&gt;&#13;&#10;            &lt;tcp_fin_timeout type=&quot;Int&quot;&gt;60&lt;/tcp_fin_timeout&gt;&#13;&#10;            &lt;tcp_frto type=&quot;Int&quot;&gt;0&lt;/tcp_frto&gt;&#13;&#10;            &lt;tcp_keepalive_intvl type=&quot;Int&quot;&gt;7200&lt;/tcp_keepalive_intvl&gt;&#13;&#10;            &lt;tcp_keepalive_probes type=&quot;Int&quot;&gt;75&lt;/tcp_keepalive_probes&gt;&#13;&#10;            &lt;tcp_keepalive_time type=&quot;Int&quot;&gt;9&lt;/tcp_keepalive_time&gt;&#13;&#10;            &lt;tcp_low_latency type=&quot;Int&quot;&gt;0&lt;/tcp_low_latency&gt;&#13;&#10;            &lt;tcp_max_orphans type=&quot;Int&quot;&gt;8192&lt;/tcp_max_orphans&gt;&#13;&#10;            &lt;tcp_max_syn_backlog type=&quot;Int&quot;&gt;1024&lt;/tcp_max_syn_backlog&gt;&#13;&#10;            &lt;tcp_max_tw_buckets type=&quot;Int&quot;&gt;180000&lt;/tcp_max_tw_buckets&gt;&#13;&#10;            &lt;tcp_mem_low type=&quot;Int&quot;&gt;24576&lt;/tcp_mem_low&gt;&#13;&#10;            &lt;tcp_mem_pressure type=&quot;Int&quot;&gt;32768&lt;/tcp_mem_pressure&gt;&#13;&#10;            &lt;tcp_mem_high type=&quot;Int&quot;&gt;49152&lt;/tcp_mem_high&gt;&#13;&#10;            &lt;tcp_moderate_rcvbuf type=&quot;Int&quot;&gt;0&lt;/tcp_moderate_rcvbuf&gt;&#13;&#10;            &lt;tcp_no_metrics_save type=&quot;Bool&quot;&gt;0&lt;/tcp_no_metrics_save&gt;&#13;&#10;            &lt;tcp_orphan_retries type=&quot;Int&quot;&gt;0&lt;/tcp_orphan_retries&gt;&#13;&#10;            &lt;tcp_reordering type=&quot;Int&quot;&gt;3&lt;/tcp_reordering&gt;&#13;&#10;            &lt;tcp_retrans_collapse type=&quot;Bool&quot;&gt;1&lt;/tcp_retrans_collapse&gt;&#13;&#10;            &lt;tcp_retries1 type=&quot;Int&quot;&gt;3&lt;/tcp_retries1&gt;&#13;&#10;            &lt;tcp_retries2 type=&quot;Int&quot;&gt;15&lt;/tcp_retries2&gt;&#13;&#10;            &lt;tcp_rfc1337 type=&quot;Bool&quot;&gt;0&lt;/tcp_rfc1337&gt;&#13;&#10;            &lt;tcp_rmem_min type=&quot;Int&quot;&gt;4096&lt;/tcp_rmem_min&gt;&#13;&#10;            &lt;tcp_rmem_default type=&quot;Int&quot;&gt;1024&lt;/tcp_rmem_default&gt;&#13;&#10;            &lt;tcp_rmem_max type=&quot;Int&quot;&gt;262144&lt;/tcp_rmem_max&gt;&#13;&#10;            &lt;tcp_sack type=&quot;Bool&quot;&gt;1&lt;/tcp_sack&gt;&#13;&#10;            &lt;tcp_stdurg type=&quot;Bool&quot;&gt;0&lt;/tcp_stdurg&gt;&#13;&#10;            &lt;tcp_synack_retries type=&quot;Int&quot;&gt;5&lt;/tcp_synack_retries&gt;&#13;&#10;            &lt;tcp_syn_retries type=&quot;Int&quot;&gt;5&lt;/tcp_syn_retries&gt;&#13;&#10;            &lt;tcp_timestamps type=&quot;Bool&quot;&gt;1&lt;/tcp_timestamps&gt;&#13;&#10;            &lt;tcp_tw_recycle type=&quot;Bool&quot;&gt;1&lt;/tcp_tw_recycle&gt;&#13;&#10;            &lt;tcp_tw_reuse type=&quot;Bool&quot;&gt;0&lt;/tcp_tw_reuse&gt;&#13;&#10;            &lt;tcp_vegas_alpha type=&quot;Int&quot;&gt;2&lt;/tcp_vegas_alpha&gt;&#13;&#10;            &lt;tcp_vegas_beta type=&quot;Int&quot;&gt;6&lt;/tcp_vegas_beta&gt;&#13;&#10;            &lt;tcp_vegas_cong_avoid type=&quot;Int&quot;&gt;0&lt;/tcp_vegas_cong_avoid&gt;&#13;&#10;            &lt;tcp_vegas_gamma type=&quot;Int&quot;&gt;2&lt;/tcp_vegas_gamma&gt;&#13;&#10;            &lt;tcp_westwood type=&quot;Int&quot;&gt;0&lt;/tcp_westwood&gt;&#13;&#10;            &lt;tcp_window_scaling type=&quot;Bool&quot;&gt;0&lt;/tcp_window_scaling&gt;&#13;&#10;            &lt;ip_no_pmtu_disc type=&quot;Bool&quot;&gt;1&lt;/ip_no_pmtu_disc&gt;&#13;&#10;            &lt;tcp_wmem_min type=&quot;Int&quot;&gt;4096&lt;/tcp_wmem_min&gt;&#13;&#10;            &lt;tcp_wmem_default type=&quot;Int&quot;&gt;1024&lt;/tcp_wmem_default&gt;&#13;&#10;            &lt;tcp_wmem_max type=&quot;Int&quot;&gt;262144&lt;/tcp_wmem_max&gt;&#13;&#10;            &lt;tcp_ipfrag_time type=&quot;Int&quot;&gt;30&lt;/tcp_ipfrag_time&gt;&#13;&#10;            &lt;tcp_port_min type=&quot;Int&quot;&gt;1024&lt;/tcp_port_min&gt;&#13;&#10;            &lt;tcp_port_max type=&quot;Int&quot;&gt;65535&lt;/tcp_port_max&gt;&#13;&#10;            &lt;tcp_rto_min type=&quot;Int&quot;&gt;1000&lt;/tcp_rto_min&gt;&#13;&#10;            &lt;tcp_rto_max type=&quot;Int&quot;&gt;120000&lt;/tcp_rto_max&gt;&#13;&#10;            &lt;tcp_tw_rfc1323_strict type=&quot;Bool&quot;&gt;0&lt;/tcp_tw_rfc1323_strict&gt;&#13;&#10;            &lt;udp_port_randomization type=&quot;Bool&quot;&gt;0&lt;/udp_port_randomization&gt;&#13;&#10;            &lt;disable_min_max_buffer_size type=&quot;Bool&quot;&gt;1&lt;/disable_min_max_buffer_size&gt;&#13;&#10;            &lt;llm_hdr_gap type=&quot;Int&quot;&gt;8&lt;/llm_hdr_gap&gt;&#13;&#10;            &lt;llm_hdr_gap_ns type=&quot;Int&quot;&gt;10&lt;/llm_hdr_gap_ns&gt;&#13;&#10;            &lt;inter_packet_granular_delay type=&quot;Double&quot;&gt;0&lt;/inter_packet_granular_delay&gt;&#13;&#10;            &lt;delayed_acks type=&quot;Bool&quot;&gt;1&lt;/delayed_acks&gt;&#13;&#10;            &lt;accept_ra_default type=&quot;Bool&quot;&gt;0&lt;/accept_ra_default&gt;&#13;&#10;            &lt;rps_needed type=&quot;Bool&quot;&gt;0&lt;/rps_needed&gt;&#13;&#10;            &lt;delayed_acks_segments type=&quot;Int&quot;&gt;0&lt;/delayed_acks_segments&gt;&#13;&#10;            &lt;delayed_acks_timeout type=&quot;Int&quot;&gt;0&lt;/delayed_acks_timeout&gt;&#13;&#10;            &lt;tcp_large_icwnd type=&quot;Int&quot;&gt;0&lt;/tcp_large_icwnd&gt;&#13;&#10;            &lt;tcp_mgmt_rmem type=&quot;Int&quot;&gt;87380&lt;/tcp_mgmt_rmem&gt;&#13;&#10;            &lt;tcp_mgmt_wmem type=&quot;Int&quot;&gt;32768&lt;/tcp_mgmt_wmem&gt;&#13;&#10;            &lt;adjust_tcp_buffers type=&quot;Bool&quot;&gt;1&lt;/adjust_tcp_buffers&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;TCP-10&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;10&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.TCPPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.GratArpPlugin type=&quot;Ixia.Aptixia.StackManager.GratArpPlugin&quot; objectid=&quot;10429e22-34bc-4ae5-b85f-3089635b6eb0&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;            &lt;forwardGratArp type=&quot;Bool&quot;&gt;0&lt;/forwardGratArp&gt;&#13;&#10;            &lt;rateControlEnabled type=&quot;Bool&quot;&gt;0&lt;/rateControlEnabled&gt;&#13;&#10;            &lt;maxFramesPerSecond type=&quot;Int&quot;&gt;0&lt;/maxFramesPerSecond&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;GratARP-8&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;11&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.GratArpPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.MeshingPlugin type=&quot;Ixia.Aptixia.StackManager.MeshingPlugin&quot; objectid=&quot;7dad7c5d-84ac-4f54-ab59-fd45367fbb53&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;trafficMaps type=&quot;ListNode&quot;&gt;&#13;&#10;              &lt;Ixia.Aptixia.StackManager.MeshingTrafficMap type=&quot;Ixia.Aptixia.StackManager.MeshingTrafficMap&quot; objectid=&quot;17371506-2053-47a1-9b65-5422bcd36666&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                &lt;name type=&quot;String&quot;&gt;HTTPClient1!Traffic2_HTTPServer1&lt;/name&gt;&#13;&#10;                &lt;configMapFilename type=&quot;String&quot;&gt;HTTPClient1Script.configmap&lt;/configMapFilename&gt;&#13;&#10;                &lt;sourceActivityId type=&quot;Int&quot;&gt;0&lt;/sourceActivityId&gt;&#13;&#10;                &lt;ipPreference type=&quot;Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eIpPreference&quot;&gt;2&lt;/ipPreference&gt;&#13;&#10;                &lt;portRangesString type=&quot;String&quot; /&gt;&#13;&#10;                &lt;meshingType type=&quot;Ixia.Aptixia.StackManager.MeshingTrafficMapSkeleton+eMeshingType&quot;&gt;2&lt;/meshingType&gt;&#13;&#10;                &lt;destinationActivityId type=&quot;Int&quot;&gt;0&lt;/destinationActivityId&gt;&#13;&#10;              &lt;/Ixia.Aptixia.StackManager.MeshingTrafficMap&gt;&#13;&#10;            &lt;/trafficMaps&gt;&#13;&#10;            &lt;activityRangeMapInfoList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;Meshing-4&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;12&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.MeshingPlugin&gt;&#13;&#10;        &lt;/globalPluginList&gt;&#13;&#10;        &lt;portList type=&quot;Ixia.RpFramework.Server.Core.ShadowedPropertyStringList&quot; /&gt;&#13;&#10;        &lt;typeSpecificData type=&quot;ListNode&quot;&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.IPSecPortGroupData type=&quot;Ixia.Aptixia.StackManager.IPSecPortGroupData&quot; objectid=&quot;424d5c6a-3bd8-4c5f-86af-ad84753fa410&quot; version=&quot;6.70.0&quot;&gt;&#13;&#10;            &lt;role type=&quot;String&quot;&gt;Initiator&lt;/role&gt;&#13;&#10;            &lt;associates type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;overrideGlobalOptions type=&quot;Bool&quot;&gt;0&lt;/overrideGlobalOptions&gt;&#13;&#10;            &lt;useMaxInitiationRate type=&quot;Bool&quot;&gt;0&lt;/useMaxInitiationRate&gt;&#13;&#10;            &lt;maxInitiationRate type=&quot;Int&quot;&gt;50&lt;/maxInitiationRate&gt;&#13;&#10;            &lt;useMaxPendingTunnels type=&quot;Bool&quot;&gt;0&lt;/useMaxPendingTunnels&gt;&#13;&#10;            &lt;maxPendingTunnels type=&quot;Int&quot;&gt;50&lt;/maxPendingTunnels&gt;&#13;&#10;            &lt;teardownRate type=&quot;Int&quot;&gt;10&lt;/teardownRate&gt;&#13;&#10;            &lt;enableESPPerStreamStats type=&quot;Bool&quot;&gt;0&lt;/enableESPPerStreamStats&gt;&#13;&#10;            &lt;enableESPReplayStats type=&quot;Bool&quot;&gt;0&lt;/enableESPReplayStats&gt;&#13;&#10;            &lt;activities type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;pcpuLogLevel type=&quot;String&quot;&gt;0&lt;/pcpuLogLevel&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;3&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.IPSecPortGroupData&gt;&#13;&#10;        &lt;/typeSpecificData&gt;&#13;&#10;        &lt;virtualMode type=&quot;Bool&quot;&gt;0&lt;/virtualMode&gt;&#13;&#10;        &lt;allowedVirtualModeTypes type=&quot;Ixia.RpFramework.Server.Core.ShadowedPropertyStringList&quot; /&gt;&#13;&#10;        &lt;doOwnership type=&quot;Bool&quot;&gt;0&lt;/doOwnership&gt;&#13;&#10;        &lt;branchToNicMap type=&quot;ListNode&quot; /&gt;&#13;&#10;        &lt;cpuAggregation type=&quot;Bool&quot;&gt;0&lt;/cpuAggregation&gt;&#13;&#10;        &lt;activePort type=&quot;String&quot; /&gt;&#13;&#10;        &lt;networkLayersManager type=&quot;Ixia.Aptixia.StackManager.NetworkLayersManager&quot; objectid=&quot;076f9c54-cda8-4c68-a9c8-f14550cab1ae&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;6&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/networkLayersManager&gt;&#13;&#10;        &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;6&lt;/ixLoadRestObjectId&gt;&#13;&#10;      &lt;/Ixia.Aptixia.StackManager.PortGroup&gt;&#13;&#10;      &lt;Ixia.Aptixia.StackManager.PortGroup type=&quot;Ixia.Aptixia.StackManager.PortGroup&quot; objectid=&quot;c4ecfc60-64ac-4dc2-9410-e0f58d84f229&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;        &lt;name type=&quot;String&quot;&gt;server network&lt;/name&gt;&#13;&#10;        &lt;category type=&quot;String&quot; /&gt;&#13;&#10;        &lt;stack type=&quot;Ixia.Aptixia.StackManager.L1EthernetPlugin&quot; objectid=&quot;1bd9f1bc-9959-464e-b1e8-ddb0bb4d0181&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;autoNegotiate type=&quot;Bool&quot;&gt;1&lt;/autoNegotiate&gt;&#13;&#10;          &lt;speed type=&quot;String&quot;&gt;k100FD&lt;/speed&gt;&#13;&#10;          &lt;advertise10Half type=&quot;Bool&quot;&gt;1&lt;/advertise10Half&gt;&#13;&#10;          &lt;advertise10Full type=&quot;Bool&quot;&gt;1&lt;/advertise10Full&gt;&#13;&#10;          &lt;advertise100Half type=&quot;Bool&quot;&gt;1&lt;/advertise100Half&gt;&#13;&#10;          &lt;advertise100Full type=&quot;Bool&quot;&gt;1&lt;/advertise100Full&gt;&#13;&#10;          &lt;advertise1000Full type=&quot;Bool&quot;&gt;1&lt;/advertise1000Full&gt;&#13;&#10;          &lt;advertise10000Full type=&quot;Bool&quot;&gt;1&lt;/advertise10000Full&gt;&#13;&#10;          &lt;cardDualPhy type=&quot;Ixia.Aptixia.StackManager.DualPhyPlugin&quot; objectid=&quot;4fe8412b-7d4c-4ebe-a0d4-480a4401b3d0&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;medium type=&quot;String&quot;&gt;auto&lt;/medium&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;5&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/cardDualPhy&gt;&#13;&#10;          &lt;cardElm type=&quot;Ixia.Aptixia.StackManager.EthernetELMPlugin&quot; objectid=&quot;4dfec118-30e8-4494-b7c7-e28518e7848a&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;negotiateMasterSlave type=&quot;Bool&quot;&gt;1&lt;/negotiateMasterSlave&gt;&#13;&#10;            &lt;negotiationType type=&quot;String&quot;&gt;master&lt;/negotiationType&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;5&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/cardElm&gt;&#13;&#10;          &lt;enableFlowControl type=&quot;Bool&quot;&gt;0&lt;/enableFlowControl&gt;&#13;&#10;          &lt;directedAddress type=&quot;String&quot;&gt;01:80:C2:00:00:01&lt;/directedAddress&gt;&#13;&#10;          &lt;dataCenter type=&quot;Ixia.Aptixia.StackManager.DataCenterSettings&quot; objectid=&quot;123fecc5-cb5e-43e9-92a1-b053dc56d0f3&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;dcSupported type=&quot;Bool&quot;&gt;1&lt;/dcSupported&gt;&#13;&#10;            &lt;dcEnabled type=&quot;Bool&quot;&gt;0&lt;/dcEnabled&gt;&#13;&#10;            &lt;dcFlowControl type=&quot;Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType&quot;&gt;0&lt;/dcFlowControl&gt;&#13;&#10;            &lt;dcMode type=&quot;Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode&quot;&gt;2&lt;/dcMode&gt;&#13;&#10;            &lt;dcPfcMapping type=&quot;IntList&quot; /&gt;&#13;&#10;            &lt;dcPfcPauseEnable type=&quot;Bool&quot;&gt;0&lt;/dcPfcPauseEnable&gt;&#13;&#10;            &lt;dcPfcPauseDelay type=&quot;Int&quot;&gt;1&lt;/dcPfcPauseDelay&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;5&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/dataCenter&gt;&#13;&#10;          &lt;childrenList type=&quot;ListNode&quot;&gt;&#13;&#10;            &lt;Ixia.Aptixia.StackManager.L2EthernetPlugin type=&quot;Ixia.Aptixia.StackManager.L2EthernetPlugin&quot; objectid=&quot;35ff711b-53f7-4c74-9e8b-98d35adaa6bf&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;              &lt;macRangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                &lt;Ixia.Aptixia.StackManager.MacRange type=&quot;Ixia.Aptixia.StackManager.MacRange&quot; objectid=&quot;f91c9f52-8150-4d0f-b657-498ed241835c&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                  &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;                  &lt;name type=&quot;String&quot;&gt;MAC-R2&lt;/name&gt;&#13;&#10;                  &lt;mac type=&quot;String&quot;&gt;00:98:28:28:14:00&lt;/mac&gt;&#13;&#10;                  &lt;incrementBy type=&quot;String&quot;&gt;00:00:00:00:00:01&lt;/incrementBy&gt;&#13;&#10;                  &lt;mtu type=&quot;Int&quot;&gt;1500&lt;/mtu&gt;&#13;&#10;                  &lt;count type=&quot;Int&quot;&gt;1&lt;/count&gt;&#13;&#10;                  &lt;vlanRange type=&quot;Ixia.Aptixia.StackManager.VlanIdRange&quot; objectid=&quot;57fa3f41-7695-42d7-ac26-68924bb1e8bb&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                    &lt;name type=&quot;String&quot;&gt;VLAN-R2&lt;/name&gt;&#13;&#10;                    &lt;enabled type=&quot;Bool&quot;&gt;0&lt;/enabled&gt;&#13;&#10;                    &lt;firstId type=&quot;Int&quot;&gt;1&lt;/firstId&gt;&#13;&#10;                    &lt;incrementStep type=&quot;Int&quot;&gt;32&lt;/incrementStep&gt;&#13;&#10;                    &lt;increment type=&quot;Int&quot;&gt;1&lt;/increment&gt;&#13;&#10;                    &lt;uniqueCount type=&quot;Int&quot;&gt;4094&lt;/uniqueCount&gt;&#13;&#10;                    &lt;priority type=&quot;Int&quot;&gt;0&lt;/priority&gt;&#13;&#10;                    &lt;tpid type=&quot;String&quot;&gt;0x8100&lt;/tpid&gt;&#13;&#10;                    &lt;innerEnable type=&quot;Bool&quot;&gt;0&lt;/innerEnable&gt;&#13;&#10;                    &lt;innerFirstId type=&quot;Int&quot;&gt;1&lt;/innerFirstId&gt;&#13;&#10;                    &lt;innerIncrementStep type=&quot;Int&quot;&gt;1&lt;/innerIncrementStep&gt;&#13;&#10;                    &lt;innerIncrement type=&quot;Int&quot;&gt;1&lt;/innerIncrement&gt;&#13;&#10;                    &lt;innerUniqueCount type=&quot;Int&quot;&gt;4094&lt;/innerUniqueCount&gt;&#13;&#10;                    &lt;innerPriority type=&quot;Int&quot;&gt;0&lt;/innerPriority&gt;&#13;&#10;                    &lt;idIncrMode type=&quot;Int&quot;&gt;1&lt;/idIncrMode&gt;&#13;&#10;                    &lt;innerTpid type=&quot;String&quot;&gt;0x8100&lt;/innerTpid&gt;&#13;&#10;                    &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;                  &lt;/vlanRange&gt;&#13;&#10;                  &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;                &lt;/Ixia.Aptixia.StackManager.MacRange&gt;&#13;&#10;              &lt;/macRangeList&gt;&#13;&#10;              &lt;vlanRangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                &lt;Ixia.Aptixia.StackManager.VlanIdRange type=&quot;Ixia.Aptixia.StackManager.VlanIdRange&quot; objectid=&quot;57fa3f41-7695-42d7-ac26-68924bb1e8bb&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;              &lt;/vlanRangeList&gt;&#13;&#10;              &lt;childrenList type=&quot;ListNode&quot;&gt;&#13;&#10;                &lt;Ixia.Aptixia.StackManager.IpV4V6Plugin type=&quot;Ixia.Aptixia.StackManager.IpV4V6Plugin&quot; objectid=&quot;b85b184d-9bb4-48c2-a029-e633fee7a3c8&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                  &lt;rangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                    &lt;Ixia.Aptixia.StackManager.IpV4V6Range type=&quot;Ixia.Aptixia.StackManager.IpV4V6Range&quot; objectid=&quot;1d9bf537-0c3d-4fdf-9b85-0a622cc77649&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                      &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;                      &lt;name type=&quot;String&quot;&gt;IP-R2&lt;/name&gt;&#13;&#10;                      &lt;ipType type=&quot;String&quot;&gt;IPv4&lt;/ipType&gt;&#13;&#10;                      &lt;ipAddress type=&quot;String&quot;&gt;152.40.40.20&lt;/ipAddress&gt;&#13;&#10;                      &lt;prefix type=&quot;Int&quot;&gt;24&lt;/prefix&gt;&#13;&#10;                      &lt;incrementBy type=&quot;String&quot;&gt;0.0.0.1&lt;/incrementBy&gt;&#13;&#10;                      &lt;count type=&quot;Int&quot;&gt;1&lt;/count&gt;&#13;&#10;                      &lt;autoCountEnabled type=&quot;Bool&quot;&gt;0&lt;/autoCountEnabled&gt;&#13;&#10;                      &lt;gatewayAddress type=&quot;String&quot;&gt;152.40.40.10&lt;/gatewayAddress&gt;&#13;&#10;                      &lt;gatewayIncrement type=&quot;String&quot;&gt;0.0.0.0&lt;/gatewayIncrement&gt;&#13;&#10;                      &lt;gatewayIncrementMode type=&quot;String&quot;&gt;perSubnet&lt;/gatewayIncrementMode&gt;&#13;&#10;                      &lt;enableGatewayArp type=&quot;Bool&quot;&gt;0&lt;/enableGatewayArp&gt;&#13;&#10;                      &lt;generateStatistics type=&quot;Bool&quot;&gt;0&lt;/generateStatistics&gt;&#13;&#10;                      &lt;mss type=&quot;Int&quot;&gt;1460&lt;/mss&gt;&#13;&#10;                      &lt;randomizeAddress type=&quot;Bool&quot;&gt;0&lt;/randomizeAddress&gt;&#13;&#10;                      &lt;randomizeSeed type=&quot;Int&quot;&gt;463911585&lt;/randomizeSeed&gt;&#13;&#10;                      &lt;autoMacGeneration type=&quot;Bool&quot;&gt;1&lt;/autoMacGeneration&gt;&#13;&#10;                      &lt;macRange type=&quot;Ixia.Aptixia.StackManager.MacRange&quot; objectid=&quot;f91c9f52-8150-4d0f-b657-498ed241835c&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;                      &lt;vlanRange type=&quot;Ixia.Aptixia.StackManager.VlanIdRange&quot; objectid=&quot;57fa3f41-7695-42d7-ac26-68924bb1e8bb&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;                      &lt;atmRange type=&quot;Ixia.Aptixia.StackManager.AtmRange&quot; objectid=&quot;00000000-0000-0000-0000-000000000000&quot; /&gt;&#13;&#10;                      &lt;pvcRange type=&quot;Ixia.Aptixia.StackManager.PvcRange&quot; objectid=&quot;00000000-0000-0000-0000-000000000000&quot; /&gt;&#13;&#10;                      &lt;autoIpTypeEnabled type=&quot;Bool&quot;&gt;0&lt;/autoIpTypeEnabled&gt;&#13;&#10;                      &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;                    &lt;/Ixia.Aptixia.StackManager.IpV4V6Range&gt;&#13;&#10;                  &lt;/rangeList&gt;&#13;&#10;                  &lt;rangeGroups type=&quot;ListNode&quot;&gt;&#13;&#10;                    &lt;Ixia.Aptixia.StackManager.RangeGroup type=&quot;Ixia.Aptixia.StackManager.RangeGroup&quot; objectid=&quot;b2c21c73-bfe3-4fbc-9804-b5a8b307d893&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                      &lt;name type=&quot;String&quot;&gt;DistGroup1&lt;/name&gt;&#13;&#10;                      &lt;distribType type=&quot;Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType&quot;&gt;0&lt;/distribType&gt;&#13;&#10;                      &lt;rangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                        &lt;Ixia.Aptixia.StackManager.IpV4V6Range type=&quot;Ixia.Aptixia.StackManager.IpV4V6Range&quot; objectid=&quot;1d9bf537-0c3d-4fdf-9b85-0a622cc77649&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;                      &lt;/rangeList&gt;&#13;&#10;                      &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;3&lt;/ixLoadRestObjectId&gt;&#13;&#10;                    &lt;/Ixia.Aptixia.StackManager.RangeGroup&gt;&#13;&#10;                  &lt;/rangeGroups&gt;&#13;&#10;                  &lt;childrenList type=&quot;ListNode&quot; /&gt;&#13;&#10;                  &lt;extensionList type=&quot;ListNode&quot; /&gt;&#13;&#10;                  &lt;dscMode type=&quot;Bool&quot;&gt;0&lt;/dscMode&gt;&#13;&#10;                  &lt;name type=&quot;String&quot;&gt;IP-2&lt;/name&gt;&#13;&#10;                  &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;10&lt;/ixLoadRestObjectId&gt;&#13;&#10;                &lt;/Ixia.Aptixia.StackManager.IpV4V6Plugin&gt;&#13;&#10;              &lt;/childrenList&gt;&#13;&#10;              &lt;extensionList type=&quot;ListNode&quot; /&gt;&#13;&#10;              &lt;dscMode type=&quot;Bool&quot;&gt;0&lt;/dscMode&gt;&#13;&#10;              &lt;name type=&quot;String&quot;&gt;MAC/VLAN-2&lt;/name&gt;&#13;&#10;              &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;9&lt;/ixLoadRestObjectId&gt;&#13;&#10;            &lt;/Ixia.Aptixia.StackManager.L2EthernetPlugin&gt;&#13;&#10;          &lt;/childrenList&gt;&#13;&#10;          &lt;extensionList type=&quot;ListNode&quot; /&gt;&#13;&#10;          &lt;dscMode type=&quot;Bool&quot;&gt;0&lt;/dscMode&gt;&#13;&#10;          &lt;name type=&quot;String&quot;&gt;Ethernet-2&lt;/name&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;7&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/stack&gt;&#13;&#10;        &lt;globalPluginList type=&quot;ListNode&quot;&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type=&quot;Ixia.Aptixia.StackManager.IxLoadSettingsPlugin&quot; objectid=&quot;993e33c6-e1f7-4967-982e-82a032f8c61a&quot; version=&quot;1.0.0&quot;&gt;&#13;&#10;            &lt;teardownInterfaceWithUser type=&quot;Bool&quot;&gt;0&lt;/teardownInterfaceWithUser&gt;&#13;&#10;            &lt;interfaceBehavior type=&quot;Int&quot;&gt;0&lt;/interfaceBehavior&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;Settings-4&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;13&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.IxLoadSettingsPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.DnsPlugin type=&quot;Ixia.Aptixia.StackManager.DnsPlugin&quot; objectid=&quot;36ca84d7-ff44-45b7-b75d-aec38b753161&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;domain type=&quot;String&quot; /&gt;&#13;&#10;            &lt;timeout type=&quot;Int&quot;&gt;30000&lt;/timeout&gt;&#13;&#10;            &lt;nameServerList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;searchList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;hostList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;DNS-4&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;14&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.DnsPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.FilterPlugin type=&quot;Ixia.Aptixia.StackManager.FilterPlugin&quot; objectid=&quot;25c5acdd-9dd3-4802-93b6-b10651820b66&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;auto type=&quot;Bool&quot;&gt;1&lt;/auto&gt;&#13;&#10;            &lt;all type=&quot;Bool&quot;&gt;0&lt;/all&gt;&#13;&#10;            &lt;pppoecontrol type=&quot;Bool&quot;&gt;0&lt;/pppoecontrol&gt;&#13;&#10;            &lt;pppoenetwork type=&quot;Bool&quot;&gt;0&lt;/pppoenetwork&gt;&#13;&#10;            &lt;isis type=&quot;Bool&quot;&gt;0&lt;/isis&gt;&#13;&#10;            &lt;ip type=&quot;String&quot; /&gt;&#13;&#10;            &lt;tcp type=&quot;String&quot; /&gt;&#13;&#10;            &lt;udp type=&quot;String&quot; /&gt;&#13;&#10;            &lt;mac type=&quot;String&quot; /&gt;&#13;&#10;            &lt;icmp type=&quot;String&quot; /&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;Filter-2&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;15&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.FilterPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.TCPPlugin type=&quot;Ixia.Aptixia.StackManager.TCPPlugin&quot; objectid=&quot;6259328b-97c2-4390-8ab1-f16bf3459219&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;bestPerfSettings type=&quot;Bool&quot;&gt;0&lt;/bestPerfSettings&gt;&#13;&#10;            &lt;accept_ra_all type=&quot;Bool&quot;&gt;0&lt;/accept_ra_all&gt;&#13;&#10;            &lt;tcp_abort_on_overflow type=&quot;Bool&quot;&gt;0&lt;/tcp_abort_on_overflow&gt;&#13;&#10;            &lt;tcp_adv_win_scale type=&quot;Int&quot;&gt;2&lt;/tcp_adv_win_scale&gt;&#13;&#10;            &lt;tcp_app_win type=&quot;Int&quot;&gt;31&lt;/tcp_app_win&gt;&#13;&#10;            &lt;tcp_bic type=&quot;Int&quot;&gt;0&lt;/tcp_bic&gt;&#13;&#10;            &lt;tcp_bic_fast_convergence type=&quot;Int&quot;&gt;1&lt;/tcp_bic_fast_convergence&gt;&#13;&#10;            &lt;tcp_bic_low_window type=&quot;Int&quot;&gt;14&lt;/tcp_bic_low_window&gt;&#13;&#10;            &lt;tcp_dsack type=&quot;Bool&quot;&gt;1&lt;/tcp_dsack&gt;&#13;&#10;            &lt;tcp_ecn type=&quot;Bool&quot;&gt;0&lt;/tcp_ecn&gt;&#13;&#10;            &lt;tcp_fack type=&quot;Bool&quot;&gt;1&lt;/tcp_fack&gt;&#13;&#10;            &lt;tcp_fin_timeout type=&quot;Int&quot;&gt;60&lt;/tcp_fin_timeout&gt;&#13;&#10;            &lt;tcp_frto type=&quot;Int&quot;&gt;0&lt;/tcp_frto&gt;&#13;&#10;            &lt;tcp_keepalive_intvl type=&quot;Int&quot;&gt;7200&lt;/tcp_keepalive_intvl&gt;&#13;&#10;            &lt;tcp_keepalive_probes type=&quot;Int&quot;&gt;75&lt;/tcp_keepalive_probes&gt;&#13;&#10;            &lt;tcp_keepalive_time type=&quot;Int&quot;&gt;9&lt;/tcp_keepalive_time&gt;&#13;&#10;            &lt;tcp_low_latency type=&quot;Int&quot;&gt;0&lt;/tcp_low_latency&gt;&#13;&#10;            &lt;tcp_max_orphans type=&quot;Int&quot;&gt;8192&lt;/tcp_max_orphans&gt;&#13;&#10;            &lt;tcp_max_syn_backlog type=&quot;Int&quot;&gt;1024&lt;/tcp_max_syn_backlog&gt;&#13;&#10;            &lt;tcp_max_tw_buckets type=&quot;Int&quot;&gt;180000&lt;/tcp_max_tw_buckets&gt;&#13;&#10;            &lt;tcp_mem_low type=&quot;Int&quot;&gt;24576&lt;/tcp_mem_low&gt;&#13;&#10;            &lt;tcp_mem_pressure type=&quot;Int&quot;&gt;32768&lt;/tcp_mem_pressure&gt;&#13;&#10;            &lt;tcp_mem_high type=&quot;Int&quot;&gt;49152&lt;/tcp_mem_high&gt;&#13;&#10;            &lt;tcp_moderate_rcvbuf type=&quot;Int&quot;&gt;0&lt;/tcp_moderate_rcvbuf&gt;&#13;&#10;            &lt;tcp_no_metrics_save type=&quot;Bool&quot;&gt;0&lt;/tcp_no_metrics_save&gt;&#13;&#10;            &lt;tcp_orphan_retries type=&quot;Int&quot;&gt;0&lt;/tcp_orphan_retries&gt;&#13;&#10;            &lt;tcp_reordering type=&quot;Int&quot;&gt;3&lt;/tcp_reordering&gt;&#13;&#10;            &lt;tcp_retrans_collapse type=&quot;Bool&quot;&gt;1&lt;/tcp_retrans_collapse&gt;&#13;&#10;            &lt;tcp_retries1 type=&quot;Int&quot;&gt;3&lt;/tcp_retries1&gt;&#13;&#10;            &lt;tcp_retries2 type=&quot;Int&quot;&gt;15&lt;/tcp_retries2&gt;&#13;&#10;            &lt;tcp_rfc1337 type=&quot;Bool&quot;&gt;0&lt;/tcp_rfc1337&gt;&#13;&#10;            &lt;tcp_rmem_min type=&quot;Int&quot;&gt;4096&lt;/tcp_rmem_min&gt;&#13;&#10;            &lt;tcp_rmem_default type=&quot;Int&quot;&gt;1024&lt;/tcp_rmem_default&gt;&#13;&#10;            &lt;tcp_rmem_max type=&quot;Int&quot;&gt;262144&lt;/tcp_rmem_max&gt;&#13;&#10;            &lt;tcp_sack type=&quot;Bool&quot;&gt;1&lt;/tcp_sack&gt;&#13;&#10;            &lt;tcp_stdurg type=&quot;Bool&quot;&gt;0&lt;/tcp_stdurg&gt;&#13;&#10;            &lt;tcp_synack_retries type=&quot;Int&quot;&gt;5&lt;/tcp_synack_retries&gt;&#13;&#10;            &lt;tcp_syn_retries type=&quot;Int&quot;&gt;5&lt;/tcp_syn_retries&gt;&#13;&#10;            &lt;tcp_timestamps type=&quot;Bool&quot;&gt;1&lt;/tcp_timestamps&gt;&#13;&#10;            &lt;tcp_tw_recycle type=&quot;Bool&quot;&gt;1&lt;/tcp_tw_recycle&gt;&#13;&#10;            &lt;tcp_tw_reuse type=&quot;Bool&quot;&gt;0&lt;/tcp_tw_reuse&gt;&#13;&#10;            &lt;tcp_vegas_alpha type=&quot;Int&quot;&gt;2&lt;/tcp_vegas_alpha&gt;&#13;&#10;            &lt;tcp_vegas_beta type=&quot;Int&quot;&gt;6&lt;/tcp_vegas_beta&gt;&#13;&#10;            &lt;tcp_vegas_cong_avoid type=&quot;Int&quot;&gt;0&lt;/tcp_vegas_cong_avoid&gt;&#13;&#10;            &lt;tcp_vegas_gamma type=&quot;Int&quot;&gt;2&lt;/tcp_vegas_gamma&gt;&#13;&#10;            &lt;tcp_westwood type=&quot;Int&quot;&gt;0&lt;/tcp_westwood&gt;&#13;&#10;            &lt;tcp_window_scaling type=&quot;Bool&quot;&gt;0&lt;/tcp_window_scaling&gt;&#13;&#10;            &lt;ip_no_pmtu_disc type=&quot;Bool&quot;&gt;1&lt;/ip_no_pmtu_disc&gt;&#13;&#10;            &lt;tcp_wmem_min type=&quot;Int&quot;&gt;4096&lt;/tcp_wmem_min&gt;&#13;&#10;            &lt;tcp_wmem_default type=&quot;Int&quot;&gt;1024&lt;/tcp_wmem_default&gt;&#13;&#10;            &lt;tcp_wmem_max type=&quot;Int&quot;&gt;262144&lt;/tcp_wmem_max&gt;&#13;&#10;            &lt;tcp_ipfrag_time type=&quot;Int&quot;&gt;30&lt;/tcp_ipfrag_time&gt;&#13;&#10;            &lt;tcp_port_min type=&quot;Int&quot;&gt;1024&lt;/tcp_port_min&gt;&#13;&#10;            &lt;tcp_port_max type=&quot;Int&quot;&gt;65535&lt;/tcp_port_max&gt;&#13;&#10;            &lt;tcp_rto_min type=&quot;Int&quot;&gt;1000&lt;/tcp_rto_min&gt;&#13;&#10;            &lt;tcp_rto_max type=&quot;Int&quot;&gt;120000&lt;/tcp_rto_max&gt;&#13;&#10;            &lt;tcp_tw_rfc1323_strict type=&quot;Bool&quot;&gt;0&lt;/tcp_tw_rfc1323_strict&gt;&#13;&#10;            &lt;udp_port_randomization type=&quot;Bool&quot;&gt;0&lt;/udp_port_randomization&gt;&#13;&#10;            &lt;disable_min_max_buffer_size type=&quot;Bool&quot;&gt;1&lt;/disable_min_max_buffer_size&gt;&#13;&#10;            &lt;llm_hdr_gap type=&quot;Int&quot;&gt;8&lt;/llm_hdr_gap&gt;&#13;&#10;            &lt;llm_hdr_gap_ns type=&quot;Int&quot;&gt;10&lt;/llm_hdr_gap_ns&gt;&#13;&#10;            &lt;inter_packet_granular_delay type=&quot;Double&quot;&gt;0&lt;/inter_packet_granular_delay&gt;&#13;&#10;            &lt;delayed_acks type=&quot;Bool&quot;&gt;1&lt;/delayed_acks&gt;&#13;&#10;            &lt;accept_ra_default type=&quot;Bool&quot;&gt;0&lt;/accept_ra_default&gt;&#13;&#10;            &lt;rps_needed type=&quot;Bool&quot;&gt;0&lt;/rps_needed&gt;&#13;&#10;            &lt;delayed_acks_segments type=&quot;Int&quot;&gt;0&lt;/delayed_acks_segments&gt;&#13;&#10;            &lt;delayed_acks_timeout type=&quot;Int&quot;&gt;0&lt;/delayed_acks_timeout&gt;&#13;&#10;            &lt;tcp_large_icwnd type=&quot;Int&quot;&gt;0&lt;/tcp_large_icwnd&gt;&#13;&#10;            &lt;tcp_mgmt_rmem type=&quot;Int&quot;&gt;87380&lt;/tcp_mgmt_rmem&gt;&#13;&#10;            &lt;tcp_mgmt_wmem type=&quot;Int&quot;&gt;32768&lt;/tcp_mgmt_wmem&gt;&#13;&#10;            &lt;adjust_tcp_buffers type=&quot;Bool&quot;&gt;1&lt;/adjust_tcp_buffers&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;TCP-4&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;16&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.TCPPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.GratArpPlugin type=&quot;Ixia.Aptixia.StackManager.GratArpPlugin&quot; objectid=&quot;3eedf749-efa4-43a0-87ae-e110a77c88d4&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;            &lt;forwardGratArp type=&quot;Bool&quot;&gt;0&lt;/forwardGratArp&gt;&#13;&#10;            &lt;rateControlEnabled type=&quot;Bool&quot;&gt;0&lt;/rateControlEnabled&gt;&#13;&#10;            &lt;maxFramesPerSecond type=&quot;Int&quot;&gt;0&lt;/maxFramesPerSecond&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;GratARP-2&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;17&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.GratArpPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.MeshingPlugin type=&quot;Ixia.Aptixia.StackManager.MeshingPlugin&quot; objectid=&quot;284f9992-65d8-4027-a155-709f1965f892&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;trafficMaps type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;activityRangeMapInfoList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;Meshing-1&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;18&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.MeshingPlugin&gt;&#13;&#10;        &lt;/globalPluginList&gt;&#13;&#10;        &lt;portList type=&quot;Ixia.RpFramework.Server.Core.ShadowedPropertyStringList&quot; /&gt;&#13;&#10;        &lt;typeSpecificData type=&quot;ListNode&quot;&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.IPSecPortGroupData type=&quot;Ixia.Aptixia.StackManager.IPSecPortGroupData&quot; objectid=&quot;f65f12f2-018c-46f5-a9c5-a1f6f7151909&quot; version=&quot;6.70.0&quot;&gt;&#13;&#10;            &lt;role type=&quot;String&quot;&gt;Initiator&lt;/role&gt;&#13;&#10;            &lt;associates type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;overrideGlobalOptions type=&quot;Bool&quot;&gt;0&lt;/overrideGlobalOptions&gt;&#13;&#10;            &lt;useMaxInitiationRate type=&quot;Bool&quot;&gt;0&lt;/useMaxInitiationRate&gt;&#13;&#10;            &lt;maxInitiationRate type=&quot;Int&quot;&gt;50&lt;/maxInitiationRate&gt;&#13;&#10;            &lt;useMaxPendingTunnels type=&quot;Bool&quot;&gt;0&lt;/useMaxPendingTunnels&gt;&#13;&#10;            &lt;maxPendingTunnels type=&quot;Int&quot;&gt;50&lt;/maxPendingTunnels&gt;&#13;&#10;            &lt;teardownRate type=&quot;Int&quot;&gt;10&lt;/teardownRate&gt;&#13;&#10;            &lt;enableESPPerStreamStats type=&quot;Bool&quot;&gt;0&lt;/enableESPPerStreamStats&gt;&#13;&#10;            &lt;enableESPReplayStats type=&quot;Bool&quot;&gt;0&lt;/enableESPReplayStats&gt;&#13;&#10;            &lt;activities type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;pcpuLogLevel type=&quot;String&quot;&gt;0&lt;/pcpuLogLevel&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.IPSecPortGroupData&gt;&#13;&#10;        &lt;/typeSpecificData&gt;&#13;&#10;        &lt;virtualMode type=&quot;Bool&quot;&gt;0&lt;/virtualMode&gt;&#13;&#10;        &lt;allowedVirtualModeTypes type=&quot;Ixia.RpFramework.Server.Core.ShadowedPropertyStringList&quot; /&gt;&#13;&#10;        &lt;doOwnership type=&quot;Bool&quot;&gt;0&lt;/doOwnership&gt;&#13;&#10;        &lt;branchToNicMap type=&quot;ListNode&quot; /&gt;&#13;&#10;        &lt;cpuAggregation type=&quot;Bool&quot;&gt;0&lt;/cpuAggregation&gt;&#13;&#10;        &lt;activePort type=&quot;String&quot; /&gt;&#13;&#10;        &lt;networkLayersManager type=&quot;Ixia.Aptixia.StackManager.NetworkLayersManager&quot; objectid=&quot;60b1273d-78d3-4813-8cea-ec9a7101b8a3&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;7&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/networkLayersManager&gt;&#13;&#10;        &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;      &lt;/Ixia.Aptixia.StackManager.PortGroup&gt;&#13;&#10;      &lt;Ixia.Aptixia.StackManager.PortGroup type=&quot;Ixia.Aptixia.StackManager.PortGroup&quot; objectid=&quot;669af012-d572-439d-9c70-cfbacea0fe7f&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;        &lt;name type=&quot;String&quot;&gt;server network_1&lt;/name&gt;&#13;&#10;        &lt;category type=&quot;String&quot; /&gt;&#13;&#10;        &lt;stack type=&quot;Ixia.Aptixia.StackManager.L1EthernetPlugin&quot; objectid=&quot;9280ae7b-1935-4fb1-8a86-522e739d7d13&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;autoNegotiate type=&quot;Bool&quot;&gt;1&lt;/autoNegotiate&gt;&#13;&#10;          &lt;speed type=&quot;String&quot;&gt;k100FD&lt;/speed&gt;&#13;&#10;          &lt;advertise10Half type=&quot;Bool&quot;&gt;1&lt;/advertise10Half&gt;&#13;&#10;          &lt;advertise10Full type=&quot;Bool&quot;&gt;1&lt;/advertise10Full&gt;&#13;&#10;          &lt;advertise100Half type=&quot;Bool&quot;&gt;1&lt;/advertise100Half&gt;&#13;&#10;          &lt;advertise100Full type=&quot;Bool&quot;&gt;1&lt;/advertise100Full&gt;&#13;&#10;          &lt;advertise1000Full type=&quot;Bool&quot;&gt;1&lt;/advertise1000Full&gt;&#13;&#10;          &lt;advertise10000Full type=&quot;Bool&quot;&gt;1&lt;/advertise10000Full&gt;&#13;&#10;          &lt;cardDualPhy type=&quot;Ixia.Aptixia.StackManager.DualPhyPlugin&quot; objectid=&quot;3158f964-1bf1-4ba7-b2d5-a0f2174b233f&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;medium type=&quot;String&quot;&gt;auto&lt;/medium&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;15&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/cardDualPhy&gt;&#13;&#10;          &lt;cardElm type=&quot;Ixia.Aptixia.StackManager.EthernetELMPlugin&quot; objectid=&quot;454249a6-64c1-41d4-b0ff-84b288651087&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;negotiateMasterSlave type=&quot;Bool&quot;&gt;1&lt;/negotiateMasterSlave&gt;&#13;&#10;            &lt;negotiationType type=&quot;String&quot;&gt;master&lt;/negotiationType&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;15&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/cardElm&gt;&#13;&#10;          &lt;enableFlowControl type=&quot;Bool&quot;&gt;0&lt;/enableFlowControl&gt;&#13;&#10;          &lt;directedAddress type=&quot;String&quot;&gt;01:80:C2:00:00:01&lt;/directedAddress&gt;&#13;&#10;          &lt;dataCenter type=&quot;Ixia.Aptixia.StackManager.DataCenterSettings&quot; objectid=&quot;3d790b32-9ee7-4e44-b63f-cfab800dea84&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;dcSupported type=&quot;Bool&quot;&gt;1&lt;/dcSupported&gt;&#13;&#10;            &lt;dcEnabled type=&quot;Bool&quot;&gt;0&lt;/dcEnabled&gt;&#13;&#10;            &lt;dcFlowControl type=&quot;Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eFlowControlType&quot;&gt;0&lt;/dcFlowControl&gt;&#13;&#10;            &lt;dcMode type=&quot;Ixia.Aptixia.StackManager.DataCenterSettingsSkeleton+eDataCenterMode&quot;&gt;2&lt;/dcMode&gt;&#13;&#10;            &lt;dcPfcMapping type=&quot;IntList&quot; /&gt;&#13;&#10;            &lt;dcPfcPauseEnable type=&quot;Bool&quot;&gt;0&lt;/dcPfcPauseEnable&gt;&#13;&#10;            &lt;dcPfcPauseDelay type=&quot;Int&quot;&gt;1&lt;/dcPfcPauseDelay&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;15&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/dataCenter&gt;&#13;&#10;          &lt;childrenList type=&quot;ListNode&quot;&gt;&#13;&#10;            &lt;Ixia.Aptixia.StackManager.L2EthernetPlugin type=&quot;Ixia.Aptixia.StackManager.L2EthernetPlugin&quot; objectid=&quot;c3e18bb9-4bf8-4bfc-a308-6a155469a0ee&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;              &lt;macRangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                &lt;Ixia.Aptixia.StackManager.MacRange type=&quot;Ixia.Aptixia.StackManager.MacRange&quot; objectid=&quot;95df1613-0cfc-45b5-a68e-e06ecd5b6cdf&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                  &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;                  &lt;name type=&quot;String&quot;&gt;MAC-R8&lt;/name&gt;&#13;&#10;                  &lt;mac type=&quot;String&quot;&gt;00:C0:28:28:14:00&lt;/mac&gt;&#13;&#10;                  &lt;incrementBy type=&quot;String&quot;&gt;00:00:00:00:00:01&lt;/incrementBy&gt;&#13;&#10;                  &lt;mtu type=&quot;Int&quot;&gt;1500&lt;/mtu&gt;&#13;&#10;                  &lt;count type=&quot;Int&quot;&gt;1&lt;/count&gt;&#13;&#10;                  &lt;vlanRange type=&quot;Ixia.Aptixia.StackManager.VlanIdRange&quot; objectid=&quot;90089481-45db-46c9-bb9b-639781adbde7&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                    &lt;name type=&quot;String&quot;&gt;VLAN-R8&lt;/name&gt;&#13;&#10;                    &lt;enabled type=&quot;Bool&quot;&gt;0&lt;/enabled&gt;&#13;&#10;                    &lt;firstId type=&quot;Int&quot;&gt;1&lt;/firstId&gt;&#13;&#10;                    &lt;incrementStep type=&quot;Int&quot;&gt;32&lt;/incrementStep&gt;&#13;&#10;                    &lt;increment type=&quot;Int&quot;&gt;1&lt;/increment&gt;&#13;&#10;                    &lt;uniqueCount type=&quot;Int&quot;&gt;4094&lt;/uniqueCount&gt;&#13;&#10;                    &lt;priority type=&quot;Int&quot;&gt;0&lt;/priority&gt;&#13;&#10;                    &lt;tpid type=&quot;String&quot;&gt;0x8100&lt;/tpid&gt;&#13;&#10;                    &lt;innerEnable type=&quot;Bool&quot;&gt;0&lt;/innerEnable&gt;&#13;&#10;                    &lt;innerFirstId type=&quot;Int&quot;&gt;1&lt;/innerFirstId&gt;&#13;&#10;                    &lt;innerIncrementStep type=&quot;Int&quot;&gt;1&lt;/innerIncrementStep&gt;&#13;&#10;                    &lt;innerIncrement type=&quot;Int&quot;&gt;1&lt;/innerIncrement&gt;&#13;&#10;                    &lt;innerUniqueCount type=&quot;Int&quot;&gt;4094&lt;/innerUniqueCount&gt;&#13;&#10;                    &lt;innerPriority type=&quot;Int&quot;&gt;0&lt;/innerPriority&gt;&#13;&#10;                    &lt;idIncrMode type=&quot;Int&quot;&gt;1&lt;/idIncrMode&gt;&#13;&#10;                    &lt;innerTpid type=&quot;String&quot;&gt;0x8100&lt;/innerTpid&gt;&#13;&#10;                    &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;8&lt;/ixLoadRestObjectId&gt;&#13;&#10;                  &lt;/vlanRange&gt;&#13;&#10;                  &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;8&lt;/ixLoadRestObjectId&gt;&#13;&#10;                &lt;/Ixia.Aptixia.StackManager.MacRange&gt;&#13;&#10;              &lt;/macRangeList&gt;&#13;&#10;              &lt;vlanRangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                &lt;Ixia.Aptixia.StackManager.VlanIdRange type=&quot;Ixia.Aptixia.StackManager.VlanIdRange&quot; objectid=&quot;90089481-45db-46c9-bb9b-639781adbde7&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;              &lt;/vlanRangeList&gt;&#13;&#10;              &lt;childrenList type=&quot;ListNode&quot;&gt;&#13;&#10;                &lt;Ixia.Aptixia.StackManager.IpV4V6Plugin type=&quot;Ixia.Aptixia.StackManager.IpV4V6Plugin&quot; objectid=&quot;2aa50b07-0df6-4bc2-8fcc-1ebb0f6169b5&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                  &lt;rangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                    &lt;Ixia.Aptixia.StackManager.IpV4V6Range type=&quot;Ixia.Aptixia.StackManager.IpV4V6Range&quot; objectid=&quot;ba01e944-e779-4a36-b3bd-26d1c3b0ef21&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                      &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;                      &lt;name type=&quot;String&quot;&gt;IP-R8&lt;/name&gt;&#13;&#10;                      &lt;ipType type=&quot;String&quot;&gt;IPv4&lt;/ipType&gt;&#13;&#10;                      &lt;ipAddress type=&quot;String&quot;&gt;192.40.40.20&lt;/ipAddress&gt;&#13;&#10;                      &lt;prefix type=&quot;Int&quot;&gt;24&lt;/prefix&gt;&#13;&#10;                      &lt;incrementBy type=&quot;String&quot;&gt;0.0.0.1&lt;/incrementBy&gt;&#13;&#10;                      &lt;count type=&quot;Int&quot;&gt;1&lt;/count&gt;&#13;&#10;                      &lt;autoCountEnabled type=&quot;Bool&quot;&gt;0&lt;/autoCountEnabled&gt;&#13;&#10;                      &lt;gatewayAddress type=&quot;String&quot;&gt;192.40.40.10&lt;/gatewayAddress&gt;&#13;&#10;                      &lt;gatewayIncrement type=&quot;String&quot;&gt;0.0.0.0&lt;/gatewayIncrement&gt;&#13;&#10;                      &lt;gatewayIncrementMode type=&quot;String&quot;&gt;perSubnet&lt;/gatewayIncrementMode&gt;&#13;&#10;                      &lt;enableGatewayArp type=&quot;Bool&quot;&gt;0&lt;/enableGatewayArp&gt;&#13;&#10;                      &lt;generateStatistics type=&quot;Bool&quot;&gt;0&lt;/generateStatistics&gt;&#13;&#10;                      &lt;mss type=&quot;Int&quot;&gt;1460&lt;/mss&gt;&#13;&#10;                      &lt;randomizeAddress type=&quot;Bool&quot;&gt;0&lt;/randomizeAddress&gt;&#13;&#10;                      &lt;randomizeSeed type=&quot;Int&quot;&gt;463911585&lt;/randomizeSeed&gt;&#13;&#10;                      &lt;autoMacGeneration type=&quot;Bool&quot;&gt;1&lt;/autoMacGeneration&gt;&#13;&#10;                      &lt;macRange type=&quot;Ixia.Aptixia.StackManager.MacRange&quot; objectid=&quot;95df1613-0cfc-45b5-a68e-e06ecd5b6cdf&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;                      &lt;vlanRange type=&quot;Ixia.Aptixia.StackManager.VlanIdRange&quot; objectid=&quot;90089481-45db-46c9-bb9b-639781adbde7&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;                      &lt;atmRange type=&quot;Ixia.Aptixia.StackManager.AtmRange&quot; objectid=&quot;00000000-0000-0000-0000-000000000000&quot; /&gt;&#13;&#10;                      &lt;pvcRange type=&quot;Ixia.Aptixia.StackManager.PvcRange&quot; objectid=&quot;00000000-0000-0000-0000-000000000000&quot; /&gt;&#13;&#10;                      &lt;autoIpTypeEnabled type=&quot;Bool&quot;&gt;0&lt;/autoIpTypeEnabled&gt;&#13;&#10;                      &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;8&lt;/ixLoadRestObjectId&gt;&#13;&#10;                    &lt;/Ixia.Aptixia.StackManager.IpV4V6Range&gt;&#13;&#10;                  &lt;/rangeList&gt;&#13;&#10;                  &lt;rangeGroups type=&quot;ListNode&quot;&gt;&#13;&#10;                    &lt;Ixia.Aptixia.StackManager.RangeGroup type=&quot;Ixia.Aptixia.StackManager.RangeGroup&quot; objectid=&quot;389909e0-120c-4ea7-857f-69e5981ba867&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;                      &lt;name type=&quot;String&quot;&gt;DistGroup1&lt;/name&gt;&#13;&#10;                      &lt;distribType type=&quot;Ixia.Aptixia.StackManager.RangeGroupSkeleton+eDistributionType&quot;&gt;0&lt;/distribType&gt;&#13;&#10;                      &lt;rangeList type=&quot;ListNode&quot;&gt;&#13;&#10;                        &lt;Ixia.Aptixia.StackManager.IpV4V6Range type=&quot;Ixia.Aptixia.StackManager.IpV4V6Range&quot; objectid=&quot;ba01e944-e779-4a36-b3bd-26d1c3b0ef21&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;                      &lt;/rangeList&gt;&#13;&#10;                      &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;4&lt;/ixLoadRestObjectId&gt;&#13;&#10;                    &lt;/Ixia.Aptixia.StackManager.RangeGroup&gt;&#13;&#10;                  &lt;/rangeGroups&gt;&#13;&#10;                  &lt;childrenList type=&quot;ListNode&quot; /&gt;&#13;&#10;                  &lt;extensionList type=&quot;ListNode&quot; /&gt;&#13;&#10;                  &lt;dscMode type=&quot;Bool&quot;&gt;0&lt;/dscMode&gt;&#13;&#10;                  &lt;name type=&quot;String&quot;&gt;IP-11&lt;/name&gt;&#13;&#10;                  &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;13&lt;/ixLoadRestObjectId&gt;&#13;&#10;                &lt;/Ixia.Aptixia.StackManager.IpV4V6Plugin&gt;&#13;&#10;              &lt;/childrenList&gt;&#13;&#10;              &lt;extensionList type=&quot;ListNode&quot; /&gt;&#13;&#10;              &lt;dscMode type=&quot;Bool&quot;&gt;0&lt;/dscMode&gt;&#13;&#10;              &lt;name type=&quot;String&quot;&gt;MAC/VLAN-11&lt;/name&gt;&#13;&#10;              &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;12&lt;/ixLoadRestObjectId&gt;&#13;&#10;            &lt;/Ixia.Aptixia.StackManager.L2EthernetPlugin&gt;&#13;&#10;          &lt;/childrenList&gt;&#13;&#10;          &lt;extensionList type=&quot;ListNode&quot; /&gt;&#13;&#10;          &lt;dscMode type=&quot;Bool&quot;&gt;0&lt;/dscMode&gt;&#13;&#10;          &lt;name type=&quot;String&quot;&gt;Ethernet-11&lt;/name&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;11&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/stack&gt;&#13;&#10;        &lt;globalPluginList type=&quot;ListNode&quot;&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.IxLoadSettingsPlugin type=&quot;Ixia.Aptixia.StackManager.IxLoadSettingsPlugin&quot; objectid=&quot;82f06e5c-e227-4c7b-9b89-c4495858f1c1&quot; version=&quot;1.0.0&quot;&gt;&#13;&#10;            &lt;teardownInterfaceWithUser type=&quot;Bool&quot;&gt;0&lt;/teardownInterfaceWithUser&gt;&#13;&#10;            &lt;interfaceBehavior type=&quot;Int&quot;&gt;0&lt;/interfaceBehavior&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;Settings-13&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;19&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.IxLoadSettingsPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.DnsPlugin type=&quot;Ixia.Aptixia.StackManager.DnsPlugin&quot; objectid=&quot;b4947db2-ab64-441c-81df-d6961888df99&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;domain type=&quot;String&quot; /&gt;&#13;&#10;            &lt;timeout type=&quot;Int&quot;&gt;30000&lt;/timeout&gt;&#13;&#10;            &lt;nameServerList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;searchList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;hostList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;DNS-13&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;20&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.DnsPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.FilterPlugin type=&quot;Ixia.Aptixia.StackManager.FilterPlugin&quot; objectid=&quot;76a42df0-2980-40cb-a135-8afd39ffa5a2&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;auto type=&quot;Bool&quot;&gt;1&lt;/auto&gt;&#13;&#10;            &lt;all type=&quot;Bool&quot;&gt;0&lt;/all&gt;&#13;&#10;            &lt;pppoecontrol type=&quot;Bool&quot;&gt;0&lt;/pppoecontrol&gt;&#13;&#10;            &lt;pppoenetwork type=&quot;Bool&quot;&gt;0&lt;/pppoenetwork&gt;&#13;&#10;            &lt;isis type=&quot;Bool&quot;&gt;0&lt;/isis&gt;&#13;&#10;            &lt;ip type=&quot;String&quot; /&gt;&#13;&#10;            &lt;tcp type=&quot;String&quot; /&gt;&#13;&#10;            &lt;udp type=&quot;String&quot; /&gt;&#13;&#10;            &lt;mac type=&quot;String&quot; /&gt;&#13;&#10;            &lt;icmp type=&quot;String&quot; /&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;Filter-11&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;21&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.FilterPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.TCPPlugin type=&quot;Ixia.Aptixia.StackManager.TCPPlugin&quot; objectid=&quot;34244aba-2937-43a8-900b-7821e096b69a&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;bestPerfSettings type=&quot;Bool&quot;&gt;0&lt;/bestPerfSettings&gt;&#13;&#10;            &lt;accept_ra_all type=&quot;Bool&quot;&gt;0&lt;/accept_ra_all&gt;&#13;&#10;            &lt;tcp_abort_on_overflow type=&quot;Bool&quot;&gt;0&lt;/tcp_abort_on_overflow&gt;&#13;&#10;            &lt;tcp_adv_win_scale type=&quot;Int&quot;&gt;2&lt;/tcp_adv_win_scale&gt;&#13;&#10;            &lt;tcp_app_win type=&quot;Int&quot;&gt;31&lt;/tcp_app_win&gt;&#13;&#10;            &lt;tcp_bic type=&quot;Int&quot;&gt;0&lt;/tcp_bic&gt;&#13;&#10;            &lt;tcp_bic_fast_convergence type=&quot;Int&quot;&gt;1&lt;/tcp_bic_fast_convergence&gt;&#13;&#10;            &lt;tcp_bic_low_window type=&quot;Int&quot;&gt;14&lt;/tcp_bic_low_window&gt;&#13;&#10;            &lt;tcp_dsack type=&quot;Bool&quot;&gt;1&lt;/tcp_dsack&gt;&#13;&#10;            &lt;tcp_ecn type=&quot;Bool&quot;&gt;0&lt;/tcp_ecn&gt;&#13;&#10;            &lt;tcp_fack type=&quot;Bool&quot;&gt;1&lt;/tcp_fack&gt;&#13;&#10;            &lt;tcp_fin_timeout type=&quot;Int&quot;&gt;60&lt;/tcp_fin_timeout&gt;&#13;&#10;            &lt;tcp_frto type=&quot;Int&quot;&gt;0&lt;/tcp_frto&gt;&#13;&#10;            &lt;tcp_keepalive_intvl type=&quot;Int&quot;&gt;7200&lt;/tcp_keepalive_intvl&gt;&#13;&#10;            &lt;tcp_keepalive_probes type=&quot;Int&quot;&gt;75&lt;/tcp_keepalive_probes&gt;&#13;&#10;            &lt;tcp_keepalive_time type=&quot;Int&quot;&gt;9&lt;/tcp_keepalive_time&gt;&#13;&#10;            &lt;tcp_low_latency type=&quot;Int&quot;&gt;0&lt;/tcp_low_latency&gt;&#13;&#10;            &lt;tcp_max_orphans type=&quot;Int&quot;&gt;8192&lt;/tcp_max_orphans&gt;&#13;&#10;            &lt;tcp_max_syn_backlog type=&quot;Int&quot;&gt;1024&lt;/tcp_max_syn_backlog&gt;&#13;&#10;            &lt;tcp_max_tw_buckets type=&quot;Int&quot;&gt;180000&lt;/tcp_max_tw_buckets&gt;&#13;&#10;            &lt;tcp_mem_low type=&quot;Int&quot;&gt;24576&lt;/tcp_mem_low&gt;&#13;&#10;            &lt;tcp_mem_pressure type=&quot;Int&quot;&gt;32768&lt;/tcp_mem_pressure&gt;&#13;&#10;            &lt;tcp_mem_high type=&quot;Int&quot;&gt;49152&lt;/tcp_mem_high&gt;&#13;&#10;            &lt;tcp_moderate_rcvbuf type=&quot;Int&quot;&gt;0&lt;/tcp_moderate_rcvbuf&gt;&#13;&#10;            &lt;tcp_no_metrics_save type=&quot;Bool&quot;&gt;0&lt;/tcp_no_metrics_save&gt;&#13;&#10;            &lt;tcp_orphan_retries type=&quot;Int&quot;&gt;0&lt;/tcp_orphan_retries&gt;&#13;&#10;            &lt;tcp_reordering type=&quot;Int&quot;&gt;3&lt;/tcp_reordering&gt;&#13;&#10;            &lt;tcp_retrans_collapse type=&quot;Bool&quot;&gt;1&lt;/tcp_retrans_collapse&gt;&#13;&#10;            &lt;tcp_retries1 type=&quot;Int&quot;&gt;3&lt;/tcp_retries1&gt;&#13;&#10;            &lt;tcp_retries2 type=&quot;Int&quot;&gt;15&lt;/tcp_retries2&gt;&#13;&#10;            &lt;tcp_rfc1337 type=&quot;Bool&quot;&gt;0&lt;/tcp_rfc1337&gt;&#13;&#10;            &lt;tcp_rmem_min type=&quot;Int&quot;&gt;4096&lt;/tcp_rmem_min&gt;&#13;&#10;            &lt;tcp_rmem_default type=&quot;Int&quot;&gt;1024&lt;/tcp_rmem_default&gt;&#13;&#10;            &lt;tcp_rmem_max type=&quot;Int&quot;&gt;262144&lt;/tcp_rmem_max&gt;&#13;&#10;            &lt;tcp_sack type=&quot;Bool&quot;&gt;1&lt;/tcp_sack&gt;&#13;&#10;            &lt;tcp_stdurg type=&quot;Bool&quot;&gt;0&lt;/tcp_stdurg&gt;&#13;&#10;            &lt;tcp_synack_retries type=&quot;Int&quot;&gt;5&lt;/tcp_synack_retries&gt;&#13;&#10;            &lt;tcp_syn_retries type=&quot;Int&quot;&gt;5&lt;/tcp_syn_retries&gt;&#13;&#10;            &lt;tcp_timestamps type=&quot;Bool&quot;&gt;1&lt;/tcp_timestamps&gt;&#13;&#10;            &lt;tcp_tw_recycle type=&quot;Bool&quot;&gt;1&lt;/tcp_tw_recycle&gt;&#13;&#10;            &lt;tcp_tw_reuse type=&quot;Bool&quot;&gt;0&lt;/tcp_tw_reuse&gt;&#13;&#10;            &lt;tcp_vegas_alpha type=&quot;Int&quot;&gt;2&lt;/tcp_vegas_alpha&gt;&#13;&#10;            &lt;tcp_vegas_beta type=&quot;Int&quot;&gt;6&lt;/tcp_vegas_beta&gt;&#13;&#10;            &lt;tcp_vegas_cong_avoid type=&quot;Int&quot;&gt;0&lt;/tcp_vegas_cong_avoid&gt;&#13;&#10;            &lt;tcp_vegas_gamma type=&quot;Int&quot;&gt;2&lt;/tcp_vegas_gamma&gt;&#13;&#10;            &lt;tcp_westwood type=&quot;Int&quot;&gt;0&lt;/tcp_westwood&gt;&#13;&#10;            &lt;tcp_window_scaling type=&quot;Bool&quot;&gt;0&lt;/tcp_window_scaling&gt;&#13;&#10;            &lt;ip_no_pmtu_disc type=&quot;Bool&quot;&gt;1&lt;/ip_no_pmtu_disc&gt;&#13;&#10;            &lt;tcp_wmem_min type=&quot;Int&quot;&gt;4096&lt;/tcp_wmem_min&gt;&#13;&#10;            &lt;tcp_wmem_default type=&quot;Int&quot;&gt;1024&lt;/tcp_wmem_default&gt;&#13;&#10;            &lt;tcp_wmem_max type=&quot;Int&quot;&gt;262144&lt;/tcp_wmem_max&gt;&#13;&#10;            &lt;tcp_ipfrag_time type=&quot;Int&quot;&gt;30&lt;/tcp_ipfrag_time&gt;&#13;&#10;            &lt;tcp_port_min type=&quot;Int&quot;&gt;1024&lt;/tcp_port_min&gt;&#13;&#10;            &lt;tcp_port_max type=&quot;Int&quot;&gt;65535&lt;/tcp_port_max&gt;&#13;&#10;            &lt;tcp_rto_min type=&quot;Int&quot;&gt;1000&lt;/tcp_rto_min&gt;&#13;&#10;            &lt;tcp_rto_max type=&quot;Int&quot;&gt;120000&lt;/tcp_rto_max&gt;&#13;&#10;            &lt;tcp_tw_rfc1323_strict type=&quot;Bool&quot;&gt;0&lt;/tcp_tw_rfc1323_strict&gt;&#13;&#10;            &lt;udp_port_randomization type=&quot;Bool&quot;&gt;0&lt;/udp_port_randomization&gt;&#13;&#10;            &lt;disable_min_max_buffer_size type=&quot;Bool&quot;&gt;1&lt;/disable_min_max_buffer_size&gt;&#13;&#10;            &lt;llm_hdr_gap type=&quot;Int&quot;&gt;8&lt;/llm_hdr_gap&gt;&#13;&#10;            &lt;llm_hdr_gap_ns type=&quot;Int&quot;&gt;10&lt;/llm_hdr_gap_ns&gt;&#13;&#10;            &lt;inter_packet_granular_delay type=&quot;Double&quot;&gt;0&lt;/inter_packet_granular_delay&gt;&#13;&#10;            &lt;delayed_acks type=&quot;Bool&quot;&gt;1&lt;/delayed_acks&gt;&#13;&#10;            &lt;accept_ra_default type=&quot;Bool&quot;&gt;0&lt;/accept_ra_default&gt;&#13;&#10;            &lt;rps_needed type=&quot;Bool&quot;&gt;0&lt;/rps_needed&gt;&#13;&#10;            &lt;delayed_acks_segments type=&quot;Int&quot;&gt;0&lt;/delayed_acks_segments&gt;&#13;&#10;            &lt;delayed_acks_timeout type=&quot;Int&quot;&gt;0&lt;/delayed_acks_timeout&gt;&#13;&#10;            &lt;tcp_large_icwnd type=&quot;Int&quot;&gt;0&lt;/tcp_large_icwnd&gt;&#13;&#10;            &lt;tcp_mgmt_rmem type=&quot;Int&quot;&gt;87380&lt;/tcp_mgmt_rmem&gt;&#13;&#10;            &lt;tcp_mgmt_wmem type=&quot;Int&quot;&gt;32768&lt;/tcp_mgmt_wmem&gt;&#13;&#10;            &lt;adjust_tcp_buffers type=&quot;Bool&quot;&gt;1&lt;/adjust_tcp_buffers&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;TCP-13&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;22&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.TCPPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.GratArpPlugin type=&quot;Ixia.Aptixia.StackManager.GratArpPlugin&quot; objectid=&quot;2551de11-5f59-49dc-92be-266b8bf8fe90&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;            &lt;forwardGratArp type=&quot;Bool&quot;&gt;0&lt;/forwardGratArp&gt;&#13;&#10;            &lt;rateControlEnabled type=&quot;Bool&quot;&gt;0&lt;/rateControlEnabled&gt;&#13;&#10;            &lt;maxFramesPerSecond type=&quot;Int&quot;&gt;0&lt;/maxFramesPerSecond&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;GratARP-11&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;23&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.GratArpPlugin&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.MeshingPlugin type=&quot;Ixia.Aptixia.StackManager.MeshingPlugin&quot; objectid=&quot;6d9cab2d-989f-4bad-9595-ffefba7bc84a&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;trafficMaps type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;activityRangeMapInfoList type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;Meshing-5&lt;/name&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;24&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.MeshingPlugin&gt;&#13;&#10;        &lt;/globalPluginList&gt;&#13;&#10;        &lt;portList type=&quot;Ixia.RpFramework.Server.Core.ShadowedPropertyStringList&quot; /&gt;&#13;&#10;        &lt;typeSpecificData type=&quot;ListNode&quot;&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.IPSecPortGroupData type=&quot;Ixia.Aptixia.StackManager.IPSecPortGroupData&quot; objectid=&quot;dd86f951-1b71-4f94-930e-1f690af65f5a&quot; version=&quot;6.70.0&quot;&gt;&#13;&#10;            &lt;role type=&quot;String&quot;&gt;Initiator&lt;/role&gt;&#13;&#10;            &lt;associates type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;overrideGlobalOptions type=&quot;Bool&quot;&gt;0&lt;/overrideGlobalOptions&gt;&#13;&#10;            &lt;useMaxInitiationRate type=&quot;Bool&quot;&gt;0&lt;/useMaxInitiationRate&gt;&#13;&#10;            &lt;maxInitiationRate type=&quot;Int&quot;&gt;50&lt;/maxInitiationRate&gt;&#13;&#10;            &lt;useMaxPendingTunnels type=&quot;Bool&quot;&gt;0&lt;/useMaxPendingTunnels&gt;&#13;&#10;            &lt;maxPendingTunnels type=&quot;Int&quot;&gt;50&lt;/maxPendingTunnels&gt;&#13;&#10;            &lt;teardownRate type=&quot;Int&quot;&gt;10&lt;/teardownRate&gt;&#13;&#10;            &lt;enableESPPerStreamStats type=&quot;Bool&quot;&gt;0&lt;/enableESPPerStreamStats&gt;&#13;&#10;            &lt;enableESPReplayStats type=&quot;Bool&quot;&gt;0&lt;/enableESPReplayStats&gt;&#13;&#10;            &lt;activities type=&quot;ListNode&quot; /&gt;&#13;&#10;            &lt;pcpuLogLevel type=&quot;String&quot;&gt;0&lt;/pcpuLogLevel&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;4&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.IPSecPortGroupData&gt;&#13;&#10;        &lt;/typeSpecificData&gt;&#13;&#10;        &lt;virtualMode type=&quot;Bool&quot;&gt;0&lt;/virtualMode&gt;&#13;&#10;        &lt;allowedVirtualModeTypes type=&quot;Ixia.RpFramework.Server.Core.ShadowedPropertyStringList&quot; /&gt;&#13;&#10;        &lt;doOwnership type=&quot;Bool&quot;&gt;0&lt;/doOwnership&gt;&#13;&#10;        &lt;branchToNicMap type=&quot;ListNode&quot; /&gt;&#13;&#10;        &lt;cpuAggregation type=&quot;Bool&quot;&gt;0&lt;/cpuAggregation&gt;&#13;&#10;        &lt;activePort type=&quot;String&quot; /&gt;&#13;&#10;        &lt;networkLayersManager type=&quot;Ixia.Aptixia.StackManager.NetworkLayersManager&quot; objectid=&quot;2dc65e0c-3a5a-4c59-a3a7-d1cf336fa422&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;8&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/networkLayersManager&gt;&#13;&#10;        &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;8&lt;/ixLoadRestObjectId&gt;&#13;&#10;      &lt;/Ixia.Aptixia.StackManager.PortGroup&gt;&#13;&#10;    &lt;/portGroupList&gt;&#13;&#10;    &lt;externalProperties type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyManager&quot; objectid=&quot;1f2452bf-e52a-4db2-ba47-e5cc8bf61b5e&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;      &lt;properties type=&quot;ListNode&quot;&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;145671ff-93a5-4ecc-8c83-59b2c3c67be9&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;IxCatLTEUEUeRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;9f07a941-ad2f-46b0-8c75-911862a21039&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;SixRdRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;a221ab5c-faae-4940-bfad-5d41d44f1427&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;L2tpRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;d811442b-bfb8-42f0-bbf8-6bdb6fc9b66b&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;DHCPServerRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;f252cff3-b919-4e74-9f62-9e9c5ab5d324&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;MobileSubscribersRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;500dfc8b-2e6a-401f-84c0-f6907f60c00e&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;EGTPSgsnS3RangeUe&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;693cb176-f3d8-4073-8a02-fabdc0bdd3fb&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;EGTPRange_SGW&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;ec983bf9-07f0-46b2-99a0-354114f42501&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;EmulatedRouterRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;5d0f0eb8-40af-4292-8ff2-a57e7903601d&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;PppoxRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;653fae09-ba19-443c-8f8b-9483c0b86b9a&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;GTPNGAPRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;c886be8c-c207-4bb4-90d5-17be54556d58&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;IxCatRNCIuPSUeRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;00e75214-5166-406b-90e5-2b83567ae5cf&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;GTPNGUERange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;50d10ee7-45ce-46d2-ae8d-ecd3b1806067&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;EGTPUERange_S5S8_SGW&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;c2f310a4-6ea4-4459-be3b-f3b3365c590a&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;GTPGRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;7e458bed-5e36-42d6-812d-3794be52766e&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;EGTPPcrfRange_S5S8_PGW&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;7d225fda-6432-4de3-9750-c19bbc957703&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;DSLiteRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;e25dd669-ffc5-493d-a2b5-fd5627bf2ee8&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;EGTPSGSNRangeUe&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;7ac0b7d4-6df9-4e1f-86d2-f0a494b3f20b&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;SlaacRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;25699a2c-ab22-417b-9072-894523e98008&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;EGTPUERange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;482a10c3-0ac7-44d9-9fa9-b43ba3a9901d&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;DHCPRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;a0f03753-923d-4421-8c4f-0ed78f00fc44&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;AtmRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;fb5cd68e-b4b0-4fd4-ae18-4100c0035642&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;IxCatMMEApnRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;62677b6a-080e-4cc3-919b-71fa90ae410f&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;IxCatENodeBUuApnRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;2e0fd6e3-470e-48df-ab8d-cc21b9d80393&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;GTPSUERange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;175f3104-0d2a-44f9-b712-fed3b170f8cb&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;IpV4V6Range&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;d1f37e1e-db44-4bac-acb8-b242dee8e371&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;MacRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;61ccdebc-84e6-464d-be14-2b3ddedab9d2&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;DualStackIPRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;d0678cd8-998e-42ab-8f0d-bfcb5370eac2&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;EGTPUERange_S2a_TWAN&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;d8350364-51c6-4a1b-af9f-72c9c235a636&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;IxCatSGSNIuPSApnRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;613d02a1-db1e-415d-b4bb-8b73b4477cf4&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;IxCatENodeBSimUeRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;9a41f718-b55e-44c7-a0cc-b1fcf8204c20&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;S6dRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;4c26fe62-a63d-4c40-8e15-c58ad8fba8d0&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;UERangeBase&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;5c2ca63f-3335-4ab7-963e-440817448538&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;EGTPMmeS10RangeUe&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;51a5eccc-a68d-4730-8a48-32019c547c28&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;S6aRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;3010c4ad-f31e-4676-9e61-bb25cf9c1bbb&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;BmScRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;ef1677e4-f390-4a78-b61a-f7650cf5faea&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;MBmsGwRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;24322b98-7a2a-4d2d-a4ee-4cde0f0e8b64&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;PptpRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalPropertyInfo type=&quot;Ixia.Aptixia.StackManager.ExternalPropertyInfo&quot; objectid=&quot;c648ad96-ef63-4c6d-b77e-586fece09b3b&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;targetType type=&quot;String&quot;&gt;EGTPPMIPHostRange&lt;/targetType&gt;&#13;&#10;          &lt;valueType type=&quot;String&quot;&gt;ExternalValueBoolean&lt;/valueType&gt;&#13;&#10;          &lt;description type=&quot;String&quot;&gt;Enable collection of interface statistics on this range&lt;/description&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalPropertyInfo&gt;&#13;&#10;      &lt;/properties&gt;&#13;&#10;      &lt;values type=&quot;ListNode&quot;&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalProperty type=&quot;Ixia.Aptixia.StackManager.ExternalProperty&quot; objectid=&quot;6804ae67-3bd7-471b-8796-ee1e4773c2f1&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;target type=&quot;Ixia.Aptixia.StackManager.IpV4V6Range&quot; objectid=&quot;a3559674-8d95-4020-90b3-b42eacaef105&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;          &lt;value type=&quot;Ixia.Aptixia.StackManager.ExternalValueBoolean&quot; objectid=&quot;7efcd429-2c48-41bd-bdc5-489dbfcfc49a&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;value type=&quot;Bool&quot;&gt;0&lt;/value&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/value&gt;&#13;&#10;          &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalProperty&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalProperty type=&quot;Ixia.Aptixia.StackManager.ExternalProperty&quot; objectid=&quot;a63d8276-65bc-4bc2-8202-6461c6399ef9&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;target type=&quot;Ixia.Aptixia.StackManager.IpV4V6Range&quot; objectid=&quot;1d9bf537-0c3d-4fdf-9b85-0a622cc77649&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;          &lt;value type=&quot;Ixia.Aptixia.StackManager.ExternalValueBoolean&quot; objectid=&quot;09d7b134-2921-4759-bbdb-ff3a5a1966d7&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;value type=&quot;Bool&quot;&gt;0&lt;/value&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/value&gt;&#13;&#10;          &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalProperty&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalProperty type=&quot;Ixia.Aptixia.StackManager.ExternalProperty&quot; objectid=&quot;0cd9f099-242e-4b03-965f-d343c60181e6&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;target type=&quot;Ixia.Aptixia.StackManager.MacRange&quot; objectid=&quot;3011c8a8-a9fd-4b76-a27d-91948113ed4f&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;          &lt;value type=&quot;Ixia.Aptixia.StackManager.ExternalValueBoolean&quot; objectid=&quot;503aa008-2481-419f-a223-c90b2c25c17e&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;value type=&quot;Bool&quot;&gt;0&lt;/value&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;3&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/value&gt;&#13;&#10;          &lt;enabled type=&quot;Bool&quot;&gt;0&lt;/enabled&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;3&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalProperty&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalProperty type=&quot;Ixia.Aptixia.StackManager.ExternalProperty&quot; objectid=&quot;0b8d2c01-19ac-4f28-924e-660676d978da&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;target type=&quot;Ixia.Aptixia.StackManager.MacRange&quot; objectid=&quot;f91c9f52-8150-4d0f-b657-498ed241835c&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;          &lt;value type=&quot;Ixia.Aptixia.StackManager.ExternalValueBoolean&quot; objectid=&quot;41c694b3-bb55-48fe-9604-8b003540242f&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;value type=&quot;Bool&quot;&gt;0&lt;/value&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;4&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/value&gt;&#13;&#10;          &lt;enabled type=&quot;Bool&quot;&gt;0&lt;/enabled&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;4&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalProperty&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalProperty type=&quot;Ixia.Aptixia.StackManager.ExternalProperty&quot; objectid=&quot;dc4d759f-e4ac-4498-9296-92fd26a83bf9&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;target type=&quot;Ixia.Aptixia.StackManager.IpV4V6Range&quot; objectid=&quot;0304987f-176a-4aea-a3cb-c117279fe0ea&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;          &lt;value type=&quot;Ixia.Aptixia.StackManager.ExternalValueBoolean&quot; objectid=&quot;3b496ea9-e90a-48e5-b01a-adfeb9940e5e&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;value type=&quot;Bool&quot;&gt;0&lt;/value&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;5&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/value&gt;&#13;&#10;          &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;5&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalProperty&gt;&#13;&#10;        &lt;Ixia.Aptixia.StackManager.ExternalProperty type=&quot;Ixia.Aptixia.StackManager.ExternalProperty&quot; objectid=&quot;72bbb3e6-5bae-448e-bcda-ba87a76fa477&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;          &lt;propertyName type=&quot;String&quot;&gt;Publish Statistics&lt;/propertyName&gt;&#13;&#10;          &lt;target type=&quot;Ixia.Aptixia.StackManager.IpV4V6Range&quot; objectid=&quot;ba01e944-e779-4a36-b3bd-26d1c3b0ef21&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;          &lt;value type=&quot;Ixia.Aptixia.StackManager.ExternalValueBoolean&quot; objectid=&quot;7c3ea465-5392-4894-b8a4-0138f48acf8e&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;            &lt;value type=&quot;Bool&quot;&gt;0&lt;/value&gt;&#13;&#10;            &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;6&lt;/ixLoadRestObjectId&gt;&#13;&#10;          &lt;/value&gt;&#13;&#10;          &lt;enabled type=&quot;Bool&quot;&gt;1&lt;/enabled&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;6&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/Ixia.Aptixia.StackManager.ExternalProperty&gt;&#13;&#10;      &lt;/values&gt;&#13;&#10;      &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;    &lt;/externalProperties&gt;&#13;&#10;    &lt;availableNetworkTimelines type=&quot;ListNode&quot; /&gt;&#13;&#10;    &lt;typeSpecificData type=&quot;ListNode&quot;&gt;&#13;&#10;      &lt;Ixia.Aptixia.StackManager.MacSessionData type=&quot;Ixia.Aptixia.StackManager.MacSessionData&quot; objectid=&quot;a9c7aa59-e015-4ffd-bb82-5d877ae9c1a8&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;        &lt;duplicateCheckingScope type=&quot;Ixia.Aptixia.StackManager.MacSessionDataSkeleton+eMacValidationOptions&quot;&gt;2&lt;/duplicateCheckingScope&gt;&#13;&#10;        &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;      &lt;/Ixia.Aptixia.StackManager.MacSessionData&gt;&#13;&#10;      &lt;Ixia.Aptixia.StackManager.IpSessionData type=&quot;Ixia.Aptixia.StackManager.IpSessionData&quot; objectid=&quot;34a78d72-1fc5-4875-9fe1-b4db66b1b4c4&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;        &lt;duplicateCheckingScope type=&quot;Ixia.Aptixia.StackManager.IpSessionDataSkeleton+eIpValidationOptions&quot;&gt;2&lt;/duplicateCheckingScope&gt;&#13;&#10;        &lt;enableGatewayArp type=&quot;Bool&quot;&gt;0&lt;/enableGatewayArp&gt;&#13;&#10;        &lt;gatewayArpRequestRate type=&quot;Int&quot;&gt;300&lt;/gatewayArpRequestRate&gt;&#13;&#10;        &lt;maxOutstandingGatewayArpRequests type=&quot;Int&quot;&gt;300&lt;/maxOutstandingGatewayArpRequests&gt;&#13;&#10;        &lt;ignoreUnresolvedIPs type=&quot;Bool&quot;&gt;0&lt;/ignoreUnresolvedIPs&gt;&#13;&#10;        &lt;sendAllRequests type=&quot;Bool&quot;&gt;0&lt;/sendAllRequests&gt;&#13;&#10;        &lt;individualARPTimeOut type=&quot;Int&quot;&gt;500&lt;/individualARPTimeOut&gt;&#13;&#10;        &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;2&lt;/ixLoadRestObjectId&gt;&#13;&#10;      &lt;/Ixia.Aptixia.StackManager.IpSessionData&gt;&#13;&#10;      &lt;Ixia.Aptixia.StackManager.IxLoadSessionData type=&quot;Ixia.Aptixia.StackManager.IxLoadSessionData&quot; objectid=&quot;1e24447f-69f1-4030-8b2d-25a18c7160ca&quot; version=&quot;1.0.0&quot;&gt;&#13;&#10;        &lt;portGroupList type=&quot;ListNode&quot;&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.PortGroup type=&quot;Ixia.Aptixia.StackManager.PortGroup&quot; objectid=&quot;669af012-d572-439d-9c70-cfbacea0fe7f&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.PortGroup type=&quot;Ixia.Aptixia.StackManager.PortGroup&quot; objectid=&quot;c4ecfc60-64ac-4dc2-9410-e0f58d84f229&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.PortGroup type=&quot;Ixia.Aptixia.StackManager.PortGroup&quot; objectid=&quot;865be042-32d5-426a-9e75-0908c943801f&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.PortGroup type=&quot;Ixia.Aptixia.StackManager.PortGroup&quot; objectid=&quot;6c1a9dc4-bc8e-48ad-982f-956b0561e947&quot; version=&quot;6.70.420&quot; /&gt;&#13;&#10;        &lt;/portGroupList&gt;&#13;&#10;        &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;      &lt;/Ixia.Aptixia.StackManager.IxLoadSessionData&gt;&#13;&#10;      &lt;Ixia.Aptixia.StackManager.ImpairSessionData type=&quot;Ixia.Aptixia.StackManager.ImpairSessionData&quot; objectid=&quot;94b53c2c-0747-41c2-838d-0e0e15f31766&quot; version=&quot;6.70.13&quot;&gt;&#13;&#10;        &lt;profiles type=&quot;ListNode&quot;&gt;&#13;&#10;          &lt;Ixia.Aptixia.StackManager.ImpairProfile type=&quot;Ixia.Aptixia.StackManager.ImpairProfile&quot; objectid=&quot;90dd3511-93c1-49fa-8e38-db774db9fe17&quot; version=&quot;6.70.13&quot;&gt;&#13;&#10;            &lt;name type=&quot;String&quot;&gt;DefaultProfile&lt;/name&gt;&#13;&#10;            &lt;defaultp type=&quot;Bool&quot;&gt;1&lt;/defaultp&gt;&#13;&#10;            &lt;seed type=&quot;Int&quot;&gt;0&lt;/seed&gt;&#13;&#10;            &lt;addDelay type=&quot;Bool&quot;&gt;1&lt;/addDelay&gt;&#13;&#10;            &lt;delay type=&quot;Int&quot;&gt;20&lt;/delay&gt;&#13;&#10;            &lt;jitter type=&quot;Int&quot;&gt;0&lt;/jitter&gt;&#13;&#10;            &lt;addDrop type=&quot;Bool&quot;&gt;0&lt;/addDrop&gt;&#13;&#10;            &lt;drop type=&quot;Double&quot;&gt;10&lt;/drop&gt;&#13;&#10;            &lt;addDropSequence type=&quot;Bool&quot;&gt;0&lt;/addDropSequence&gt;&#13;&#10;            &lt;dropSequenceSkip type=&quot;Int&quot;&gt;10&lt;/dropSequenceSkip&gt;&#13;&#10;            &lt;dropSequenceLength type=&quot;Int&quot;&gt;1&lt;/dropSequenceLength&gt;&#13;&#10;            &lt;addReorder type=&quot;Bool&quot;&gt;0&lt;/addReorder&gt;&#13;&#10;            &lt;gap type=&quot;Int&quot;&gt;10&lt;/gap&gt;&#13;&#10;            &lt;reorder type=&quot;Int&quot;&gt;20&lt;/reorder&gt;&#13;&#10;            &lt;reorderLength type=&quot;Int&quot;&gt;1&lt;/reorderLength&gt;&#13;&#10;            &lt;addReorderPI type=&quot;Bool&quot;&gt;0&lt;/addReorderPI&gt;&#13;&#10;            &lt;reorderPISkip type=&quot;Int&quot;&gt;10&lt;/reorderPISkip&gt;&#13;&#10;            &lt;reorderPILength type=&quot;Int&quot;&gt;1&lt;/reorderPILength&gt;&#13;&#10;            &lt;reorderPIInterval type=&quot;Int&quot;&gt;1&lt;/reorderPIInterval&gt;&#13;&#10;            &lt;reorderPITimeout type=&quot;Int&quot;&gt;1000&lt;/reorderPITimeout&gt;&#13;&#10;            &lt;addDuplicate type=&quot;Bool&quot;&gt;0&lt;/addDuplicate&gt;&#13;&#10;            &lt;duplicate type=&quot;Double&quot;&gt;10&lt;/duplicate&gt;&#13;&#10;            &lt;addFragment type=&quot;Bool&quot;&gt;0&lt;/addFragment&gt;&#13;&#10;            &lt;fragment type=&quot;Double&quot;&gt;10&lt;/fragment&gt;&#13;&#10;            &lt;mtu type=&quot;Int&quot;&gt;1000&lt;/mtu&gt;&#13;&#10;            &lt;addFragmentSequence type=&quot;Bool&quot;&gt;0&lt;/addFragmentSequence&gt;&#13;&#10;            &lt;fragmentSequenceSkip type=&quot;Int&quot;&gt;10&lt;/fragmentSequenceSkip&gt;&#13;&#10;            &lt;fragmentSequenceLength type=&quot;Int&quot;&gt;1&lt;/fragmentSequenceLength&gt;&#13;&#10;            &lt;mtuSequence type=&quot;Int&quot;&gt;1000&lt;/mtuSequence&gt;&#13;&#10;            &lt;sendFragmentsInReverseOrder type=&quot;Bool&quot;&gt;0&lt;/sendFragmentsInReverseOrder&gt;&#13;&#10;            &lt;sendFirstFragmentOnly type=&quot;Bool&quot;&gt;0&lt;/sendFirstFragmentOnly&gt;&#13;&#10;            &lt;sendOverlappingFragments type=&quot;Bool&quot;&gt;0&lt;/sendOverlappingFragments&gt;&#13;&#10;            &lt;addBandwidth type=&quot;Bool&quot;&gt;0&lt;/addBandwidth&gt;&#13;&#10;            &lt;bandwidth type=&quot;Double&quot;&gt;1&lt;/bandwidth&gt;&#13;&#10;            &lt;bandwidthUnits type=&quot;String&quot;&gt;mbps&lt;/bandwidthUnits&gt;&#13;&#10;            &lt;addBandwidthIn type=&quot;Bool&quot;&gt;0&lt;/addBandwidthIn&gt;&#13;&#10;            &lt;bandwidthIn type=&quot;Double&quot;&gt;1&lt;/bandwidthIn&gt;&#13;&#10;            &lt;bandwidthUnitsIn type=&quot;String&quot;&gt;mbps&lt;/bandwidthUnitsIn&gt;&#13;&#10;            &lt;destinationIp type=&quot;String&quot;&gt;any&lt;/destinationIp&gt;&#13;&#10;            &lt;sourceIp type=&quot;String&quot;&gt;any&lt;/sourceIp&gt;&#13;&#10;            &lt;sourcePort type=&quot;Int&quot;&gt;0&lt;/sourcePort&gt;&#13;&#10;            &lt;destinationPort type=&quot;Int&quot;&gt;0&lt;/destinationPort&gt;&#13;&#10;            &lt;protocol type=&quot;String&quot;&gt;any&lt;/protocol&gt;&#13;&#10;            &lt;typeOfService type=&quot;String&quot;&gt;any&lt;/typeOfService&gt;&#13;&#10;            &lt;addTcpFlagsFilter type=&quot;Bool&quot;&gt;0&lt;/addTcpFlagsFilter&gt;&#13;&#10;            &lt;selectTcpFlags type=&quot;String&quot;&gt;SYN;RST;ACK&lt;/selectTcpFlags&gt;&#13;&#10;            &lt;expectTcpFlags type=&quot;String&quot;&gt;SYN&lt;/expectTcpFlags&gt;&#13;&#10;            &lt;impairOrder type=&quot;String&quot;&gt;Delay;Drop;DropSeq;Reorder;ReorderPI;Duplicate;Fragment;FragmentSeq;Bandwidth&lt;/impairOrder&gt;&#13;&#10;          &lt;/Ixia.Aptixia.StackManager.ImpairProfile&gt;&#13;&#10;        &lt;/profiles&gt;&#13;&#10;        &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;      &lt;/Ixia.Aptixia.StackManager.ImpairSessionData&gt;&#13;&#10;      &lt;Ixia.Aptixia.StackManager.IPSecSessionData type=&quot;Ixia.Aptixia.StackManager.IPSecSessionData&quot; objectid=&quot;bd2f0ea4-4278-49c8-9600-18cd2c8ed639&quot; version=&quot;6.70.0&quot;&gt;&#13;&#10;        &lt;ipsecTunnelSetup type=&quot;Ixia.Aptixia.StackManager.IPSecTunnelSetup&quot; objectid=&quot;1bacc8a0-dda0-4e0c-b013-4d8618dc80b6&quot; version=&quot;6.70.0&quot;&gt;&#13;&#10;          &lt;tunnelSetupTimeout type=&quot;Int&quot;&gt;30&lt;/tunnelSetupTimeout&gt;&#13;&#10;          &lt;tunnelRetransmissionTimeout type=&quot;Int&quot;&gt;30&lt;/tunnelRetransmissionTimeout&gt;&#13;&#10;          &lt;numRetries type=&quot;Int&quot;&gt;0&lt;/numRetries&gt;&#13;&#10;          &lt;retryInterval type=&quot;Int&quot;&gt;10&lt;/retryInterval&gt;&#13;&#10;          &lt;retryDelay type=&quot;Int&quot;&gt;10&lt;/retryDelay&gt;&#13;&#10;          &lt;testType type=&quot;String&quot;&gt;P2D&lt;/testType&gt;&#13;&#10;          &lt;logLevel type=&quot;String&quot;&gt;3&lt;/logLevel&gt;&#13;&#10;          &lt;sendCiscoVid type=&quot;Bool&quot;&gt;0&lt;/sendCiscoVid&gt;&#13;&#10;          &lt;useMaxInitiationRate type=&quot;Bool&quot;&gt;0&lt;/useMaxInitiationRate&gt;&#13;&#10;          &lt;useMaxPendingTunnels type=&quot;Bool&quot;&gt;0&lt;/useMaxPendingTunnels&gt;&#13;&#10;          &lt;enableRekey type=&quot;Bool&quot;&gt;1&lt;/enableRekey&gt;&#13;&#10;          &lt;rekeyRetries type=&quot;Int&quot;&gt;3&lt;/rekeyRetries&gt;&#13;&#10;          &lt;rekeyFuzzPercentage type=&quot;Int&quot;&gt;0&lt;/rekeyFuzzPercentage&gt;&#13;&#10;          &lt;rekeyMargin type=&quot;Int&quot;&gt;10&lt;/rekeyMargin&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;3&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/ipsecTunnelSetup&gt;&#13;&#10;        &lt;ipsecCertificates type=&quot;Ixia.Aptixia.StackManager.IPSecCertificates&quot; objectid=&quot;2e324324-bf74-4ad3-afbb-62e44f01c31a&quot; version=&quot;6.70.0&quot;&gt;&#13;&#10;          &lt;uniqueCert type=&quot;Bool&quot;&gt;0&lt;/uniqueCert&gt;&#13;&#10;          &lt;certSource type=&quot;String&quot;&gt;kNewCert&lt;/certSource&gt;&#13;&#10;          &lt;caURL type=&quot;String&quot; /&gt;&#13;&#10;          &lt;caDN type=&quot;String&quot; /&gt;&#13;&#10;          &lt;certSubjectDN type=&quot;String&quot; /&gt;&#13;&#10;          &lt;certSubjectAltDN type=&quot;String&quot; /&gt;&#13;&#10;          &lt;remoteIkeId type=&quot;String&quot; /&gt;&#13;&#10;          &lt;bitSize type=&quot;String&quot;&gt;k512&lt;/bitSize&gt;&#13;&#10;          &lt;saveCert type=&quot;Bool&quot;&gt;1&lt;/saveCert&gt;&#13;&#10;          &lt;cacheCertFolder type=&quot;String&quot;&gt;C:\Program Files\Ixia\CachedCerts&lt;/cacheCertFolder&gt;&#13;&#10;          &lt;certParentFolder type=&quot;String&quot;&gt;C:\Program Files\Ixia\CachedCerts&lt;/certParentFolder&gt;&#13;&#10;          &lt;certNumber type=&quot;String&quot; /&gt;&#13;&#10;          &lt;caCertNumber type=&quot;String&quot; /&gt;&#13;&#10;          &lt;earlyExpDate type=&quot;String&quot; /&gt;&#13;&#10;          &lt;lateExpDate type=&quot;String&quot; /&gt;&#13;&#10;          &lt;usePerRangeCertNameExp type=&quot;Bool&quot;&gt;0&lt;/usePerRangeCertNameExp&gt;&#13;&#10;          &lt;checkCrl type=&quot;Bool&quot;&gt;0&lt;/checkCrl&gt;&#13;&#10;          &lt;crlOverrideEnable type=&quot;Bool&quot;&gt;0&lt;/crlOverrideEnable&gt;&#13;&#10;          &lt;crlOverrideUrl type=&quot;String&quot; /&gt;&#13;&#10;          &lt;checkOcsp type=&quot;Bool&quot;&gt;0&lt;/checkOcsp&gt;&#13;&#10;          &lt;ocspOverrideEnable type=&quot;Bool&quot;&gt;0&lt;/ocspOverrideEnable&gt;&#13;&#10;          &lt;ocspOverrideUrl type=&quot;String&quot; /&gt;&#13;&#10;          &lt;unknownIsRevoked type=&quot;Bool&quot;&gt;0&lt;/unknownIsRevoked&gt;&#13;&#10;          &lt;certProto type=&quot;String&quot;&gt;kSCEP&lt;/certProto&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;3&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/ipsecCertificates&gt;&#13;&#10;        &lt;ipsecCertManager type=&quot;Ixia.Aptixia.StackManager.IPSecCertManager&quot; objectid=&quot;f3dc4ef0-e9a1-48a2-b69f-c5d2b485e897&quot; version=&quot;6.70.0&quot;&gt;&#13;&#10;          &lt;caURL type=&quot;String&quot; /&gt;&#13;&#10;          &lt;caDN type=&quot;String&quot;&gt;CN=RootCA,C=RO,L=Bucharest,O=Ixia,OU=IxLoad,IP:201.121.87.2,email:ixia@ixiacom.com&lt;/caDN&gt;&#13;&#10;          &lt;certSubjectDN type=&quot;String&quot;&gt;CN=IxiaVPN,C=RO,L=Bucharest,O=Ixia&lt;/certSubjectDN&gt;&#13;&#10;          &lt;keyGenAlgo type=&quot;String&quot;&gt;kRSA_512&lt;/keyGenAlgo&gt;&#13;&#10;          &lt;cacheCertFolder type=&quot;String&quot;&gt;C:\Program Files\Ixia\CachedCerts&lt;/cacheCertFolder&gt;&#13;&#10;          &lt;caKeyFile type=&quot;String&quot;&gt;C:\Program Files\Ixia\ca-priv.key&lt;/caKeyFile&gt;&#13;&#10;          &lt;caCrtFile type=&quot;String&quot;&gt;C:\Program Files\Ixia\ca-cert.crt&lt;/caCrtFile&gt;&#13;&#10;          &lt;certNumber type=&quot;Int&quot;&gt;1&lt;/certNumber&gt;&#13;&#10;          &lt;certProto type=&quot;String&quot;&gt;kSCEP&lt;/certProto&gt;&#13;&#10;          &lt;createRootCA type=&quot;Bool&quot;&gt;0&lt;/createRootCA&gt;&#13;&#10;          &lt;uniqueCert type=&quot;Bool&quot;&gt;0&lt;/uniqueCert&gt;&#13;&#10;          &lt;descFilePath type=&quot;String&quot;&gt;C:\Program Files\Ixia\CachedCerts\sample.desc&lt;/descFilePath&gt;&#13;&#10;          &lt;useDescFile type=&quot;Bool&quot;&gt;0&lt;/useDescFile&gt;&#13;&#10;          &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;3&lt;/ixLoadRestObjectId&gt;&#13;&#10;        &lt;/ipsecCertManager&gt;&#13;&#10;        &lt;eapSimTuples type=&quot;ListNode&quot; /&gt;&#13;&#10;        &lt;eapAkaTuples type=&quot;ListNode&quot; /&gt;&#13;&#10;        &lt;maxInitiationRate type=&quot;Int&quot;&gt;50&lt;/maxInitiationRate&gt;&#13;&#10;        &lt;maxPendingTunnels type=&quot;Int&quot;&gt;50&lt;/maxPendingTunnels&gt;&#13;&#10;        &lt;negotiationStartDelay type=&quot;Int&quot;&gt;0&lt;/negotiationStartDelay&gt;&#13;&#10;        &lt;teardownRate type=&quot;Int&quot;&gt;10&lt;/teardownRate&gt;&#13;&#10;        &lt;burstInitiation type=&quot;Bool&quot;&gt;0&lt;/burstInitiation&gt;&#13;&#10;        &lt;parallelInitiation type=&quot;Bool&quot;&gt;0&lt;/parallelInitiation&gt;&#13;&#10;        &lt;enableWildcardTsi type=&quot;Bool&quot;&gt;0&lt;/enableWildcardTsi&gt;&#13;&#10;        &lt;enableWildcardTsr type=&quot;Bool&quot;&gt;0&lt;/enableWildcardTsr&gt;&#13;&#10;        &lt;enablePlutoWildcardTsi type=&quot;Bool&quot;&gt;0&lt;/enablePlutoWildcardTsi&gt;&#13;&#10;        &lt;enablePlutoModeCfgWildcardTsr type=&quot;Bool&quot;&gt;1&lt;/enablePlutoModeCfgWildcardTsr&gt;&#13;&#10;        &lt;enablePlutoS2SWildcardTsr type=&quot;Bool&quot;&gt;0&lt;/enablePlutoS2SWildcardTsr&gt;&#13;&#10;        &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;      &lt;/Ixia.Aptixia.StackManager.IPSecSessionData&gt;&#13;&#10;    &lt;/typeSpecificData&gt;&#13;&#10;    &lt;statViewManager type=&quot;Ixia.Aptixia.StackManager.StatViewManager&quot; objectid=&quot;7256ce27-286c-475d-b198-09b4ae306f73&quot; version=&quot;6.70.420&quot;&gt;&#13;&#10;      &lt;enableStats type=&quot;Bool&quot;&gt;1&lt;/enableStats&gt;&#13;&#10;      &lt;enableOverviewStats type=&quot;Bool&quot;&gt;1&lt;/enableOverviewStats&gt;&#13;&#10;      &lt;enablePerSessionStats type=&quot;Bool&quot;&gt;1&lt;/enablePerSessionStats&gt;&#13;&#10;    &lt;/statViewManager&gt;&#13;&#10;    &lt;waitForLinkUp type=&quot;Bool&quot;&gt;0&lt;/waitForLinkUp&gt;&#13;&#10;    &lt;overloadProtection type=&quot;Bool&quot;&gt;1&lt;/overloadProtection&gt;&#13;&#10;    &lt;ixLoadRestObjectId type=&quot;Int&quot;&gt;1&lt;/ixLoadRestObjectId&gt;&#13;&#10;  &lt;/Ixia.Aptixia.StackManager.SMSession&gt;&#13;&#10;&lt;/rpf&gt;</xml>
 </_smSessionXml>
 <_composerConfig ver="[0, [1, [0, [0]]]]" type="ixComposerConfig">
  <xml type="str"></xml>
 </_composerConfig>
 <_quickTestConfig ver="[0, [1, [0, [0]]]]" type="ixQuickTestConfig">
  <xml type="str">&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-16&quot;?&gt;&#13;&#10;&lt;Config&gt;&#13;&#10;  &lt;configs Version=&quot;5.0&quot; /&gt;&#13;&#10;&lt;/Config&gt;</xml>
 </_quickTestConfig>
 <lastApiUniqueId type="int">15385</lastApiUniqueId>
 <version type="str">8.20.0.273</version>
 <name type="str">HTTP-vFW_IPv4_4Ports-CC-256K.rxf</name>
 <comment type="str"></comment>
 <path type="str">F:\IXIA-TESTS</path>
 <last type="str">HTTP-vFW_IPv4_4Ports-CC-64K.rxf</last>
 <activeTest type="str">Test1</activeTest>
 <chassisChain ver="[2, [1, [0, [0]]]]" oid="2" type="ixChassisChain">
  <chassisList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixChassisSequenceContainer" itemtype="ixChassis"/>
  <_apiUniqueId type="int">12991</_apiUniqueId>
  <chassisMap type="dict"/>
  <hiddenChassis type="NoneType">None</hiddenChassis>
 </chassisChain>
 <AfmPortPacketRewriteConfigList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixAfmPortPacketRewriteConfigList" itemtype="ixAfmPortPacketRewriteConfig"/>
 <networkList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixRepositoryNetworkList" itemtype="ixNullNetwork"/>
 <dutList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixDutList" itemtype="ixDut"/>
 <trafficList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTrafficList" itemtype="ixActivityModel"/>
 <testList ver="[0, [0, [1, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixTestList" itemtype="ixTestEnvelope">
  <item ver="[18, [1, [0, [0]]]]" type="ixTestEnvelope">
   <name type="str">Test1</name>
   <comment type="str"></comment>
   <enableForceOwnership type="bool">False</enableForceOwnership>
   <enableResetPorts type="bool">False</enableResetPorts>
   <statsRequired type="int">1</statsRequired>
   <enableConditionalView type="bool">False</enableConditionalView>
   <conditionalViewType type="int">0</conditionalViewType>
   <conditionalViewList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixConditionalViewList" itemtype="ixConditionalView"/>
   <enableReleaseConfigAfterRun type="int">0</enableReleaseConfigAfterRun>
   <csvInterval type="int">4</csvInterval>
   <networkFailureThreshold type="int">0</networkFailureThreshold>
   <captureViewOptions ver="[1, [1, [0, [0]]]]" oid="8" type="ixViewOptions">
    <runMode type="int">1</runMode>
    <collectScheme type="int">0</collectScheme>
    <allocatedBufferMemoryPercentage type="long">30</allocatedBufferMemoryPercentage>
    <captureRunAfter type="int">0</captureRunAfter>
    <captureRunDuration type="int">0</captureRunDuration>
    <_apiUniqueId type="int">12941</_apiUniqueId>
   </captureViewOptions>
   <scenarioList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioList" itemtype="ixScenario">
    <item ver="[3, [1, [0, [0]]]]" type="ixScenario">
     <name type="str">TrafficFlow1</name>
     <columnList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixTrafficColumnList" itemtype="ixTrafficColumn">
      <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn">
       <name type="str">Client</name>
       <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement">
	<item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="0" type="ixNetTraffic">
	 <name type="str">HTTP client@client network</name>
	 <column type="NoneType">None</column>
	 <scenarioElementType type="str">netTraffic</scenarioElementType>
	 <enable type="bool">True</enable>
	 <role type="str">Client</role>
	 <networkType type="str">ethernet</networkType>
	 <activityFunction type="str">ipTrafficAgent</activityFunction>
	 <activeRole type="str">Client</activeRole>
	 <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/>
	 <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/>
	 <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic">
	  <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp>
	  <name type="str">HTTP client</name>
	  <role type="str">Client</role>
	  <activityFunction type="str">ipTrafficAgent</activityFunction>
	  <payload type="NoneType">None</payload>
	  <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent">
	   <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="14" type="HTTP_Client_plugin">
	    <enable type="int">1</enable>
	    <name type="str">newClientActivity1</name>
	    <activityFunction type="str">ipTrafficAgent</activityFunction>
	    <needToRefreshStatViews type="bool">False</needToRefreshStatViews>
	    <activeRole type="NoneType">None</activeRole>
	    <cmdListLoops type="int">0</cmdListLoops>
	    <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool">
	     <seed type="int">1</seed>
	     <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/>
	     <_apiUniqueId type="int">12943</_apiUniqueId>
	    </cmdPercentagePool>
	    <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/>
	    <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination">
	     <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination">
	      <name type="str">HTTP server_newServerActivity1</name>
	      <portMapPolicy type="str">portMesh</portMapPolicy>
	      <sameAs type="str"></sameAs>
	      <validPortMapPolicies type="list">
	       <item type="str">portPairs</item>
	       <item type="str">portMesh</item>
	       <item type="str">customMesh</item>
	      </validPortMapPolicies>
	      <inUse type="bool">True</inUse>
	      <customPortMap type="NoneType">None</customPortMap>
	      <sourceCommunity ref="0"/>
	      <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="30" type="ixNetTraffic">
	       <name type="str">HTTP server@server network</name>
	       <column type="NoneType">None</column>
	       <scenarioElementType type="str">netTraffic</scenarioElementType>
	       <enable type="bool">True</enable>
	       <role type="str">Server</role>
	       <networkType type="str">ethernet</networkType>
	       <activityFunction type="str">ipTrafficAgent</activityFunction>
	       <activeRole type="str">Server</activeRole>
	       <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/>
	       <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/>
	       <traffic ver="[0, [6, [1, [0, [0]]]]]" type="ixTraffic">
		<resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp>
		<name type="str">HTTP server</name>
		<role type="str">Server</role>
		<activityFunction type="str">ipTrafficAgent</activityFunction>
		<payload type="NoneType">None</payload>
		<agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent">
		 <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="6" type="HTTP_Server_plugin">
		  <enable type="int">1</enable>
		  <name type="str">newServerActivity1</name>
		  <activityFunction type="str">ipTrafficAgent</activityFunction>
		  <needToRefreshStatViews type="bool">False</needToRefreshStatViews>
		  <activeRole type="NoneType">None</activeRole>
		  <loopValue type="int">1</loopValue>
		  <cmdListLoops type="int">0</cmdListLoops>
		  <cmdPercentagePool type="NoneType">None</cmdPercentagePool>
		  <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/>
		  <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/>
		  <flowPercentage type="float">100.0</flowPercentage>
		  <httpPort type="str">80</httpPort>
		  <httpsPort type="str">443</httpsPort>
		  <requestTimeout type="int">300</requestTimeout>
		  <minResponseDelay type="int">0</minResponseDelay>
		  <maxResponseDelay type="int">0</maxResponseDelay>
		  <acceptSslConnections type="int">0</acceptSslConnections>
		  <enablesslRecordSize type="int">0</enablesslRecordSize>
		  <validateCertificate type="int">0</validateCertificate>
		  <sslRecordSize type="str">16384</sslRecordSize>
		  <urlStatsCount type="int">10</urlStatsCount>
		  <rstTimeout type="int">100</rstTimeout>
		  <enableEsm type="int">0</enableEsm>
		  <esm type="int">1460</esm>
		  <enableTos type="bool">False</enableTos>
		  <enableVlanPriority type="int">0</enableVlanPriority>
		  <vlanPriority type="int">0</vlanPriority>
		  <enableIntegrityCheck type="int">0</enableIntegrityCheck>
		  <tos type="int">0</tos>
		  <precedenceTOS type="int">0</precedenceTOS>
		  <delayTOS type="int">0</delayTOS>
		  <throughputTOS type="int">0</throughputTOS>
		  <reliabilityTOS type="int">0</reliabilityTOS>
		  <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat>
		  <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader">
		   <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader">
		    <name type="str">200_OK</name>
		    <description type="str">OK</description>
		    <code type="str">200</code>
		    <mimeType type="str">text/plain</mimeType>
		    <dateMode type="int">2</dateMode>
		    <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue>
		    <dateIncrementEnable type="bool">False</dateIncrementEnable>
		    <dateIncrementBy type="int">5</dateIncrementBy>
		    <dateIncrementFor type="int">1</dateIncrementFor>
		    <dateZone type="str">GMT</dateZone>
		    <expirationMode type="int">0</expirationMode>
		    <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue>
		    <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue>
		    <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue>
		    <lastModifiedMode type="int">1</lastModifiedMode>
		    <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue>
		    <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable>
		    <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy>
		    <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor>
		    <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/>
		    <readOnly type="bool">True</readOnly>
		    <enableCustomPutResponse type="bool">False</enableCustomPutResponse>
		    <objectID type="int">0</objectID>
		    <_apiUniqueId type="int">12972</_apiUniqueId>
		   </item>
		   <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader">
		    <name type="str">404_PageNotFound</name>
		    <description type="str">Page not found</description>
		    <code type="str">404</code>
		    <mimeType type="str">text/plain</mimeType>
		    <dateMode type="int">2</dateMode>
		    <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue>
		    <dateIncrementEnable type="bool">False</dateIncrementEnable>
		    <dateIncrementBy type="int">5</dateIncrementBy>
		    <dateIncrementFor type="int">1</dateIncrementFor>
		    <dateZone type="str">GMT</dateZone>
		    <expirationMode type="int">0</expirationMode>
		    <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue>
		    <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue>
		    <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue>
		    <lastModifiedMode type="int">1</lastModifiedMode>
		    <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue>
		    <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable>
		    <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy>
		    <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor>
		    <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/>
		    <readOnly type="bool">True</readOnly>
		    <enableCustomPutResponse type="bool">False</enableCustomPutResponse>
		    <objectID type="int">1</objectID>
		    <_apiUniqueId type="int">12973</_apiUniqueId>
		   </item>
		  </responseHeaderList>
		  <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject">
		   <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject">
		    <name type="str">UserCookie</name>
		    <description type="str">Name of User</description>
		    <type type="int">2</type>
		    <mode type="int">3</mode>
		    <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent">
		     <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent">
		      <name type="str">firstName</name>
		      <value type="str">Joe</value>
		      <path type="str"></path>
		      <maxAge type="str"></maxAge>
		      <domain type="str"></domain>
		      <other type="str"></other>
		      <objectID type="int">0</objectID>
		     </item>
		     <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent">
		      <name type="str">lastName</name>
		      <value type="str">Smith</value>
		      <path type="str"></path>
		      <maxAge type="str"></maxAge>
		      <domain type="str"></domain>
		      <other type="str"></other>
		      <objectID type="int">1</objectID>
		     </item>
		    </cookieContentList>
		    <readOnly type="bool">True</readOnly>
		    <objectID type="int">0</objectID>
		    <_apiUniqueId type="int">12987</_apiUniqueId>
		   </item>
		   <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject">
		    <name type="str">LoginCookie</name>
		    <description type="str">Login name and password</description>
		    <type type="int">2</type>
		    <mode type="int">2</mode>
		    <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent">
		     <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent">
		      <name type="str">name</name>
		      <value type="str">joesmith</value>
		      <path type="str"></path>
		      <maxAge type="str"></maxAge>
		      <domain type="str"></domain>
		      <other type="str"></other>
		      <objectID type="int">0</objectID>
		     </item>
		     <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent">
		      <name type="str">password</name>
		      <value type="str">foobar</value>
		      <path type="str"></path>
		      <maxAge type="str"></maxAge>
		      <domain type="str"></domain>
		      <other type="str"></other>
		      <objectID type="int">1</objectID>
		     </item>
		    </cookieContentList>
		    <readOnly type="bool">True</readOnly>
		    <objectID type="int">1</objectID>
		    <_apiUniqueId type="int">12988</_apiUniqueId>
		   </item>
		  </cookieList>
		  <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject">
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/1b.html</page>
		    <response ver="[0, [1, [0, [0]]]]" oid="1" type="ixResponseHeader">
		     <name type="str">200_OK</name>
		     <description type="str">OK</description>
		     <code type="str">200</code>
		     <mimeType type="str">text/plain</mimeType>
		     <dateMode type="int">2</dateMode>
		     <dateTimeValue type="str">2014/11/22 07:27:01</dateTimeValue>
		     <dateIncrementEnable type="bool">False</dateIncrementEnable>
		     <dateIncrementBy type="int">5</dateIncrementBy>
		     <dateIncrementFor type="int">1</dateIncrementFor>
		     <dateZone type="str">GMT</dateZone>
		     <expirationMode type="int">0</expirationMode>
		     <expirationDateTimeValue type="str">2005/03/04 21:55:04</expirationDateTimeValue>
		     <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue>
		     <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue>
		     <lastModifiedMode type="int">1</lastModifiedMode>
		     <lastModifiedDateTimeValue type="str">2005/02/02 21:55:04</lastModifiedDateTimeValue>
		     <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable>
		     <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy>
		     <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor>
		     <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/>
		     <readOnly type="bool">True</readOnly>
		     <enableCustomPutResponse type="bool">False</enableCustomPutResponse>
		     <_apiUniqueId type="int">12984</_apiUniqueId>
		    </response>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">1-1</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">3</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">0</objectID>
		    <_apiUniqueId type="int">12974</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/4k.html</page>
		    <response ref="1"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">4096-4096</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">3</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">1</objectID>
		    <_apiUniqueId type="int">12975</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/8k.html</page>
		    <response ref="1"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">8192-8192</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">3</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">2</objectID>
		    <_apiUniqueId type="int">12976</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/16k.html</page>
		    <response ref="1"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">16536-16536</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">3</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">3</objectID>
		    <_apiUniqueId type="int">12977</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/32k.html</page>
		    <response ref="1"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">32768</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">3</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">4</objectID>
		    <_apiUniqueId type="int">12978</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/64k.html</page>
		    <response ref="1"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">65536</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">3</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">5</objectID>
		    <_apiUniqueId type="int">12979</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/128k.html</page>
		    <response ref="1"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">131072</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">3</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">6</objectID>
		    <_apiUniqueId type="int">12980</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/256k.html</page>
		    <response ref="1"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">262144</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">3</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">7</objectID>
		    <_apiUniqueId type="int">12981</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/512k.html</page>
		    <response ref="1"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">524288</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">3</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">8</objectID>
		    <_apiUniqueId type="int">12982</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/1024k.html</page>
		    <response ref="1"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">1048576</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">3</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">9</objectID>
		    <_apiUniqueId type="int">12983</_apiUniqueId>
		   </item>
		  </webPageList>
		  <ServerCiphers type="str">DEFAULT</ServerCiphers>
		  <privateKeyPassword type="str"></privateKeyPassword>
		  <privateKey type="str"></privateKey>
		  <certificate type="str"></certificate>
		  <caCert type="str"></caCert>
		  <enableDHsupport type="int">0</enableDHsupport>
		  <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify>
		  <dhParams type="str"></dhParams>
		  <tcpCloseOption type="int">0</tcpCloseOption>
		  <docrootfile type="str"></docrootfile>
		  <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject">
		   <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject">
		    <id type="int">0</id>
		    <name type="str">AsciiCustomPayload</name>
		    <payloadPosition type="str">Start With</payloadPosition>
		    <payloadmode type="int">0</payloadmode>
		    <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue>
		    <hexPayloadValue type="str"></hexPayloadValue>
		    <repeat type="int">0</repeat>
		    <offset type="int">1</offset>
		    <readOnly type="bool">True</readOnly>
		    <objectID type="int">0</objectID>
		    <_apiUniqueId type="int">12985</_apiUniqueId>
		   </item>
		   <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject">
		    <id type="int">1</id>
		    <name type="str">HexCustomPayload</name>
		    <payloadPosition type="str">Start With</payloadPosition>
		    <payloadmode type="int">1</payloadmode>
		    <asciiPayloadValue type="str"></asciiPayloadValue>
		    <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue>
		    <repeat type="int">0</repeat>
		    <offset type="int">1</offset>
		    <readOnly type="bool">True</readOnly>
		    <objectID type="int">1</objectID>
		    <_apiUniqueId type="int">12986</_apiUniqueId>
		   </item>
		  </customPayloadList>
		  <enableMD5Checksum type="bool">False</enableMD5Checksum>
		  <integrityCheckOption type="str">Custom MD5</integrityCheckOption>
		  <uniqueID type="int">2</uniqueID>
		  <enableChunkEncoding type="bool">False</enableChunkEncoding>
		  <docrootChunkSize type="str">512-1024</docrootChunkSize>
		  <urlPageSize type="int">1024</urlPageSize>
		  <enableChunkedRequest type="bool">False</enableChunkedRequest>
		  <enableNewSslSupport type="bool">False</enableNewSslSupport>
		  <enableHTTP2 type="bool">False</enableHTTP2>
		  <dontExpectUpgrade type="bool">False</dontExpectUpgrade>
		  <disableMacValidation type="int">0</disableMacValidation>
		  <objectID type="int">0</objectID>
		  <_apiUniqueId type="int">12971</_apiUniqueId>
		  <commandIdCounter type="int">0</commandIdCounter>
		  <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport">
		   <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict">
		    <_dict type="list"/>
		   </serializedNetworkSettingsMap>
		   <protocolName type="str">HTTP</protocolName>
		  </networkPluginSettings>
		 </item>
		</agentList>
	       </traffic>
	       <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup">
		<resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp>
		<name type="str">server network</name>
		<role type="str">Server</role>
		<networkType type="str">none</networkType>
		<aggregation type="int">0</aggregation>
		<lineSpeed type="str">Default</lineSpeed>
		<cpuAggregation type="bool">False</cpuAggregation>
		<chassisChain ref="2"/>
		<cardType type="str">FLEXAP1040SQ</cardType>
		<activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/>
		<portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" oid="9" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/>
		<comment type="str"></comment>
		<networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange">
		 <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="3" type="ixNetworkRange">
		  <_smRangeObjectId type="str">1d9bf537-0c3d-4fdf-9b85-0a622cc77649</_smRangeObjectId>
		  <name type="str">Network Range IP-R2 in server network (152.40.40.20+1)</name>
		  <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="4" type="ixIpDistributionGroup">
		   <name type="str">DistGroup1</name>
		   <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod>
		   <objectID type="int">0</objectID>
		   <_apiUniqueId type="int">12961</_apiUniqueId>
		   <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange">
		    <item ref="3"/>
		   </_networkRangeList>
		   <_rangeGroupObjectId type="str">b2c21c73-bfe3-4fbc-9804-b5a8b307d893</_rangeGroupObjectId>
		   <_smPluginObjectId type="str">b85b184d-9bb4-48c2-a029-e633fee7a3c8</_smPluginObjectId>
		  </rangeGroup>
		  <enableStats type="bool">False</enableStats>
		 </item>
		</networkRangeList>
		<layerPlugins type="NoneType">None</layerPlugins>
		<stack type="NoneType">None</stack>
		<rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup">
		 <item ref="4"/>
		</rangeGroupList>
		<dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting>
		<linkLayerOptions type="int">0</linkLayerOptions>
		<ipSourcePortFrom type="int">1024</ipSourcePortFrom>
		<ipSourcePortTo type="int">65535</ipSourcePortTo>
		<emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway>
		<emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet>
		<emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6>
		<emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6>
		<emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/>
		<macMappingMode type="int">0</macMappingMode>
		<arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings">
		 <gratuitousArp type="bool">True</gratuitousArp>
		 <processGratArp type="bool">False</processGratArp>
		</arpSettings>
		<dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns">
		 <enable type="int">0</enable>
		 <cacheTimeout type="int">30000</cacheTimeout>
		 <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/>
		 <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/>
		</dnsParameters>
		<tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters">
		 <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="5" type="ixTcpParametersFull">
		  <enableCongestionNotification type="bool">False</enableCongestionNotification>
		  <enableTimeStamp type="bool">True</enableTimeStamp>
		  <timeWaitRecycle type="bool">True</timeWaitRecycle>
		  <timeWaitReuse type="bool">False</timeWaitReuse>
		  <enableTxBwLimit type="bool">False</enableTxBwLimit>
		  <txBwLimitUnit type="int">0</txBwLimitUnit>
		  <txBwLimit type="int">1024</txBwLimit>
		  <enableRxBwLimit type="bool">False</enableRxBwLimit>
		  <rxBwLimitUnit type="int">0</rxBwLimitUnit>
		  <rxBwLimit type="int">1024</rxBwLimit>
		  <finTimeout type="int">60</finTimeout>
		  <keepAliveInterval type="int">7200</keepAliveInterval>
		  <keepAliveProbes type="int">75</keepAliveProbes>
		  <keepAliveTime type="int">9</keepAliveTime>
		  <synRetries type="int">5</synRetries>
		  <synAckRetries type="int">5</synAckRetries>
		  <retransmitRetries type="int">15</retransmitRetries>
		  <transmitBuffer type="int">1024</transmitBuffer>
		  <receiveBuffer type="int">1024</receiveBuffer>
		  <tcpSack type="bool">True</tcpSack>
		  <windowScaling type="bool">False</windowScaling>
		  <rtoMin type="int">1000</rtoMin>
		  <rtoMax type="int">120000</rtoMax>
		 </tcpParametersFull>
		 <tcpParametersFull ref="5"/>
		</tcpParameters>
		<impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment">
		 <enable type="bool">False</enable>
		 <addDelay type="bool">True</addDelay>
		 <addReorder type="bool">False</addReorder>
		 <addDrop type="bool">False</addDrop>
		 <addDuplicate type="bool">False</addDuplicate>
		 <randomizeSeed type="bool">False</randomizeSeed>
		 <delay type="int">1</delay>
		 <reorder type="int">1</reorder>
		 <reorderLength type="int">1</reorderLength>
		 <sourcePort type="int">0</sourcePort>
		 <destinationPort type="int">0</destinationPort>
		 <drop type="int">1</drop>
		 <duplicate type="int">1</duplicate>
		 <jitter type="int">0</jitter>
		 <gap type="int">1</gap>
		 <destinationIp type="str">any</destinationIp>
		 <typeOfService type="str">any</typeOfService>
		 <protocol type="str">any</protocol>
		 <addFragmentation type="bool">False</addFragmentation>
		 <fragmentationType type="str">FragmentationPercent</fragmentationType>
		 <fragmentPercent type="int">50</fragmentPercent>
		 <mtu type="int">1000</mtu>
		 <fragmentSequenceSkip type="int">1</fragmentSequenceSkip>
		 <fragmentSequenceLength type="int">1</fragmentSequenceLength>
		 <_seed type="int">1</_seed>
		</impairment>
		<_portGroupId type="str">c4ecfc60-64ac-4dc2-9410-e0f58d84f229</_portGroupId>
		<_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap">
		 <externalLinks type="dict"/>
		</_smExternalLinks>
		<smVersion type="int">1</smVersion>
	       </network>
	       <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters">
		<item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity">
		 <agent ref="6"/>
		 <protocolAndType type="str">HTTP Server</protocolAndType>
		 <name type="str">newServerActivity1</name>
		 <enable type="bool">True</enable>
		 <timeline ver="[0, [2, [2, [1, [1, [0, [0]]]]]]]" oid="7" type="ixMatchLongestTimeline"/>
		 <customParameters type="NoneType">None</customParameters>
		 <role type="str">Server</role>
		 <activeRole type="str">Server</activeRole>
		 <objectivePercent type="float">100.0</objectivePercent>
		 <objectID type="int">0</objectID>
		 <_apiUniqueId type="int">12989</_apiUniqueId>
		 <_objectiveValue type="int">100</_objectiveValue>
		 <timelineScale type="float">1.0</timelineScale>
		</item>
	       </activityParameters>
	       <timeline ref="7"/>
	       <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture">
		<captureViewOptions ref="8"/>
		<filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter">
		 <filterString type="str"></filterString>
		</filter>
		<portList ref="9"/>
		<enable type="bool">False</enable>
		<_apiUniqueId type="int">12970</_apiUniqueId>
	       </communityCapture>
	       <payload type="NoneType">None</payload>
	       <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="10" type="ixRangeAgentEndpointWiring">
		<rangeAgentConnections type="list"/>
		<_apiUniqueId type="int">12956</_apiUniqueId>
		<rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict">
		 <_dict type="list">
		  <item type="tuple">
		   <item ref="3"/>
		   <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring">
		    <range ref="3"/>
		    <agentEndpointConnections type="list"/>
		    <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict">
		     <_dict type="list">
		      <item type="tuple">
		       <item ref="6"/>
		       <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring">
			<agent ref="6"/>
			<endpoints type="list"/>
			<endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict">
			 <_dict type="list">
			  <item type="tuple">
			   <item type="str">HTTP Server</item>
			   <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint">
			    <endpointName type="str">HTTP Server</endpointName>
			    <isAvailable type="bool">True</isAvailable>
			   </item>
			  </item>
			 </_dict>
			</endpointsDict>
		       </item>
		      </item>
		     </_dict>
		    </agentConnectionsDict>
		   </item>
		  </item>
		 </_dict>
		</rangeAgentDict>
	       </activityIpWiring>
	       <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag>
	       <iterations type="int">1</iterations>
	       <standbyTime type="int">0</standbyTime>
	       <offlineTime type="int">0</offlineTime>
	       <sustainTime type="int">620</sustainTime>
	       <iterationTime type="int">620</iterationTime>
	       <totalTime type="int">620</totalTime>
	       <objectID type="int">0</objectID>
	       <_apiUniqueId type="int">12955</_apiUniqueId>
	       <isVisible type="bool">True</isVisible>
	       <activityIpWiring ref="10"/>
	       <_portOperationModesAllowed type="dict">
		<item>
		 <key type="int">0</key>
		 <value type="bool">True</value>
		</item>
		<item>
		 <key type="int">1</key>
		 <value type="bool">True</value>
		</item>
		<item>
		 <key type="int">2</key>
		 <value type="bool">False</value>
		</item>
		<item>
		 <key type="int">3</key>
		 <value type="bool">True</value>
		</item>
		<item>
		 <key type="int">4</key>
		 <value type="bool">True</value>
		</item>
		<item>
		 <key type="int">8</key>
		 <value type="bool">True</value>
		</item>
	       </_portOperationModesAllowed>
	       <_tcpAccelerationAllowed type="dict">
		<item>
		 <key type="int">0</key>
		 <value type="bool">True</value>
		</item>
		<item>
		 <key type="int">1</key>
		 <value type="bool">False</value>
		</item>
	       </_tcpAccelerationAllowed>
	      </destinationCommunity>
	      <destinationAgentName type="str">newServerActivity1</destinationAgentName>
	      <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange">
	       <item ver="[1, [1, [0, [0]]]]" type="ixIntRange">
		<intRange type="str">80</intRange>
		<objectID type="int">0</objectID>
		<iStartingValue type="int">80</iStartingValue>
		<iCount type="int">1</iCount>
	       </item>
	      </portRangeList>
	      <count type="int">0</count>
	     </item>
	    </destinations>
	    <flowPercentage type="float">100.0</flowPercentage>
	    <maxSessions type="int">1</maxSessions>
	    <maxStreams type="int">1</maxStreams>
	    <dontUseUpgrade type="int">0</dontUseUpgrade>
	    <httpVersion type="int">1</httpVersion>
	    <keepAlive type="bool">False</keepAlive>
	    <maxPersistentRequests type="int">0</maxPersistentRequests>
	    <followHttpRedirects type="int">0</followHttpRedirects>
	    <enableCookieSupport type="int">0</enableCookieSupport>
	    <maxPipeline type="int">1</maxPipeline>
	    <urlStatsCount type="int">10</urlStatsCount>
	    <enableHttpProxy type="int">0</enableHttpProxy>
	    <httpProxy type="str">:80</httpProxy>
	    <enableHttpsProxy type="int">0</enableHttpsProxy>
	    <httpsProxy type="str">:443</httpsProxy>
	    <browserEmulation type="int">1</browserEmulation>
	    <browserEmulationName type="str">Custom1</browserEmulationName>
	    <enableSsl type="int">0</enableSsl>
	    <sslVersion type="int">3</sslVersion>
	    <sslReuseMethod type="int">0</sslReuseMethod>
	    <sequentialSessionReuse type="int">0</sequentialSessionReuse>
	    <enablesslRecordSize type="int">0</enablesslRecordSize>
	    <validateCertificate type="int">0</validateCertificate>
	    <sslRecordSize type="str">16384</sslRecordSize>
	    <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify>
	    <enableUnidirectionalClose type="int">0</enableUnidirectionalClose>
	    <privateKeyPassword type="str"></privateKeyPassword>
	    <privateKey type="str"></privateKey>
	    <certificate type="str"></certificate>
	    <caCert type="str"></caCert>
	    <clientCiphers type="str">DEFAULT</clientCiphers>
	    <enableEsm type="int">0</enableEsm>
	    <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport>
	    <perHeaderPercentDist type="int">0</perHeaderPercentDist>
	    <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport>
	    <esm type="int">1460</esm>
	    <enableVlanPriority type="int">0</enableVlanPriority>
	    <vlanPriority type="int">0</vlanPriority>
	    <enableTos type="bool">False</enableTos>
	    <tos type="int">0</tos>
	    <precedenceTOS type="int">0</precedenceTOS>
	    <delayTOS type="int">0</delayTOS>
	    <throughputTOS type="int">0</throughputTOS>
	    <reliabilityTOS type="int">0</reliabilityTOS>
	    <commandTimeout type="int">600</commandTimeout>
	    <commandTimeout_ms type="int">0</commandTimeout_ms>
	    <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession>
	    <enableAchieveCCFirst type="int">0</enableAchieveCCFirst>
	    <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC>
	    <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance>
	    <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig">
	     <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand">
	      <commandId type="int">-2</commandId>
	      <commandType type="str">START</commandType>
	      <cmdName type="str">Start</cmdName>
	      <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput">
	       <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput">
		<name type="str">Output1</name>
		<outputType type="int">0</outputType>
		<destCmdId type="int">1</destCmdId>
		<objectID type="int">0</objectID>
		<_apiUniqueId type="int">12948</_apiUniqueId>
		<destinationCommandIdx type="int">1</destinationCommandIdx>
	       </item>
	      </outputList>
	      <objectID type="int">0</objectID>
	      <_apiUniqueId type="int">12945</_apiUniqueId>
	     </item>
	     <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand">
	      <commandId type="int">1</commandId>
	      <commandType type="str">GET</commandType>
	      <cmdName type="str">Get 1</cmdName>
	      <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput">
	       <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput">
		<name type="str">Output1</name>
		<outputType type="int">0</outputType>
		<destCmdId type="int">-3</destCmdId>
		<objectID type="int">0</objectID>
		<_apiUniqueId type="int">12949</_apiUniqueId>
		<destinationCommandIdx type="int">2</destinationCommandIdx>
	       </item>
	      </outputList>
	      <destination type="str">HTTP server_newServerActivity1:80</destination>
	      <pageObject type="str">/256k.html</pageObject>
	      <abort type="str">None</abort>
	      <arguments type="str"></arguments>
	      <namevalueargs type="str"></namevalueargs>
	      <profile type="int">-1</profile>
	      <enableDi type="int">0</enableDi>
	      <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader>
	      <sendingChunkSize type="str">None</sendingChunkSize>
	      <sslProfile type="int">-1</sslProfile>
	      <method type="int">-1</method>
	      <useSsl type="bool">False</useSsl>
	      <windowSize type="str">65536</windowSize>
	      <streamIden type="int">3</streamIden>
	      <pingFreq type="int">10</pingFreq>
	      <objectID type="int">1</objectID>
	      <_apiUniqueId type="int">12946</_apiUniqueId>
	     </item>
	     <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand">
	      <commandId type="int">-3</commandId>
	      <commandType type="str">STOP</commandType>
	      <cmdName type="str">Stop</cmdName>
	      <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/>
	      <objectID type="int">2</objectID>
	      <_apiUniqueId type="int">12947</_apiUniqueId>
	     </item>
	    </actionList>
	    <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString">
	     <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString">
	      <data type="str">Accept: */*</data>
	      <objectID type="int">0</objectID>
	      <_apiUniqueId type="int">12950</_apiUniqueId>
	     </item>
	     <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString">
	      <data type="str">Accept-Language: en-us</data>
	      <objectID type="int">1</objectID>
	      <_apiUniqueId type="int">12951</_apiUniqueId>
	     </item>
	     <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString">
	      <data type="str">Accept-Encoding: gzip, deflate</data>
	      <objectID type="int">2</objectID>
	      <_apiUniqueId type="int">12952</_apiUniqueId>
	     </item>
	     <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString">
	      <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)</data>
	      <objectID type="int">3</objectID>
	      <_apiUniqueId type="int">12953</_apiUniqueId>
	     </item>
	    </headerList>
	    <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/>
	    <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/>
	    <cookieJarSize type="int">10</cookieJarSize>
	    <cookieRejectProbability type="float">0.0</cookieRejectProbability>
	    <ipPreference type="int">2</ipPreference>
	    <tcpCloseOption type="int">0</tcpCloseOption>
	    <piggybackAck type="int">1</piggybackAck>
	    <enableLargeHeader type="int">0</enableLargeHeader>
	    <maxHeaderLen type="int">1024</maxHeaderLen>
	    <useAllIPs type="int">0</useAllIPs>
	    <enableDecompressSupport type="int">0</enableDecompressSupport>
	    <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport>
	    <enableCRCCheckSupport type="int">0</enableCRCCheckSupport>
	    <uniqueID type="int">1</uniqueID>
	    <disableDnsResolutionCache type="int">0</disableDnsResolutionCache>
	    <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/>
	    <httpsTunnel type="str">0.0.0.0</httpsTunnel>
	    <enableHttpsTunnel type="int">0</enableHttpsTunnel>
	    <exactTransactions type="int">0</exactTransactions>
	    <objectID type="int">0</objectID>
	    <_apiUniqueId type="int">12942</_apiUniqueId>
	    <uniqueID type="int">1</uniqueID>
	    <commandIdCounter type="int">1</commandIdCounter>
	    <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport">
	     <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict">
	      <_dict type="list"/>
	     </serializedNetworkSettingsMap>
	     <protocolName type="str">HTTP</protocolName>
	    </networkPluginSettings>
	   </item>
	  </agentList>
	 </traffic>
	 <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup">
	  <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp>
	  <name type="str">client network</name>
	  <role type="str">Client</role>
	  <networkType type="str">none</networkType>
	  <aggregation type="int">0</aggregation>
	  <lineSpeed type="str">Default</lineSpeed>
	  <cpuAggregation type="bool">False</cpuAggregation>
	  <chassisChain ref="2"/>
	  <cardType type="str">FLEXAP1040SQ</cardType>
	  <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/>
	  <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/>
	  <comment type="str"></comment>
	  <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange">
	   <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="11" type="ixNetworkRange">
	    <_smRangeObjectId type="str">a3559674-8d95-4020-90b3-b42eacaef105</_smRangeObjectId>
	    <name type="str">Network Range IP-R1 in client network (152.16.100.20+1)</name>
	    <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="12" type="ixIpDistributionGroup">
	     <name type="str">DistGroup1</name>
	     <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod>
	     <objectID type="int">0</objectID>
	     <_apiUniqueId type="int">12931</_apiUniqueId>
	     <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange">
	      <item ref="11"/>
	     </_networkRangeList>
	     <_rangeGroupObjectId type="str">aa33a76b-9c7f-48d9-a537-8d6eeec03662</_rangeGroupObjectId>
	     <_smPluginObjectId type="str">a916ae0f-0731-405d-ad19-eaade6c515f1</_smPluginObjectId>
	    </rangeGroup>
	    <enableStats type="bool">False</enableStats>
	   </item>
	  </networkRangeList>
	  <layerPlugins type="NoneType">None</layerPlugins>
	  <stack type="NoneType">None</stack>
	  <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup">
	   <item ref="12"/>
	  </rangeGroupList>
	  <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting>
	  <linkLayerOptions type="int">0</linkLayerOptions>
	  <ipSourcePortFrom type="int">1024</ipSourcePortFrom>
	  <ipSourcePortTo type="int">65535</ipSourcePortTo>
	  <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway>
	  <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet>
	  <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6>
	  <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6>
	  <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/>
	  <macMappingMode type="int">0</macMappingMode>
	  <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings">
	   <gratuitousArp type="bool">True</gratuitousArp>
	   <processGratArp type="bool">False</processGratArp>
	  </arpSettings>
	  <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns">
	   <enable type="int">0</enable>
	   <cacheTimeout type="int">30000</cacheTimeout>
	   <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/>
	   <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/>
	  </dnsParameters>
	  <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters">
	   <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="13" type="ixTcpParametersFull">
	    <enableCongestionNotification type="bool">False</enableCongestionNotification>
	    <enableTimeStamp type="bool">True</enableTimeStamp>
	    <timeWaitRecycle type="bool">True</timeWaitRecycle>
	    <timeWaitReuse type="bool">False</timeWaitReuse>
	    <enableTxBwLimit type="bool">False</enableTxBwLimit>
	    <txBwLimitUnit type="int">0</txBwLimitUnit>
	    <txBwLimit type="int">1024</txBwLimit>
	    <enableRxBwLimit type="bool">False</enableRxBwLimit>
	    <rxBwLimitUnit type="int">0</rxBwLimitUnit>
	    <rxBwLimit type="int">1024</rxBwLimit>
	    <finTimeout type="int">60</finTimeout>
	    <keepAliveInterval type="int">7200</keepAliveInterval>
	    <keepAliveProbes type="int">75</keepAliveProbes>
	    <keepAliveTime type="int">9</keepAliveTime>
	    <synRetries type="int">5</synRetries>
	    <synAckRetries type="int">5</synAckRetries>
	    <retransmitRetries type="int">15</retransmitRetries>
	    <transmitBuffer type="int">1024</transmitBuffer>
	    <receiveBuffer type="int">1024</receiveBuffer>
	    <tcpSack type="bool">True</tcpSack>
	    <windowScaling type="bool">False</windowScaling>
	    <rtoMin type="int">1000</rtoMin>
	    <rtoMax type="int">120000</rtoMax>
	   </tcpParametersFull>
	   <tcpParametersFull ref="13"/>
	  </tcpParameters>
	  <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment">
	   <enable type="bool">False</enable>
	   <addDelay type="bool">True</addDelay>
	   <addReorder type="bool">False</addReorder>
	   <addDrop type="bool">False</addDrop>
	   <addDuplicate type="bool">False</addDuplicate>
	   <randomizeSeed type="bool">False</randomizeSeed>
	   <delay type="int">1</delay>
	   <reorder type="int">1</reorder>
	   <reorderLength type="int">1</reorderLength>
	   <sourcePort type="int">0</sourcePort>
	   <destinationPort type="int">0</destinationPort>
	   <drop type="int">1</drop>
	   <duplicate type="int">1</duplicate>
	   <jitter type="int">0</jitter>
	   <gap type="int">1</gap>
	   <destinationIp type="str">any</destinationIp>
	   <typeOfService type="str">any</typeOfService>
	   <protocol type="str">any</protocol>
	   <addFragmentation type="bool">False</addFragmentation>
	   <fragmentationType type="str">FragmentationPercent</fragmentationType>
	   <fragmentPercent type="int">50</fragmentPercent>
	   <mtu type="int">1000</mtu>
	   <fragmentSequenceSkip type="int">1</fragmentSequenceSkip>
	   <fragmentSequenceLength type="int">1</fragmentSequenceLength>
	   <_seed type="int">1</_seed>
	  </impairment>
	  <_portGroupId type="str">865be042-32d5-426a-9e75-0908c943801f</_portGroupId>
	  <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap">
	   <externalLinks type="dict"/>
	  </_smExternalLinks>
	  <smVersion type="int">1</smVersion>
	 </network>
	 <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters">
	  <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity">
	   <agent ref="14"/>
	   <protocolAndType type="str">HTTP Client</protocolAndType>
	   <name type="str">newClientActivity1</name>
	   <enable type="bool">True</enable>
	   <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="15" type="ixTimeline">
	    <name type="str">Timeline1</name>
	    <iterationTime type="int">620</iterationTime>
	    <totalTime type="int">620</totalTime>
	    <iterations type="int">1</iterations>
	    <standbyTime type="int">0</standbyTime>
	    <offlineTime type="int">0</offlineTime>
	    <sustainTime type="int">600</sustainTime>
	    <rampUpType type="int">0</rampUpType>
	    <rampUpValue type="int">20000</rampUpValue>
	    <rampUpInterval type="int">1</rampUpInterval>
	    <rampUpTime type="int">0</rampUpTime>
	    <rampDownTime type="int">20</rampDownTime>
	    <rampDownValue type="int">20000</rampDownValue>
	    <timelineType type="int">0</timelineType>
	    <objectID type="int">0</objectID>
	   </timeline>
	   <customParameters type="NoneType">None</customParameters>
	   <role type="str">Client</role>
	   <activeRole type="str">Client</activeRole>
	   <objectivePercent type="float">100.0</objectivePercent>
	   <objectiveType type="str">concurrentConnections</objectiveType>
	   <objectiveValue type="int">64512</objectiveValue>
	   <userObjectiveType type="str">concurrentConnections</userObjectiveType>
	   <userObjectiveValue type="long">64512</userObjectiveValue>
	   <constraintType type="NoneType">None</constraintType>
	   <constraintValue type="int">100</constraintValue>
	   <timerGranularity type="int">100</timerGranularity>
	   <enableConstraint type="bool">False</enableConstraint>
	   <secondaryConstraintType type="NoneType">None</secondaryConstraintType>
	   <secondaryConstraintValue type="int">100</secondaryConstraintValue>
	   <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint>
	   <portMapPolicy type="str">portMesh</portMapPolicy>
	   <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior>
	   <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior>
	   <userIpMapping type="str">1:1</userIpMapping>
	   <destinationIpMapping type="str">Consecutive</destinationIpMapping>
	   <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/>
	   <objectID type="int">0</objectID>
	   <_apiUniqueId type="int">12954</_apiUniqueId>
	   <_objectiveValue type="int">64512</_objectiveValue>
	   <timelineScale type="float">1.0</timelineScale>
	  </item>
	 </activityParameters>
	 <timeline ref="15"/>
	 <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture">
	  <captureViewOptions ref="8"/>
	  <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter">
	   <filterString type="str"></filterString>
	  </filter>
	  <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/>
	  <enable type="bool">False</enable>
	  <_apiUniqueId type="int">12940</_apiUniqueId>
	 </communityCapture>
	 <payload type="NoneType">None</payload>
	 <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="16" type="ixRangeAgentEndpointWiring">
	  <rangeAgentConnections type="list"/>
	  <_apiUniqueId type="int">12926</_apiUniqueId>
	  <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict">
	   <_dict type="list">
	    <item type="tuple">
	     <item ref="11"/>
	     <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring">
	      <range ref="11"/>
	      <agentEndpointConnections type="list"/>
	      <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict">
	       <_dict type="list">
		<item type="tuple">
		 <item ref="14"/>
		 <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring">
		  <agent ref="14"/>
		  <endpoints type="list"/>
		  <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict">
		   <_dict type="list">
		    <item type="tuple">
		     <item type="str">HTTP Client</item>
		     <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint">
		      <endpointName type="str">HTTP Client</endpointName>
		      <isAvailable type="bool">True</isAvailable>
		     </item>
		    </item>
		   </_dict>
		  </endpointsDict>
		 </item>
		</item>
	       </_dict>
	      </agentConnectionsDict>
	     </item>
	    </item>
	   </_dict>
	  </rangeAgentDict>
	 </activityIpWiring>
	 <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag>
	 <iterations type="int">1</iterations>
	 <standbyTime type="int">0</standbyTime>
	 <offlineTime type="int">0</offlineTime>
	 <sustainTime type="int">600</sustainTime>
	 <iterationTime type="int">620</iterationTime>
	 <totalTime type="int">620</totalTime>
	 <portMapPolicy type="str">portMesh</portMapPolicy>
	 <objectiveType type="str">concurrentConnections</objectiveType>
	 <objectiveValue type="int">64512</objectiveValue>
	 <rampUpType type="int">-1</rampUpType>
	 <rampUpValue type="int">20000</rampUpValue>
	 <rampUpInterval type="int">1</rampUpInterval>
	 <rampUpTime type="int">0</rampUpTime>
	 <rampDownTime type="int">20</rampDownTime>
	 <userObjectiveType type="str">concurrentConnections</userObjectiveType>
	 <userObjectiveValue type="long">64512</userObjectiveValue>
	 <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue>
	 <objectID type="int">0</objectID>
	 <_apiUniqueId type="int">12925</_apiUniqueId>
	 <isVisible type="bool">True</isVisible>
	 <activityIpWiring ref="16"/>
	 <_portOperationModesAllowed type="dict">
	  <item>
	   <key type="int">0</key>
	   <value type="bool">True</value>
	  </item>
	  <item>
	   <key type="int">1</key>
	   <value type="bool">True</value>
	  </item>
	  <item>
	   <key type="int">2</key>
	   <value type="bool">False</value>
	  </item>
	  <item>
	   <key type="int">3</key>
	   <value type="bool">True</value>
	  </item>
	  <item>
	   <key type="int">4</key>
	   <value type="bool">True</value>
	  </item>
	  <item>
	   <key type="int">8</key>
	   <value type="bool">True</value>
	  </item>
	 </_portOperationModesAllowed>
	 <_tcpAccelerationAllowed type="dict">
	  <item>
	   <key type="int">0</key>
	   <value type="bool">True</value>
	  </item>
	  <item>
	   <key type="int">1</key>
	   <value type="bool">False</value>
	  </item>
	 </_tcpAccelerationAllowed>
	</item>
	<item ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="17" type="ixNetTraffic">
	 <name type="str">Traffic1@client network_1</name>
	 <column type="NoneType">None</column>
	 <scenarioElementType type="str">netTraffic</scenarioElementType>
	 <enable type="int">1</enable>
	 <role type="str">Client</role>
	 <networkType type="str">ethernet</networkType>
	 <activityFunction type="str">ipTrafficAgent</activityFunction>
	 <activeRole type="str">Client</activeRole>
	 <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/>
	 <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/>
	 <traffic ver="[6, [1, [0, [0]]]]" type="ixActivityModel">
	  <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp>
	  <name type="str">Traffic1</name>
	  <role type="str">Client</role>
	  <activityFunction type="str">ipTrafficAgent</activityFunction>
	  <payload type="NoneType">None</payload>
	  <agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent">
	   <item ver="[33, [0, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]], [5, [0, [0, [6, [1, [0, [0]]]]], [0, [0]]]]]" oid="27" type="HTTP_Client_plugin">
	    <enable type="int">1</enable>
	    <name type="str">HTTPClient1</name>
	    <activityFunction type="str">ipTrafficAgent</activityFunction>
	    <needToRefreshStatViews type="bool">False</needToRefreshStatViews>
	    <activeRole type="NoneType">None</activeRole>
	    <cmdListLoops type="int">0</cmdListLoops>
	    <cmdPercentagePool ver="[0, [1, [0, [0]]]]" type="ixCommandPercentagePool">
	     <seed type="int">1</seed>
	     <percentageCommandList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandPercentageInfoList" itemtype="ixCommandPercentageInfo"/>
	     <_apiUniqueId type="int">15343</_apiUniqueId>
	    </cmdPercentagePool>
	    <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/>
	    <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination">
	     <item ver="[0, [3, [1, [0, [0]]]]]" type="ixAgentDestination">
	      <name type="str">Traffic2_HTTPServer1</name>
	      <portMapPolicy type="str">portPairs</portMapPolicy>
	      <sameAs type="str"></sameAs>
	      <validPortMapPolicies type="list">
	       <item type="str">portPairs</item>
	       <item type="str">portMesh</item>
	       <item type="str">customMesh</item>
	      </validPortMapPolicies>
	      <inUse type="bool">True</inUse>
	      <customPortMap type="NoneType">None</customPortMap>
	      <sourceCommunity ref="17"/>
	      <destinationCommunity ver="[1, [23, [0, [1, [0, [0]]]]]]" oid="31" type="ixNetTraffic">
	       <name type="str">Traffic2@server network_1</name>
	       <column type="NoneType">None</column>
	       <scenarioElementType type="str">netTraffic</scenarioElementType>
	       <enable type="int">1</enable>
	       <role type="str">Server</role>
	       <networkType type="str">ethernet</networkType>
	       <activityFunction type="str">ipTrafficAgent</activityFunction>
	       <activeRole type="str">Server</activeRole>
	       <networkActivityList ver="[0, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkActivityList" itemtype="ixNetworkActivity"/>
	       <activityGroupList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityGroupList" itemtype="ixActivityGroup"/>
	       <traffic ver="[6, [1, [0, [0]]]]" type="ixActivityModel">
		<resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp>
		<name type="str">Traffic2</name>
		<role type="str">Server</role>
		<activityFunction type="str">ipTrafficAgent</activityFunction>
		<payload type="NoneType">None</payload>
		<agentList ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="_agentListSequenceContainer" itemtype="ixAgent">
		 <item ver="[17, [0, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]], [2, [0, [0, [6, [1, [0, [0]]]], [0]], [0, [0]]]]]" oid="22" type="HTTP_Server_plugin">
		  <enable type="int">1</enable>
		  <name type="str">HTTPServer1</name>
		  <activityFunction type="str">ipTrafficAgent</activityFunction>
		  <needToRefreshStatViews type="bool">False</needToRefreshStatViews>
		  <activeRole type="NoneType">None</activeRole>
		  <loopValue type="int">1</loopValue>
		  <cmdListLoops type="int">0</cmdListLoops>
		  <cmdPercentagePool type="NoneType">None</cmdPercentagePool>
		  <sources ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixSourceList" itemtype="ixSource"/>
		  <destinations ver="[1, [3, [0, [0, [0], [0]], [0]]]]" type="ixDestinationList" itemtype="ixDestination"/>
		  <flowPercentage type="float">100.0</flowPercentage>
		  <httpPort type="str">80</httpPort>
		  <httpsPort type="str">443</httpsPort>
		  <requestTimeout type="int">300</requestTimeout>
		  <minResponseDelay type="int">0</minResponseDelay>
		  <maxResponseDelay type="int">0</maxResponseDelay>
		  <acceptSslConnections type="int">0</acceptSslConnections>
		  <enablesslRecordSize type="int">0</enablesslRecordSize>
		  <validateCertificate type="int">0</validateCertificate>
		  <sslRecordSize type="str">16384</sslRecordSize>
		  <urlStatsCount type="int">10</urlStatsCount>
		  <rstTimeout type="int">100</rstTimeout>
		  <enableEsm type="int">0</enableEsm>
		  <esm type="int">1460</esm>
		  <enableTos type="int">0</enableTos>
		  <enableVlanPriority type="int">0</enableVlanPriority>
		  <vlanPriority type="int">0</vlanPriority>
		  <enableIntegrityCheck type="int">0</enableIntegrityCheck>
		  <tos type="int">0</tos>
		  <precedenceTOS type="int">0</precedenceTOS>
		  <delayTOS type="int">0</delayTOS>
		  <throughputTOS type="int">0</throughputTOS>
		  <reliabilityTOS type="int">0</reliabilityTOS>
		  <enablePerServerPerURLstat type="int">0</enablePerServerPerURLstat>
		  <responseHeaderList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixResponseHeaderList" itemtype="ixResponseHeader">
		   <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader">
		    <name type="str">200_OK</name>
		    <description type="str">OK</description>
		    <code type="str">200</code>
		    <mimeType type="str">text/plain</mimeType>
		    <dateMode type="int">2</dateMode>
		    <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue>
		    <dateIncrementEnable type="bool">False</dateIncrementEnable>
		    <dateIncrementBy type="int">5</dateIncrementBy>
		    <dateIncrementFor type="int">1</dateIncrementFor>
		    <dateZone type="str">GMT</dateZone>
		    <expirationMode type="int">0</expirationMode>
		    <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue>
		    <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue>
		    <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue>
		    <lastModifiedMode type="int">1</lastModifiedMode>
		    <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue>
		    <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable>
		    <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy>
		    <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor>
		    <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/>
		    <readOnly type="bool">True</readOnly>
		    <enableCustomPutResponse type="bool">False</enableCustomPutResponse>
		    <objectID type="int">0</objectID>
		    <_apiUniqueId type="int">15367</_apiUniqueId>
		   </item>
		   <item ver="[0, [1, [0, [0]]]]" type="ixResponseHeader">
		    <name type="str">404_PageNotFound</name>
		    <description type="str">Page not found</description>
		    <code type="int">404</code>
		    <mimeType type="str">text/plain</mimeType>
		    <dateMode type="int">2</dateMode>
		    <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue>
		    <dateIncrementEnable type="bool">False</dateIncrementEnable>
		    <dateIncrementBy type="int">5</dateIncrementBy>
		    <dateIncrementFor type="int">1</dateIncrementFor>
		    <dateZone type="str">GMT</dateZone>
		    <expirationMode type="int">0</expirationMode>
		    <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue>
		    <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue>
		    <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue>
		    <lastModifiedMode type="int">1</lastModifiedMode>
		    <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue>
		    <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable>
		    <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy>
		    <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor>
		    <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/>
		    <readOnly type="bool">True</readOnly>
		    <enableCustomPutResponse type="bool">False</enableCustomPutResponse>
		    <objectID type="int">1</objectID>
		    <_apiUniqueId type="int">15368</_apiUniqueId>
		   </item>
		  </responseHeaderList>
		  <cookieList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieList" itemtype="ixCookieObject">
		   <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject">
		    <name type="str">UserCookie</name>
		    <description type="str">Name of User</description>
		    <type type="int">2</type>
		    <mode type="int">3</mode>
		    <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent">
		     <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent">
		      <name type="str">firstName</name>
		      <value type="str">Joe</value>
		      <path type="str"></path>
		      <maxAge type="str"></maxAge>
		      <domain type="str"></domain>
		      <other type="str"></other>
		      <objectID type="int">0</objectID>
		     </item>
		     <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent">
		      <name type="str">lastName</name>
		      <value type="str">Smith</value>
		      <path type="str"></path>
		      <maxAge type="str"></maxAge>
		      <domain type="str"></domain>
		      <other type="str"></other>
		      <objectID type="int">1</objectID>
		     </item>
		    </cookieContentList>
		    <readOnly type="bool">True</readOnly>
		    <objectID type="int">0</objectID>
		    <_apiUniqueId type="int">15382</_apiUniqueId>
		   </item>
		   <item ver="[0, [1, [0, [0]]]]" type="ixCookieObject">
		    <name type="str">LoginCookie</name>
		    <description type="str">Login name and password</description>
		    <type type="int">2</type>
		    <mode type="int">2</mode>
		    <cookieContentList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCookieContentList" itemtype="ixCookieContent">
		     <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent">
		      <name type="str">name</name>
		      <value type="str">joesmith</value>
		      <path type="str"></path>
		      <maxAge type="str"></maxAge>
		      <domain type="str"></domain>
		      <other type="str"></other>
		      <objectID type="int">0</objectID>
		     </item>
		     <item ver="[0, [1, [0, [0]]]]" type="ixCookieContent">
		      <name type="str">password</name>
		      <value type="str">foobar</value>
		      <path type="str"></path>
		      <maxAge type="str"></maxAge>
		      <domain type="str"></domain>
		      <other type="str"></other>
		      <objectID type="int">1</objectID>
		     </item>
		    </cookieContentList>
		    <readOnly type="bool">True</readOnly>
		    <objectID type="int">1</objectID>
		    <_apiUniqueId type="int">15383</_apiUniqueId>
		   </item>
		  </cookieList>
		  <webPageList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWebPageList" itemtype="ixWebPageObject">
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/1b.html</page>
		    <response ver="[0, [1, [0, [0]]]]" oid="18" type="ixResponseHeader">
		     <name type="str">200_OK</name>
		     <description type="str">OK</description>
		     <code type="str">200</code>
		     <mimeType type="str">text/plain</mimeType>
		     <dateMode type="int">2</dateMode>
		     <dateTimeValue type="str">2017/03/02 08:39:07</dateTimeValue>
		     <dateIncrementEnable type="bool">False</dateIncrementEnable>
		     <dateIncrementBy type="int">5</dateIncrementBy>
		     <dateIncrementFor type="int">1</dateIncrementFor>
		     <dateZone type="str">GMT</dateZone>
		     <expirationMode type="int">0</expirationMode>
		     <expirationDateTimeValue type="str">2017/04/01 08:39:07</expirationDateTimeValue>
		     <expirationAfterRequestValue type="int">3600</expirationAfterRequestValue>
		     <expirationAfterLastModifiedValue type="int">3600</expirationAfterLastModifiedValue>
		     <lastModifiedMode type="int">1</lastModifiedMode>
		     <lastModifiedDateTimeValue type="str">2017/03/02 08:39:07</lastModifiedDateTimeValue>
		     <lastModifiedIncrementEnable type="bool">False</lastModifiedIncrementEnable>
		     <lastModifiedIncrementBy type="int">5</lastModifiedIncrementBy>
		     <lastModifiedIncrementFor type="int">1</lastModifiedIncrementFor>
		     <responseList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpResponseList" itemtype="_httpResponseString"/>
		     <readOnly type="bool">True</readOnly>
		     <enableCustomPutResponse type="bool">False</enableCustomPutResponse>
		     <_apiUniqueId type="int">15379</_apiUniqueId>
		    </response>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">1-1</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">0</Md5Option>
		    <chunkSize type="str">1</chunkSize>
		    <objectID type="int">0</objectID>
		    <_apiUniqueId type="int">15369</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/4k.html</page>
		    <response ref="18"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">4096-4096</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">0</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">1</objectID>
		    <_apiUniqueId type="int">15370</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/8k.html</page>
		    <response ref="18"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">8192-8192</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">0</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">2</objectID>
		    <_apiUniqueId type="int">15371</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/16k.html</page>
		    <response ref="18"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">16536-16536</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">0</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">3</objectID>
		    <_apiUniqueId type="int">15372</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/32k.html</page>
		    <response ref="18"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">32768</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">0</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">4</objectID>
		    <_apiUniqueId type="int">15373</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/64k.html</page>
		    <response ref="18"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">65536</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">0</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">5</objectID>
		    <_apiUniqueId type="int">15374</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/128k.html</page>
		    <response ref="18"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">131072</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">0</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">6</objectID>
		    <_apiUniqueId type="int">15375</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/256k.html</page>
		    <response ref="18"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">262144</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">0</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">7</objectID>
		    <_apiUniqueId type="int">15376</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/512k.html</page>
		    <response ref="18"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">524288</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">0</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">8</objectID>
		    <_apiUniqueId type="int">15377</_apiUniqueId>
		   </item>
		   <item ver="[1, [1, [0, [0]]]]" type="ixWebPageObject">
		    <page type="str">/1024k.html</page>
		    <response ref="18"/>
		    <payloadType type="str">range</payloadType>
		    <payloadSize type="str">1048576</payloadSize>
		    <payloadFile type="str">&lt;specify file&gt;</payloadFile>
		    <cookie type="NoneType">None</cookie>
		    <customPayloadId type="int">-1</customPayloadId>
		    <Md5Option type="int">0</Md5Option>
		    <chunkSize type="str">512-1024</chunkSize>
		    <objectID type="int">9</objectID>
		    <_apiUniqueId type="int">15378</_apiUniqueId>
		   </item>
		  </webPageList>
		  <ServerCiphers type="str">DEFAULT</ServerCiphers>
		  <privateKeyPassword type="str"></privateKeyPassword>
		  <privateKey type="str"></privateKey>
		  <certificate type="str"></certificate>
		  <caCert type="str"></caCert>
		  <enableDHsupport type="int">0</enableDHsupport>
		  <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify>
		  <dhParams type="str"></dhParams>
		  <tcpCloseOption type="int">0</tcpCloseOption>
		  <docrootfile type="str"></docrootfile>
		  <customPayloadList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixCustomPayloadList" itemtype="ixCustomPayloadObject">
		   <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject">
		    <id type="int">0</id>
		    <name type="str">AsciiCustomPayload</name>
		    <payloadPosition type="str">Start With</payloadPosition>
		    <payloadmode type="int">0</payloadmode>
		    <asciiPayloadValue type="str">Ixia-Ixload-Http-Server-Custom-Payload</asciiPayloadValue>
		    <hexPayloadValue type="str"></hexPayloadValue>
		    <repeat type="int">0</repeat>
		    <offset type="int">1</offset>
		    <readOnly type="bool">True</readOnly>
		    <objectID type="int">0</objectID>
		    <_apiUniqueId type="int">15380</_apiUniqueId>
		   </item>
		   <item ver="[0, [1, [0, [0]]]]" type="ixCustomPayloadObject">
		    <id type="int">1</id>
		    <name type="str">HexCustomPayload</name>
		    <payloadPosition type="str">Start With</payloadPosition>
		    <payloadmode type="int">1</payloadmode>
		    <asciiPayloadValue type="str"></asciiPayloadValue>
		    <hexPayloadValue type="str">49 78 69 61 2d 49 78 6c 6f 61 64 2d 48 74 74 70 2d 53 65 72 76 65 72 2d 43 75 73 74 6f 6d 2d 50 61 79 6c 6f 61 64</hexPayloadValue>
		    <repeat type="int">0</repeat>
		    <offset type="int">1</offset>
		    <readOnly type="bool">True</readOnly>
		    <objectID type="int">1</objectID>
		    <_apiUniqueId type="int">15381</_apiUniqueId>
		   </item>
		  </customPayloadList>
		  <enableMD5Checksum type="bool">False</enableMD5Checksum>
		  <integrityCheckOption type="str">Custom MD5</integrityCheckOption>
		  <uniqueID type="int">6</uniqueID>
		  <enableChunkEncoding type="bool">False</enableChunkEncoding>
		  <docrootChunkSize type="str">512-1024</docrootChunkSize>
		  <urlPageSize type="int">1024</urlPageSize>
		  <enableChunkedRequest type="bool">False</enableChunkedRequest>
		  <enableNewSslSupport type="bool">False</enableNewSslSupport>
		  <enableHTTP2 type="bool">False</enableHTTP2>
		  <dontExpectUpgrade type="bool">False</dontExpectUpgrade>
		  <disableMacValidation type="int">0</disableMacValidation>
		  <objectID type="int">0</objectID>
		  <_apiUniqueId type="int">15366</_apiUniqueId>
		  <commandIdCounter type="int">0</commandIdCounter>
		  <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport">
		   <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict">
		    <_dict type="list"/>
		   </serializedNetworkSettingsMap>
		   <protocolName type="str">HTTP</protocolName>
		  </networkPluginSettings>
		 </item>
		</agentList>
	       </traffic>
	       <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup">
		<resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp>
		<name type="str">server network_1</name>
		<role type="str">Server</role>
		<networkType type="str">none</networkType>
		<aggregation type="int">0</aggregation>
		<lineSpeed type="str">Default</lineSpeed>
		<cpuAggregation type="bool">False</cpuAggregation>
		<chassisChain ref="2"/>
		<cardType type="str">FLEXAP1040SQ</cardType>
		<activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/>
		<portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/>
		<comment type="str"></comment>
		<networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange">
		 <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="19" type="ixNetworkRange">
		  <_smRangeObjectId type="str">ba01e944-e779-4a36-b3bd-26d1c3b0ef21</_smRangeObjectId>
		  <name type="str">Network Range IP-R8 in server network_1 (192.40.40.20+1)</name>
		  <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="20" type="ixIpDistributionGroup">
		   <name type="str">DistGroup1</name>
		   <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod>
		   <objectID type="int">0</objectID>
		   <_apiUniqueId type="int">12961</_apiUniqueId>
		   <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange">
		    <item ref="19"/>
		   </_networkRangeList>
		   <_rangeGroupObjectId type="str">389909e0-120c-4ea7-857f-69e5981ba867</_rangeGroupObjectId>
		   <_smPluginObjectId type="str">2aa50b07-0df6-4bc2-8fcc-1ebb0f6169b5</_smPluginObjectId>
		  </rangeGroup>
		  <enableStats type="bool">False</enableStats>
		 </item>
		</networkRangeList>
		<layerPlugins type="NoneType">None</layerPlugins>
		<stack type="NoneType">None</stack>
		<rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup">
		 <item ref="20"/>
		</rangeGroupList>
		<dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting>
		<linkLayerOptions type="int">0</linkLayerOptions>
		<ipSourcePortFrom type="int">1024</ipSourcePortFrom>
		<ipSourcePortTo type="int">65535</ipSourcePortTo>
		<emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway>
		<emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet>
		<emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6>
		<emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6>
		<emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/>
		<macMappingMode type="int">0</macMappingMode>
		<arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings">
		 <gratuitousArp type="bool">True</gratuitousArp>
		 <processGratArp type="bool">False</processGratArp>
		</arpSettings>
		<dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns">
		 <enable type="int">0</enable>
		 <cacheTimeout type="int">30000</cacheTimeout>
		 <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/>
		 <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/>
		</dnsParameters>
		<tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters">
		 <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="21" type="ixTcpParametersFull">
		  <enableCongestionNotification type="bool">False</enableCongestionNotification>
		  <enableTimeStamp type="bool">True</enableTimeStamp>
		  <timeWaitRecycle type="bool">True</timeWaitRecycle>
		  <timeWaitReuse type="bool">False</timeWaitReuse>
		  <enableTxBwLimit type="bool">False</enableTxBwLimit>
		  <txBwLimitUnit type="int">0</txBwLimitUnit>
		  <txBwLimit type="int">1024</txBwLimit>
		  <enableRxBwLimit type="bool">False</enableRxBwLimit>
		  <rxBwLimitUnit type="int">0</rxBwLimitUnit>
		  <rxBwLimit type="int">1024</rxBwLimit>
		  <finTimeout type="int">60</finTimeout>
		  <keepAliveInterval type="int">7200</keepAliveInterval>
		  <keepAliveProbes type="int">75</keepAliveProbes>
		  <keepAliveTime type="int">9</keepAliveTime>
		  <synRetries type="int">5</synRetries>
		  <synAckRetries type="int">5</synAckRetries>
		  <retransmitRetries type="int">15</retransmitRetries>
		  <transmitBuffer type="int">1024</transmitBuffer>
		  <receiveBuffer type="int">1024</receiveBuffer>
		  <tcpSack type="bool">True</tcpSack>
		  <windowScaling type="bool">False</windowScaling>
		  <rtoMin type="int">1000</rtoMin>
		  <rtoMax type="int">120000</rtoMax>
		 </tcpParametersFull>
		 <tcpParametersFull ref="21"/>
		</tcpParameters>
		<impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment">
		 <enable type="bool">False</enable>
		 <addDelay type="bool">True</addDelay>
		 <addReorder type="bool">False</addReorder>
		 <addDrop type="bool">False</addDrop>
		 <addDuplicate type="bool">False</addDuplicate>
		 <randomizeSeed type="bool">False</randomizeSeed>
		 <delay type="int">1</delay>
		 <reorder type="int">1</reorder>
		 <reorderLength type="int">1</reorderLength>
		 <sourcePort type="int">0</sourcePort>
		 <destinationPort type="int">0</destinationPort>
		 <drop type="int">1</drop>
		 <duplicate type="int">1</duplicate>
		 <jitter type="int">0</jitter>
		 <gap type="int">1</gap>
		 <destinationIp type="str">any</destinationIp>
		 <typeOfService type="str">any</typeOfService>
		 <protocol type="str">any</protocol>
		 <addFragmentation type="bool">False</addFragmentation>
		 <fragmentationType type="str">FragmentationPercent</fragmentationType>
		 <fragmentPercent type="int">50</fragmentPercent>
		 <mtu type="int">1000</mtu>
		 <fragmentSequenceSkip type="int">1</fragmentSequenceSkip>
		 <fragmentSequenceLength type="int">1</fragmentSequenceLength>
		 <_seed type="int">1</_seed>
		</impairment>
		<_portGroupId type="str">669af012-d572-439d-9c70-cfbacea0fe7f</_portGroupId>
		<_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap">
		 <externalLinks type="dict"/>
		</_smExternalLinks>
		<smVersion type="int">1</smVersion>
	       </network>
	       <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters">
		<item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity">
		 <agent ref="22"/>
		 <protocolAndType type="str">HTTP Server</protocolAndType>
		 <name type="str">HTTPServer1</name>
		 <enable type="bool">True</enable>
		 <timeline ref="7"/>
		 <customParameters type="NoneType">None</customParameters>
		 <role type="str">Server</role>
		 <activeRole type="str">Server</activeRole>
		 <objectivePercent type="float">100.0</objectivePercent>
		 <objectID type="int">0</objectID>
		 <_apiUniqueId type="int">15384</_apiUniqueId>
		 <_objectiveValue type="int">100</_objectiveValue>
		 <timelineScale type="float">1.0</timelineScale>
		</item>
	       </activityParameters>
	       <timeline ref="7"/>
	       <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture">
		<captureViewOptions ref="8"/>
		<filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter">
		 <filterString type="str"></filterString>
		</filter>
		<portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/>
		<enable type="bool">False</enable>
		<_apiUniqueId type="int">15365</_apiUniqueId>
	       </communityCapture>
	       <payload type="NoneType">None</payload>
	       <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="23" type="ixRangeAgentEndpointWiring">
		<rangeAgentConnections type="list"/>
		<_apiUniqueId type="int">15356</_apiUniqueId>
		<rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict">
		 <_dict type="list">
		  <item type="tuple">
		   <item ref="19"/>
		   <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring">
		    <range ref="19"/>
		    <agentEndpointConnections type="list"/>
		    <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict">
		     <_dict type="list">
		      <item type="tuple">
		       <item ref="22"/>
		       <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring">
			<agent ref="22"/>
			<endpoints type="list"/>
			<endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict">
			 <_dict type="list">
			  <item type="tuple">
			   <item type="str">HTTP Server</item>
			   <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint">
			    <endpointName type="str">HTTP Server</endpointName>
			    <isAvailable type="bool">True</isAvailable>
			   </item>
			  </item>
			 </_dict>
			</endpointsDict>
		       </item>
		      </item>
		     </_dict>
		    </agentConnectionsDict>
		   </item>
		  </item>
		 </_dict>
		</rangeAgentDict>
	       </activityIpWiring>
	       <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag>
	       <iterations type="int">1</iterations>
	       <standbyTime type="int">0</standbyTime>
	       <offlineTime type="int">0</offlineTime>
	       <sustainTime type="int">620</sustainTime>
	       <iterationTime type="int">620</iterationTime>
	       <totalTime type="int">620</totalTime>
	       <objectID type="int">2</objectID>
	       <_apiUniqueId type="int">15355</_apiUniqueId>
	       <isVisible type="bool">True</isVisible>
	       <activityIpWiring ref="23"/>
	       <_portOperationModesAllowed type="dict">
		<item>
		 <key type="int">0</key>
		 <value type="bool">True</value>
		</item>
		<item>
		 <key type="int">1</key>
		 <value type="bool">True</value>
		</item>
		<item>
		 <key type="int">2</key>
		 <value type="bool">False</value>
		</item>
		<item>
		 <key type="int">3</key>
		 <value type="bool">True</value>
		</item>
		<item>
		 <key type="int">4</key>
		 <value type="bool">True</value>
		</item>
		<item>
		 <key type="int">8</key>
		 <value type="bool">True</value>
		</item>
	       </_portOperationModesAllowed>
	       <_tcpAccelerationAllowed type="dict">
		<item>
		 <key type="int">0</key>
		 <value type="bool">True</value>
		</item>
		<item>
		 <key type="int">1</key>
		 <value type="bool">True</value>
		</item>
	       </_tcpAccelerationAllowed>
	      </destinationCommunity>
	      <destinationAgentName type="str">HTTPServer1</destinationAgentName>
	      <portRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixIntRangeList" itemtype="ixIntRange">
	       <item ver="[1, [1, [0, [0]]]]" type="ixIntRange">
		<intRange type="str">80</intRange>
		<objectID type="int">0</objectID>
		<iStartingValue type="int">80</iStartingValue>
		<iCount type="int">1</iCount>
	       </item>
	      </portRangeList>
	      <count type="int">1</count>
	     </item>
	    </destinations>
	    <flowPercentage type="float">100.0</flowPercentage>
	    <maxSessions type="int">3</maxSessions>
	    <maxStreams type="int">1</maxStreams>
	    <dontUseUpgrade type="int">0</dontUseUpgrade>
	    <httpVersion type="int">0</httpVersion>
	    <keepAlive type="int">0</keepAlive>
	    <maxPersistentRequests type="int">1</maxPersistentRequests>
	    <followHttpRedirects type="int">0</followHttpRedirects>
	    <enableCookieSupport type="int">0</enableCookieSupport>
	    <maxPipeline type="int">1</maxPipeline>
	    <urlStatsCount type="int">10</urlStatsCount>
	    <enableHttpProxy type="int">0</enableHttpProxy>
	    <httpProxy type="str">0.0.0.0</httpProxy>
	    <enableHttpsProxy type="int">0</enableHttpsProxy>
	    <httpsProxy type="str">0.0.0.0</httpsProxy>
	    <browserEmulation type="int">3</browserEmulation>
	    <browserEmulationName type="str">Custom1</browserEmulationName>
	    <enableSsl type="int">0</enableSsl>
	    <sslVersion type="int">3</sslVersion>
	    <sslReuseMethod type="int">0</sslReuseMethod>
	    <sequentialSessionReuse type="int">0</sequentialSessionReuse>
	    <enablesslRecordSize type="int">0</enablesslRecordSize>
	    <validateCertificate type="int">0</validateCertificate>
	    <sslRecordSize type="str">16384</sslRecordSize>
	    <enableSslSendCloseNotify type="int">0</enableSslSendCloseNotify>
	    <enableUnidirectionalClose type="int">0</enableUnidirectionalClose>
	    <privateKeyPassword type="str"></privateKeyPassword>
	    <privateKey type="str"></privateKey>
	    <certificate type="str"></certificate>
	    <caCert type="str"></caCert>
	    <clientCiphers type="str">DEFAULT</clientCiphers>
	    <enableEsm type="int">0</enableEsm>
	    <enablePerConnCookieSupport type="int">0</enablePerConnCookieSupport>
	    <perHeaderPercentDist type="int">0</perHeaderPercentDist>
	    <enablemetaRedirectSupport type="int">0</enablemetaRedirectSupport>
	    <esm type="int">1460</esm>
	    <enableVlanPriority type="int">0</enableVlanPriority>
	    <vlanPriority type="int">0</vlanPriority>
	    <enableTos type="int">0</enableTos>
	    <tos type="int">0</tos>
	    <precedenceTOS type="int">0</precedenceTOS>
	    <delayTOS type="int">0</delayTOS>
	    <throughputTOS type="int">0</throughputTOS>
	    <reliabilityTOS type="int">0</reliabilityTOS>
	    <commandTimeout type="int">600</commandTimeout>
	    <commandTimeout_ms type="int">0</commandTimeout_ms>
	    <enableConsecutiveIpsPerSession type="int">0</enableConsecutiveIpsPerSession>
	    <enableAchieveCCFirst type="int">0</enableAchieveCCFirst>
	    <enableTrafficDistributionForCC type="int">0</enableTrafficDistributionForCC>
	    <contentLengthDeviationTolerance type="int">0</contentLengthDeviationTolerance>
	    <actionList ver="[1, [1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]]" type="ixHttpCommandList" itemtype="ixConfig">
	     <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStartCommand">
	      <commandId type="int">-2</commandId>
	      <commandType type="str">START</commandType>
	      <cmdName type="str">Start</cmdName>
	      <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput">
	       <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput">
		<name type="str">Output1</name>
		<outputType type="int">0</outputType>
		<destCmdId type="int">1</destCmdId>
		<objectID type="int">0</objectID>
		<_apiUniqueId type="int">15348</_apiUniqueId>
		<destinationCommandIdx type="int">1</destinationCommandIdx>
	       </item>
	      </outputList>
	      <objectID type="int">0</objectID>
	      <_apiUniqueId type="int">15345</_apiUniqueId>
	     </item>
	     <item ver="[0, [0, [2, [1, [0, [0]]]]], [0, [0, [1, [0, [0]]]]]]" type="ixHttpCommand">
	      <commandId type="int">1</commandId>
	      <commandType type="str">GET</commandType>
	      <cmdName type="str">Get 1</cmdName>
	      <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput">
	       <item ver="[1, [1, [0, [0]]]]" type="ixCommandOutput">
		<name type="str">Output1</name>
		<outputType type="int">0</outputType>
		<destCmdId type="int">-3</destCmdId>
		<objectID type="int">0</objectID>
		<_apiUniqueId type="int">15349</_apiUniqueId>
		<destinationCommandIdx type="int">2</destinationCommandIdx>
	       </item>
	      </outputList>
	      <destination type="str">Traffic2_HTTPServer1:80</destination>
	      <pageObject type="str">/256k.html</pageObject>
	      <abort type="str">None</abort>
	      <arguments type="str"></arguments>
	      <namevalueargs type="str"></namevalueargs>
	      <profile type="int">-1</profile>
	      <enableDi type="int">0</enableDi>
	      <sendMD5ChkSumHeader type="int">0</sendMD5ChkSumHeader>
	      <sendingChunkSize type="str">None</sendingChunkSize>
	      <sslProfile type="int">-1</sslProfile>
	      <method type="int">-1</method>
	      <useSsl type="int">0</useSsl>
	      <windowSize type="str">65536</windowSize>
	      <streamIden type="int">3</streamIden>
	      <pingFreq type="int">10</pingFreq>
	      <objectID type="int">2</objectID>
	      <_apiUniqueId type="int">15346</_apiUniqueId>
	     </item>
	     <item ver="[0, [0, [0, [0, [1, [0, [0]]]]]]]" type="ixStopCommand">
	      <commandId type="int">-3</commandId>
	      <commandType type="str">STOP</commandType>
	      <cmdName type="str">Stop</cmdName>
	      <outputList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixCommandOutputList" itemtype="ixCommandOutput"/>
	      <objectID type="int">1</objectID>
	      <_apiUniqueId type="int">15347</_apiUniqueId>
	     </item>
	    </actionList>
	    <headerList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixwebHttpHeaderList" itemtype="_httpHeaderString">
	     <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString">
	      <data type="str">Accept: */*</data>
	      <objectID type="int">0</objectID>
	      <_apiUniqueId type="int">15350</_apiUniqueId>
	     </item>
	     <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString">
	      <data type="str">Accept-Language: en-us</data>
	      <objectID type="int">1</objectID>
	      <_apiUniqueId type="int">15351</_apiUniqueId>
	     </item>
	     <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString">
	      <data type="str">Accept-Encoding: gzip, deflate</data>
	      <objectID type="int">2</objectID>
	      <_apiUniqueId type="int">15352</_apiUniqueId>
	     </item>
	     <item ver="[1, [0, [0, [0], [0], [0]]], [1, [0, [0]]]]" type="_httpHeaderString">
	      <data type="str">User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; .NET CLR 1.1.4322)</data>
	      <objectID type="int">3</objectID>
	      <_apiUniqueId type="int">15353</_apiUniqueId>
	     </item>
	    </headerList>
	    <profileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandProfileList" itemtype="ixHttpCommandProfile"/>
	    <sslProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixHttpCommandSSLProfileList" itemtype="ixHttpCommandSSLProfile"/>
	    <cookieJarSize type="int">10</cookieJarSize>
	    <cookieRejectProbability type="float">0.0</cookieRejectProbability>
	    <ipPreference type="int">2</ipPreference>
	    <tcpCloseOption type="int">0</tcpCloseOption>
	    <piggybackAck type="int">1</piggybackAck>
	    <enableLargeHeader type="int">0</enableLargeHeader>
	    <maxHeaderLen type="int">1024</maxHeaderLen>
	    <useAllIPs type="int">0</useAllIPs>
	    <enableDecompressSupport type="int">0</enableDecompressSupport>
	    <enableIntegrityCheckSupport type="int">0</enableIntegrityCheckSupport>
	    <enableCRCCheckSupport type="int">0</enableCRCCheckSupport>
	    <uniqueID type="int">4</uniqueID>
	    <disableDnsResolutionCache type="int">0</disableDnsResolutionCache>
	    <methodProfileList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixMethodProfileList" itemtype="ixMethodProfile"/>
	    <httpsTunnel type="str">0.0.0.0</httpsTunnel>
	    <enableHttpsTunnel type="int">0</enableHttpsTunnel>
	    <exactTransactions type="int">0</exactTransactions>
	    <objectID type="int">0</objectID>
	    <_apiUniqueId type="int">15342</_apiUniqueId>
	    <uniqueID type="int">4</uniqueID>
	    <commandIdCounter type="int">1</commandIdCounter>
	    <networkPluginSettings ver="[0]" type="ixNetworkActivityPluginSupport">
	     <serializedNetworkSettingsMap ver="[0, [0, [0]]]" type="ixOrderedDict">
	      <_dict type="list"/>
	     </serializedNetworkSettingsMap>
	     <protocolName type="str">HTTP</protocolName>
	    </networkPluginSettings>
	   </item>
	  </agentList>
	 </traffic>
	 <network ver="[17, [1, [6, [1, [0, [0]]]]]]" type="ixNetworkGroup">
	  <resourceSyncTimeStamp type="NoneType">None</resourceSyncTimeStamp>
	  <name type="str">client network_1</name>
	  <role type="str">Client</role>
	  <networkType type="str">none</networkType>
	  <aggregation type="int">0</aggregation>
	  <lineSpeed type="str">Default</lineSpeed>
	  <cpuAggregation type="bool">False</cpuAggregation>
	  <chassisChain ref="2"/>
	  <cardType type="str">FLEXAP1040SQ</cardType>
	  <activePortList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/>
	  <portList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixNetworkPortListSequenceContainer" itemtype="ixConfig"/>
	  <comment type="str"></comment>
	  <networkRangeList ver="[0, [2, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixNetworkRangeListSequenceContainer" itemtype="ixNetworkRange">
	   <item ver="[13, [1, [1, [1, [0, [0]]]]]]" oid="24" type="ixNetworkRange">
	    <_smRangeObjectId type="str">0304987f-176a-4aea-a3cb-c117279fe0ea</_smRangeObjectId>
	    <name type="str">Network Range IP-R6 in client network_1 (192.16.100.20+1)</name>
	    <rangeGroup ver="[3, [0, [1, [0, [0]]]]]" oid="25" type="ixIpDistributionGroup">
	     <name type="str">DistGroup1</name>
	     <ipDistributionMethod type="str">consecutiveIps</ipDistributionMethod>
	     <objectID type="int">0</objectID>
	     <_apiUniqueId type="int">12931</_apiUniqueId>
	     <_networkRangeList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixWeakrefSequenceContainer" itemtype="ixBasicNetworkRange">
	      <item ref="24"/>
	     </_networkRangeList>
	     <_rangeGroupObjectId type="str">f020117b-0c7f-4da8-a1ae-0fca36b0caad</_rangeGroupObjectId>
	     <_smPluginObjectId type="str">410b3e8d-36a6-41b5-821e-9ee93496ea7a</_smPluginObjectId>
	    </rangeGroup>
	    <enableStats type="bool">False</enableStats>
	   </item>
	  </networkRangeList>
	  <layerPlugins type="NoneType">None</layerPlugins>
	  <stack type="NoneType">None</stack>
	  <rangeGroupList ver="[1, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixIpDistributionGroupList" itemtype="ixIpDistributionGroup">
	   <item ref="25"/>
	  </rangeGroupList>
	  <dynamicControlPlaneSetting type="int">0</dynamicControlPlaneSetting>
	  <linkLayerOptions type="int">0</linkLayerOptions>
	  <ipSourcePortFrom type="int">1024</ipSourcePortFrom>
	  <ipSourcePortTo type="int">65535</ipSourcePortTo>
	  <emulatedRouterGateway type="str">0.0.0.0</emulatedRouterGateway>
	  <emulatedRouterSubnet type="str">255.255.255.0</emulatedRouterSubnet>
	  <emulatedRouterGatewayIPv6 type="str">::</emulatedRouterGatewayIPv6>
	  <emulatedRouterSubnetIPv6 type="str">FFFF:FFFF:FFFF:FFFF:FFFF:FFFF::0</emulatedRouterSubnetIPv6>
	  <emulatedRouterIpAddressPool ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="ixEmulatedRouterIpAddressRange"/>
	  <macMappingMode type="int">0</macMappingMode>
	  <arpSettings ver="[0, [1, [0, [0]]]]" type="ixArpSettings">
	   <gratuitousArp type="bool">True</gratuitousArp>
	   <processGratArp type="bool">False</processGratArp>
	  </arpSettings>
	  <dnsParameters ver="[1, [1, [0, [0]]]]" type="ixDns">
	   <enable type="int">0</enable>
	   <cacheTimeout type="int">30000</cacheTimeout>
	   <serverList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsServerItem"/>
	   <suffixList ver="[3, [0, [0, [0], [0]], [0]]]" type="ixConfigSequenceContainer" itemtype="_ixDnsSuffixItem"/>
	  </dnsParameters>
	  <tcpParameters ver="[0, [1, [0, [0]]]]" type="ixTcpParameters">
	   <tcpParametersFull ver="[4, [1, [0, [0]]]]" oid="26" type="ixTcpParametersFull">
	    <enableCongestionNotification type="bool">False</enableCongestionNotification>
	    <enableTimeStamp type="bool">True</enableTimeStamp>
	    <timeWaitRecycle type="bool">True</timeWaitRecycle>
	    <timeWaitReuse type="bool">False</timeWaitReuse>
	    <enableTxBwLimit type="bool">False</enableTxBwLimit>
	    <txBwLimitUnit type="int">0</txBwLimitUnit>
	    <txBwLimit type="int">1024</txBwLimit>
	    <enableRxBwLimit type="bool">False</enableRxBwLimit>
	    <rxBwLimitUnit type="int">0</rxBwLimitUnit>
	    <rxBwLimit type="int">1024</rxBwLimit>
	    <finTimeout type="int">60</finTimeout>
	    <keepAliveInterval type="int">7200</keepAliveInterval>
	    <keepAliveProbes type="int">75</keepAliveProbes>
	    <keepAliveTime type="int">9</keepAliveTime>
	    <synRetries type="int">5</synRetries>
	    <synAckRetries type="int">5</synAckRetries>
	    <retransmitRetries type="int">15</retransmitRetries>
	    <transmitBuffer type="int">1024</transmitBuffer>
	    <receiveBuffer type="int">1024</receiveBuffer>
	    <tcpSack type="bool">True</tcpSack>
	    <windowScaling type="bool">False</windowScaling>
	    <rtoMin type="int">1000</rtoMin>
	    <rtoMax type="int">120000</rtoMax>
	   </tcpParametersFull>
	   <tcpParametersFull ref="26"/>
	  </tcpParameters>
	  <impairment ver="[5, [1, [0, [0]]]]" type="ixImpairment">
	   <enable type="bool">False</enable>
	   <addDelay type="bool">True</addDelay>
	   <addReorder type="bool">False</addReorder>
	   <addDrop type="bool">False</addDrop>
	   <addDuplicate type="bool">False</addDuplicate>
	   <randomizeSeed type="bool">False</randomizeSeed>
	   <delay type="int">1</delay>
	   <reorder type="int">1</reorder>
	   <reorderLength type="int">1</reorderLength>
	   <sourcePort type="int">0</sourcePort>
	   <destinationPort type="int">0</destinationPort>
	   <drop type="int">1</drop>
	   <duplicate type="int">1</duplicate>
	   <jitter type="int">0</jitter>
	   <gap type="int">1</gap>
	   <destinationIp type="str">any</destinationIp>
	   <typeOfService type="str">any</typeOfService>
	   <protocol type="str">any</protocol>
	   <addFragmentation type="bool">False</addFragmentation>
	   <fragmentationType type="str">FragmentationPercent</fragmentationType>
	   <fragmentPercent type="int">50</fragmentPercent>
	   <mtu type="int">1000</mtu>
	   <fragmentSequenceSkip type="int">1</fragmentSequenceSkip>
	   <fragmentSequenceLength type="int">1</fragmentSequenceLength>
	   <_seed type="int">1</_seed>
	  </impairment>
	  <_portGroupId type="str">6c1a9dc4-bc8e-48ad-982f-956b0561e947</_portGroupId>
	  <_smExternalLinks ver="[0, [1, [0, [0]]]]" type="_smExternalLinkersMap">
	   <externalLinks type="dict"/>
	  </_smExternalLinks>
	  <smVersion type="int">1</smVersion>
	 </network>
	 <activityParameters ver="[2, [0, [0, [3, [0, [0, [0], [0]], [0]]]]]]" type="ixActivityParametersList" itemtype="ixActivityParameters">
	  <item ver="[0, [19, [1, [1, [0, [0]]]]]]" type="ixActivity">
	   <agent ref="27"/>
	   <protocolAndType type="str">HTTP Client</protocolAndType>
	   <name type="str">HTTPClient1</name>
	   <enable type="bool">True</enable>
	   <timeline ver="[2, [1, [1, [0, [0]]]]]" oid="28" type="ixTimeline">
	    <name type="str">Timeline2</name>
	    <iterationTime type="int">620</iterationTime>
	    <totalTime type="int">620</totalTime>
	    <iterations type="int">1</iterations>
	    <standbyTime type="int">0</standbyTime>
	    <offlineTime type="int">0</offlineTime>
	    <sustainTime type="int">600</sustainTime>
	    <rampUpType type="int">0</rampUpType>
	    <rampUpValue type="int">20000</rampUpValue>
	    <rampUpInterval type="int">1</rampUpInterval>
	    <rampUpTime type="int">0</rampUpTime>
	    <rampDownTime type="int">20</rampDownTime>
	    <rampDownValue type="int">20000</rampDownValue>
	    <timelineType type="int">0</timelineType>
	    <objectID type="int">3</objectID>
	   </timeline>
	   <customParameters type="NoneType">None</customParameters>
	   <role type="str">Client</role>
	   <activeRole type="str">Client</activeRole>
	   <objectivePercent type="float">100.0</objectivePercent>
	   <objectiveType type="str">concurrentConnections</objectiveType>
	   <objectiveValue type="int">64512</objectiveValue>
	   <userObjectiveType type="str">concurrentConnections</userObjectiveType>
	   <userObjectiveValue type="long">64512</userObjectiveValue>
	   <constraintType type="NoneType">None</constraintType>
	   <constraintValue type="int">100</constraintValue>
	   <timerGranularity type="int">100</timerGranularity>
	   <enableConstraint type="bool">False</enableConstraint>
	   <secondaryConstraintType type="NoneType">None</secondaryConstraintType>
	   <secondaryConstraintValue type="int">100</secondaryConstraintValue>
	   <secondaryEnableConstraint type="bool">False</secondaryEnableConstraint>
	   <portMapPolicy type="str">portPairs</portMapPolicy>
	   <concurrentObjectiveBehavior type="int">1</concurrentObjectiveBehavior>
	   <cpsObjectiveBehavior type="int">0</cpsObjectiveBehavior>
	   <userIpMapping type="str">1:1</userIpMapping>
	   <destinationIpMapping type="str">Consecutive</destinationIpMapping>
	   <playlists ver="[1, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixPlaylistList" itemtype="ixPlaylist"/>
	   <objectID type="int">0</objectID>
	   <_apiUniqueId type="int">15354</_apiUniqueId>
	   <_objectiveValue type="int">64512</_objectiveValue>
	   <timelineScale type="float">1.0</timelineScale>
	  </item>
	 </activityParameters>
	 <timeline ref="28"/>
	 <communityCapture ver="[0, [1, [0, [0]]]]" type="ixViewCommunityCapture">
	  <captureViewOptions ref="8"/>
	  <filter ver="[0, [1, [0, [0]]]]" type="ixViewFilter">
	   <filterString type="str"></filterString>
	  </filter>
	  <portList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="_portListSequenceContainer" itemtype="ixConfig"/>
	  <enable type="bool">False</enable>
	  <_apiUniqueId type="int">15341</_apiUniqueId>
	 </communityCapture>
	 <payload type="NoneType">None</payload>
	 <activityIpWiring ver="[0, [1, [0, [0]]]]" oid="29" type="ixRangeAgentEndpointWiring">
	  <rangeAgentConnections type="list"/>
	  <_apiUniqueId type="int">15332</_apiUniqueId>
	  <rangeAgentDict ver="[0, [0, [0]]]" type="ixOrderedDict">
	   <_dict type="list">
	    <item type="tuple">
	     <item ref="24"/>
	     <item ver="[0, [1, [0, [0]]]]" type="ixRangeAgentWiring">
	      <range ref="24"/>
	      <agentEndpointConnections type="list"/>
	      <agentConnectionsDict ver="[0, [0, [0]]]" type="ixOrderedDict">
	       <_dict type="list">
		<item type="tuple">
		 <item ref="27"/>
		 <item ver="[0, [1, [0, [0]]]]" type="ixAgentEndpointWiring">
		  <agent ref="27"/>
		  <endpoints type="list"/>
		  <endpointsDict ver="[0, [0, [0]]]" type="ixOrderedDict">
		   <_dict type="list">
		    <item type="tuple">
		     <item type="str">HTTP Client</item>
		     <item ver="[0, [1, [0, [0]]]]" type="ixEndpoint">
		      <endpointName type="str">HTTP Client</endpointName>
		      <isAvailable type="bool">True</isAvailable>
		     </item>
		    </item>
		   </_dict>
		  </endpointsDict>
		 </item>
		</item>
	       </_dict>
	      </agentConnectionsDict>
	     </item>
	    </item>
	   </_dict>
	  </rangeAgentDict>
	 </activityIpWiring>
	 <tcpAccelerationAllowedFlag type="bool">True</tcpAccelerationAllowedFlag>
	 <iterations type="int">1</iterations>
	 <standbyTime type="int">0</standbyTime>
	 <offlineTime type="int">0</offlineTime>
	 <sustainTime type="int">600</sustainTime>
	 <iterationTime type="int">620</iterationTime>
	 <totalTime type="int">620</totalTime>
	 <portMapPolicy type="str">portPairs</portMapPolicy>
	 <objectiveType type="str">concurrentConnections</objectiveType>
	 <objectiveValue type="int">64512</objectiveValue>
	 <rampUpType type="int">-1</rampUpType>
	 <rampUpValue type="int">20000</rampUpValue>
	 <rampUpInterval type="int">1</rampUpInterval>
	 <rampUpTime type="int">0</rampUpTime>
	 <rampDownTime type="int">20</rampDownTime>
	 <userObjectiveType type="str">concurrentConnections</userObjectiveType>
	 <userObjectiveValue type="long">64512</userObjectiveValue>
	 <totalUserObjectiveValue type="long">64512</totalUserObjectiveValue>
	 <objectID type="int">1</objectID>
	 <_apiUniqueId type="int">15331</_apiUniqueId>
	 <isVisible type="bool">True</isVisible>
	 <activityIpWiring ref="29"/>
	 <_portOperationModesAllowed type="dict">
	  <item>
	   <key type="int">0</key>
	   <value type="bool">True</value>
	  </item>
	  <item>
	   <key type="int">1</key>
	   <value type="bool">True</value>
	  </item>
	  <item>
	   <key type="int">2</key>
	   <value type="bool">False</value>
	  </item>
	  <item>
	   <key type="int">3</key>
	   <value type="bool">True</value>
	  </item>
	  <item>
	   <key type="int">4</key>
	   <value type="bool">True</value>
	  </item>
	  <item>
	   <key type="int">8</key>
	   <value type="bool">True</value>
	  </item>
	 </_portOperationModesAllowed>
	 <_tcpAccelerationAllowed type="dict">
	  <item>
	   <key type="int">0</key>
	   <value type="bool">True</value>
	  </item>
	  <item>
	   <key type="int">1</key>
	   <value type="bool">True</value>
	  </item>
	 </_tcpAccelerationAllowed>
	</item>
       </elementList>
       <objectID type="int">0</objectID>
       <_apiUniqueId type="int">12922</_apiUniqueId>
      </item>
      <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn">
       <name type="str">DUT</name>
       <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement"/>
       <objectID type="int">1</objectID>
       <_apiUniqueId type="int">12923</_apiUniqueId>
      </item>
      <item ver="[0, [1, [0, [0]]]]" type="ixTrafficColumn">
       <name type="str">Server</name>
       <elementList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixScenarioElementList" itemtype="ixScenarioElement">
	<item ref="30"/>
	<item ref="31"/>
       </elementList>
       <objectID type="int">2</objectID>
       <_apiUniqueId type="int">12924</_apiUniqueId>
      </item>
     </columnList>
     <links ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixActivityLinkList" itemtype="ixActivityLink"/>
     <appMixList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixAppMixList" itemtype="ixAppMix"/>
     <objectID type="int">0</objectID>
     <_apiUniqueId type="int">12921</_apiUniqueId>
    </item>
   </scenarioList>
   <currentUniqueIDForAgent type="int">6</currentUniqueIDForAgent>
   <enableNetworkDiagnostics type="bool">True</enableNetworkDiagnostics>
   <showNetworkDiagnosticsFromApplyConfig type="bool">False</showNetworkDiagnosticsFromApplyConfig>
   <showNetworkDiagnosticsAfterRunStops type="bool">False</showNetworkDiagnosticsAfterRunStops>
   <resetNetworkDiagnosticsAtStartRun type="bool">False</resetNetworkDiagnosticsAtStartRun>
   <enableNetworkDiagnosticsLogging type="bool">False</enableNetworkDiagnosticsLogging>
   <enableTcpAdvancedStats type="bool">False</enableTcpAdvancedStats>
   <enableFrameSizeDistributionStats type="bool">False</enableFrameSizeDistributionStats>
   <isFrameSizeDistributionViewSupported type="bool">False</isFrameSizeDistributionViewSupported>
   <statViewThroughputUnits type="str">Kbps</statViewThroughputUnits>
   <totalUserObjectiveInfoList ver="[0, [3, [0, [0, [0], [0]], [0]]]]" type="ixTotalUserObjectiveInfoList" itemtype="ixTotalUserObjectiveInfo"/>
   <activitiesGroupedByObjective type="bool">False</activitiesGroupedByObjective>
   <eventHandlerSettings ver="[0, [1, [0, [0]]]]" type="ixEventHandlerSettings">
    <disabledEventClasses type="str"></disabledEventClasses>
    <disabledPorts type="str"></disabledPorts>
    <_apiUniqueId type="int">12990</_apiUniqueId>
   </eventHandlerSettings>
   <allowMixedObjectiveTypes type="bool">False</allowMixedObjectiveTypes>
   <networkProtocolOptions type="NoneType">None</networkProtocolOptions>
   <seedForRandomBehavior type="int">0</seedForRandomBehavior>
   <csvThroughputScalingFactor type="int">0</csvThroughputScalingFactor>
   <reporterThroughputScalingFactor type="int">0</reporterThroughputScalingFactor>
   <profileDirectory ver="[2, [1, [0, [0]]]]" type="ixProfileDirectory">
    <categoryList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileCategoryList" itemtype="ixProfileCategory">
     <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory">
      <name type="str">Playlist</name>
      <categoryId type="str">playlist</categoryId>
      <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/>
      <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.Playlist.ixPropertyMap_PlaylistCategory$ixPropertyMap_PlaylistCategory"/>
      <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/>
      <objectID type="int">0</objectID>
     </item>
     <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory">
      <name type="str">Random Data</name>
      <categoryId type="str">rdge</categoryId>
      <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/>
      <pm ver="[0, [1, [0.1, [1, [0, [0]]]]]]" type="#Plugins.profile.RandomData.ixPropertyMap_RandomDataCategory$ixPropertyMap_RandomDataCategory">
       <startcore type="int">0</startcore>
       <totalcores type="int">1</totalcores>
      </pm>
      <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/>
      <objectID type="int">1</objectID>
     </item>
     <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory">
      <name type="str">Real File</name>
      <categoryId type="str">realfile</categoryId>
      <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/>
      <pm type="NoneType">None</pm>
      <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/>
      <objectID type="int">2</objectID>
     </item>
     <item ver="[0, [1, [0, [0]]]]" type="ixProfileCategory">
      <name type="str">Unified File System</name>
      <categoryId type="str">ufs</categoryId>
      <profileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/>
      <pm type="NoneType">None</pm>
      <temporaryProfileList ver="[0, [0, [3, [0, [0, [0], [0]], [0]]]]]" type="ixProfileList" itemtype="ixProfile"/>
      <objectID type="int">3</objectID>
     </item>
    </categoryList>
    <_profileMru type="str"></_profileMru>
   </profileDirectory>
   <communityList type="NoneType">None</communityList>
   <autoUpdateAppFlowsToLatest type="bool">True</autoUpdateAppFlowsToLatest>
   <downgradeAppLibFlowsToLatestValidVersion type="bool">True</downgradeAppLibFlowsToLatestValidVersion>
   <objectID type="int">0</objectID>
   <_apiUniqueId type="int">12920</_apiUniqueId>
   <lastStatViewerConfiguration type="str"></lastStatViewerConfiguration>
   <statManagerOptions ver="[1, [1, [0, [0]]]]" type="ixStatManagerOptions">
    <pollingInterval type="int">2</pollingInterval>
    <allowCsvLogging type="bool">False</allowCsvLogging>
    <enableDataStore type="bool">False</enableDataStore>
    <svConfiguration type="str">begin 666 &lt;data&gt;&#10;M&gt;)RE6(ENXS80_17!!8(6J$Z?&lt;9PL'!\;81W;L+P'T!0!(]&amp;.NK*D)2D?6_3?&#10;M.Z0.R[+D!&quot;V01!3?F^&amp;0&gt;AP.T_NPWWC2%A/J!OYM35&gt;TVH&gt;[GL40^^+B'29'&#10;MJ*6T-$53C':K!@1,&gt;&gt;_$I4SZA ^W-10R=^\BA6Z5D%M0AGT;*SG&gt;5X)&quot;@,!X&#10;M,)LN1].EI-[UYHN1!&lt;W^TIQ-B^_/HZ&amp;Y[-]/1AP8S![OS&gt;EHF U-L]9[ C@;&#10;M_*XW)OA'!)R#M$5&gt;A&amp;]K1DT,1+&gt;38+UV_77:/T8&gt;Q0);NAML'7S['K^BK1N0&#10;ME*%E*&amp;5H$\X)MET168+7!3Y:$PB&amp;+^OR$.(4TP4V@V7V N3,2&lt;&quot;PS7*V2Q+A&#10;M0F /KN-@GSNBYS&amp;.?/3BX2%BR&amp;(!P&gt;&gt;$^7%U\G$TRJPOC@0!S2(61BQ;R&lt;?(&#10;M8V[H%&gt;&lt;F2$/K#=HCVG/948AO$%$6;#[&quot;-WO-.*UTS+'KX3EB&amp;2+Z^QXFC*9/&#10;M&quot;33MT^Z&gt;NK&gt;U5\;&quot;KJKN=CME5U&lt;&quot;LE8-3=/5;X\3RW[%&amp;R2[/GPT6(Q:9N6\&#10;M;24&amp;5=-1AWB%8$YBG4[?!.T4'I @40'!&amp;-#&quot;^P(Y;O&quot;1!%%8 %R?W1D]E3]Z&#10;M:B5KX+G89^. ;&quot;(/69@QT$OV[?Z^^F4_O($__9NK'U' ;K[$FSM^Z&lt;8/76G&amp;&#10;MC=_/V'P&quot;&quot;?&gt;/(_CGL?G/L1EO&quot;=@0B\@OQG'EL9N3O)..K,4-&quot;502.&amp;&quot;1 !%;&#10;MR7HK;G^X6K.;7&amp;3@*AG%]%&gt;!A8F+//&lt;GXEOH'JUS2HC-WRV'))*C)MYG'[-.&#10;M8Y0D'N7FF26K 2IW;=CI(2WR8B:?SQ1M,$=Y6^&gt;=:KZWW&amp;: &amp;%X'Y, 9? NK&#10;M#\OE/+/-H^?V@]4ZW5B&lt;,.X^F=_,OKP&lt;64OKB?N1M^.OS^9\VWANS -0O3P8&#10;MR/J]0O8K,4+!OCQ 3-()./0XJ6/ON=4P$G.6U$KX89&gt;(^ +'&gt;HO#PYB]_,4S&#10;M[Q;32ZP'=_WJP2^K9&amp;7YE9F0.YF[&lt;C'AS&amp;;=KF/=T&gt;6ZIF&amp;Y8;20_(+LCMS2&#10;MM':GLUIU.IVZ6),J!^=#@9CR.H'71D&lt;3/G+(N=EGBHEE#CEHR;K&lt;E U=;AO-&#10;M&gt;J/9;-0A'D-O&amp;?5F1VX:;:/&gt;-AH:A-RZOFZUA&gt;N&lt;=6E$(&amp;_&quot;L#/S.&lt;/0]+:L&#10;MZ[+67NKU;H/_*.V6WKIN-V6MT]6R:$^L*OP&amp;&lt;(0#0X+=W/5=+]F1# [(9+-6&#10;M?)$X)SXB^]7U&lt;;HLPZGU4&gt;8:C^5;1GG#4]]Q^('.F3 AQ6@V%*.N*;IQ?33L&#10;M=O737*56N3@?S-Q/,=L%Y'N:I8'548RX&quot;(NE4D:YX&amp;B!/8RHF)NYGT&quot;Y(744&#10;M79-&amp;_5-G.=H%9^E6'W2?()&gt;M&quot;=I(/ -0Z==]I_7;DPG%V%,\RA./6BZ.4ITJ&#10;MS/T&quot;AY!C,,E-&quot;W3#9ZZW$R\EE/(=^_G1LI$G9J-KB&gt; *_&gt;&gt;&amp;UC8'?WJ!3,W-&#10;M3GI+12H*DS,9&quot;N/WY/_&lt;.8$IE QT%O*#K$(@@\#S(&amp;7Q*DXH&amp;C,$'\&quot;)97:*&#10;M51I/,&quot;(^=OC9R7DK7MWE'13P2C]C+]B)&gt;H26NCF%*[U ZN-,40=RHMC;.3=%&#10;M_)*CI/*_Y*M(J78'97E@!Y[I@^)6R,;E'DM9E4X70&lt;3P OGK&lt;F\%N,S-)N39&#10;M8YG)I;CT97B5+B_J+=:E&lt;_&quot;Y:N&amp;Z57+XG5&quot;^\#KOC)1MO8IBC;/CPCJ[I/V'&#10;M^V%6=_/[B&gt;\=Q+O..R:N_QT[Q[K\:*,F2CBV:&quot;G.[[%W/2%DR8=3XK8FO-5R&#10;M%^C:*1Y?96I20!Q,Q%4'V2 ,.L%;[*5W3E58P(76WX27;[- 2,H#&lt;67)76&lt;Y&#10;M- C\E;N.&quot;,I?(/FJ4P!M ,7W2-ZWB,0QQH&lt;GMT^.423*H//CU&lt;'4)JY02 +F&#10;MJEWP&quot;D&gt;:!^=96F7QKYT,E!_7P=LW#'(,-1_Y_]6&amp;,.?SY(_L/QQW_P)K190H&#10; &#10;end&#10;</svConfiguration>
    <svRestConfiguration type="str"></svRestConfiguration>
   </statManagerOptions>
   <currentUniqueIDForAgent type="int">6</currentUniqueIDForAgent>
   <_scenarioElementFactory ver="[0, [1, [0, [0]]]]" type="ixScenarioElementFactory">
    <singletonDict type="dict"/>
    <referenceCountDict type="dict">
     <item>
      <key type="str">qovCoprocessor</key>
      <value type="int">0</value>
     </item>
     <item>
      <key type="str">Impairment</key>
      <value type="int">0</value>
     </item>
     <item>
      <key type="str">asrCoprocessor</key>
      <value type="int">0</value>
     </item>
    </referenceCountDict>
   </_scenarioElementFactory>
  </item>
 </testList>
</root>