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 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440
|
# copyright (c) 1995 The Regents of the University of California.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed by the Computer Systems
# Engineering Group at Lawrence Berkeley Laboratory.
# 4. Neither the name of the University nor of the Laboratory may be used
# to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# @(#) $Header: /cvsroot/nsnam/ns-2/tcl/test/test-suite-friendly.tcl,v 1.78 2007/09/16 17:15:07 sallyfloyd Exp $
#
source misc_simple.tcl
source support.tcl
remove-all-packet-headers ; # removes all except common
add-packet-header Flags IP RTP TCP TFRC TFRC_ACK ; # hdrs reqd for validation test
# FOR UPDATING GLOBAL DEFAULTS:
Queue/RED set bytes_ false
# default changed on 10/11/2004.
Queue/RED set queue_in_bytes_ false
# default changed on 10/11/2004.
Queue/RED set q_weight_ 0.002
Queue/RED set thresh_ 5
Queue/RED set maxthresh_ 15
# The RED parameter defaults are being changed for automatic configuration.
##########################
Agent/TFRCSink set numPkts_ 1
# The default for numPkts_ might be changed to 3, at some point.
# But right now, the code for numPkts does not work, except for numPkts_ 1.
# With numPkts set to 1, TFRCSink is not robust to reordering.
##########################
Agent/TFRC set maxHeavyRounds_ 0
Agent/TCP set window_ 100
# Uncomment the line below to use a random seed for the
# random number generator.
# ns-random 0
TestSuite instproc finish file {
global quiet PERL
exec $PERL ../../bin/getrc -s 2 -d 3 all.tr | \
$PERL ../../bin/raw2xg -s 0.01 -m 90 -t $file > temp1.rands
if {$quiet == "false"} {
exec xgraph -bb -tk -nl -m -x time -y packets temp1.rands &
}
## now use default graphing tool to make a data file
## if so desired
# exec csh figure2.com $file
# exec cp temp1.rands temp.$file
# exec csh gnuplotA.com temp.$file $file
### exit 0
}
Class Topology
Topology instproc node? num {
$self instvar node_
return $node_($num)
}
Class Topology/net2 -superclass Topology
Topology/net2 instproc init ns {
$self instvar node_
set node_(s1) [$ns node]
set node_(s2) [$ns node]
set node_(r1) [$ns node]
set node_(r2) [$ns node]
set node_(s3) [$ns node]
set node_(s4) [$ns node]
$self next
Queue/RED set gentle_ true
$ns duplex-link $node_(s1) $node_(r1) 10Mb 2ms DropTail
$ns duplex-link $node_(s2) $node_(r1) 10Mb 3ms DropTail
$ns duplex-link $node_(r1) $node_(r2) 1.5Mb 20ms RED
$ns queue-limit $node_(r1) $node_(r2) 50
$ns queue-limit $node_(r2) $node_(r1) 50
$ns duplex-link $node_(s3) $node_(r2) 10Mb 4ms DropTail
$ns duplex-link $node_(s4) $node_(r2) 10Mb 5ms DropTail
}
Class Topology/net2a -superclass Topology
Topology/net2a instproc init ns {
$self instvar node_
set node_(s1) [$ns node]
set node_(s2) [$ns node]
set node_(r1) [$ns node]
set node_(r2) [$ns node]
set node_(s3) [$ns node]
set node_(s4) [$ns node]
$self next
Queue/RED set gentle_ true
$ns duplex-link $node_(s1) $node_(r1) 10Mb 2ms DropTail
$ns duplex-link $node_(s2) $node_(r1) 10Mb 3ms DropTail
$ns duplex-link $node_(r1) $node_(r2) 0.15Kb 2ms RED
$ns queue-limit $node_(r1) $node_(r2) 2
$ns queue-limit $node_(r2) $node_(r1) 50
$ns duplex-link $node_(s3) $node_(r2) 10Mb 4ms DropTail
$ns duplex-link $node_(s4) $node_(r2) 10Mb 5ms DropTail
}
Class Topology/net2d -superclass Topology
Topology/net2d instproc init ns {
$self instvar node_
set node_(s1) [$ns node]
set node_(s2) [$ns node]
set node_(r1) [$ns node]
set node_(r2) [$ns node]
set node_(s3) [$ns node]
set node_(s4) [$ns node]
$self next
Queue/RED set gentle_ true
$ns duplex-link $node_(s1) $node_(r1) 10Mb 2ms DropTail
$ns duplex-link $node_(s2) $node_(r1) 10Mb 3ms DropTail
$ns duplex-link $node_(r1) $node_(r2) 1.5Mb 20ms RED
# 1.5Mb, 12.5 1500-byte pkts per 100 ms.
$ns queue-limit $node_(r1) $node_(r2) 50
$ns queue-limit $node_(r2) $node_(r1) 50
$ns duplex-link $node_(s3) $node_(r2) 10Mb 4ms DropTail
$ns duplex-link $node_(s4) $node_(r2) 10Mb 5ms DropTail
}
Class Topology/net3 -superclass Topology
Topology/net3 instproc init ns {
$self instvar node_
set node_(s1) [$ns node]
set node_(s2) [$ns node]
set node_(r1) [$ns node]
set node_(r2) [$ns node]
set node_(s3) [$ns node]
set node_(s4) [$ns node]
$self next
$ns duplex-link $node_(s1) $node_(r1) 10Mb 2ms DropTail
$ns duplex-link $node_(s2) $node_(r1) 10Mb 3ms DropTail
$ns duplex-link $node_(r1) $node_(r2) 2Mb 300ms DropTail
$ns queue-limit $node_(r1) $node_(r2) 1000
$ns queue-limit $node_(r2) $node_(r1) 1000
$ns duplex-link $node_(s3) $node_(r2) 10Mb 4ms DropTail
$ns duplex-link $node_(s4) $node_(r2) 10Mb 5ms DropTail
}
#
# Arrange for TFCC stats to be dumped for $src every
# $interval seconds of simulation time
#
TestSuite instproc tfccDump { label src interval file } {
$self instvar dump_inst_ ns_ f
if ![info exists dump_inst_($src)] {
set dump_inst_($src) 1
$ns_ at 0.0 "$self tfccDump $label $src $interval $file"
return
}
set nexttime [expr [$ns_ now] + $interval]
$ns_ at $nexttime "$self tfccDump $label $src $interval $file"
set report "[$ns_ now] $label [$src set ndatapack_] "
puts $file $report
}
#
# Arrange for TCP stats to be dumped for $tcp every
# $interval seconds of simulation time
#
TestSuite instproc pktsDump { label tcp interval file } {
$self instvar dump_inst_ ns_
if ![info exists dump_inst_($tcp)] {
set dump_inst_($tcp) 1
$ns_ at 0.0 "$self pktsDump $label $tcp $interval $file"
return
}
$ns_ at [expr [$ns_ now] + $interval] "$self pktsDump $label $tcp $interval $file"
set report "[$ns_ now] $label [$tcp set ack_]"
puts $file $report
}
# display graph of results
TestSuite instproc finish_1 testname {
global quiet
$self instvar topo_
set graphfile temp.rands
set awkCode {
{
if ($2 == fid) { print $1, $3 - last; last = $3 }
}
}
set f [open $graphfile w]
puts $f "TitleText: $testname"
puts $f "Device: Postscript"
exec rm -f temp.p
exec touch temp.p
foreach i { 1 2 3 4 5} {
exec echo "\n\"flow $i" >> temp.p
exec awk $awkCode fid=$i temp.s > temp.$i
exec cat temp.$i >> temp.p
exec echo " " >> temp.p
}
exec cat temp.p >@ $f
close $f
exec cp -f $graphfile temp2.rands
if {$quiet == "false"} {
exec xgraph -bb -tk -x time -y packets temp2.rands &
}
# exec csh gnuplotB.com temp2.rands $testname
# exec csh figure2.com temp.rands $testname
### exit 0
}
TestSuite instproc runFriendly {} {
$self instvar ns_ node_ interval_ dumpfile_ guide_
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 3]
set tf2 [$ns_ create-connection TFRC $node_(s2) TFRCSink $node_(s4) 4]
$ns_ at 0.0 "$tf1 start"
$ns_ at 4.0 "$tf2 start"
$ns_ at 30 "$tf1 stop"
$ns_ at 30 "$tf2 stop"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$self tfccDump 2 $tf2 $interval_ $dumpfile_
}
TestSuite instproc runTcp {} {
$self instvar ns_ node_ interval_ dumpfile_
set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(s3) 3]
set ftp1 [$tcp1 attach-app FTP]
set tcp2 [$ns_ create-connection TCP/Sack1 $node_(s2) TCPSink/Sack1 $node_(s4) 4]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 0.0 "$ftp1 start"
$ns_ at 4.0 "$ftp2 start"
$ns_ at 30 "$ftp1 stop"
$ns_ at 30 "$ftp2 stop"
$self pktsDump 1 $tcp1 $interval_ $dumpfile_
$self pktsDump 2 $tcp2 $interval_ $dumpfile_
}
TestSuite instproc runTcps {} {
$self instvar ns_ node_ interval_ dumpfile_
set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s2) TCPSink/Sack1 $node_(s4) 0]
set ftp1 [$tcp1 attach-app FTP]
set tcp2 [$ns_ create-connection TCP/Sack1 $node_(s2) TCPSink/Sack1 $node_(s4) 1]
set ftp2 [$tcp2 attach-app FTP]
set tcp3 [$ns_ create-connection TCP/Sack1 $node_(s2) TCPSink/Sack1 $node_(s4) 2]
set ftp3 [$tcp3 attach-app FTP]
$ns_ at 8.0 "$ftp1 start"
$ns_ at 12.0 "$ftp2 start"
$ns_ at 16.0 "$ftp3 start"
$ns_ at 24 "$ftp2 stop"
$ns_ at 20 "$ftp3 stop"
$self pktsDump 3 $tcp1 $interval_ $dumpfile_
$self pktsDump 4 $tcp2 $interval_ $dumpfile_
$self pktsDump 5 $tcp3 $interval_ $dumpfile_
}
Class Test/slowStartDiscount -superclass TestSuite
Test/slowStartDiscount instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ slowStartDiscount
set guide_ "TFRC with discount_ true, for discounting older loss intervals."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 0
Agent/TFRC set df_ 0.25
Agent/TFRC set ca_ 0
Queue/RED set gentle_ false
Test/slowStartDiscount instproc run {} [Test/slowStart info instbody run ]
$self next pktTraceFile
}
Class Test/slowStartDiscount1 -superclass TestSuite
Test/slowStartDiscount1 instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ slowStartDiscount1
set guide_ "TFRC with minDiscountRatio_ set to 0.25, for stronger discounting."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 0
Agent/TFRCSink set minDiscountRatio_ 0.25
Agent/TFRC set df_ 0.25
Agent/TFRC set ca_ 0
Queue/RED set gentle_ false
Test/slowStartDiscount1 instproc run {} [Test/slowStart info instbody run ]
$self next pktTraceFile
}
Class Test/slowStartDiscountCA -superclass TestSuite
Test/slowStartDiscountCA instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ slowStartDiscountCA
set guide_ "TFRC with ca_ true, for Sqrt(RTT) based congestion avoidance mode."
Agent/TFRCSink set discount_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Agent/TFRCSink set discount_ 0
Agent/TFRCSink set smooth_ 0
Queue/RED set gentle_ false
Test/slowStartDiscountCA instproc run {} [Test/slowStart info instbody run ]
$self next pktTraceFile
}
Class Test/smooth -superclass TestSuite
Test/smooth instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ smooth
set guide_ "TFRC with smooth_ true, for smoothly incorporating new loss intervals."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRC set df_ 0.25
Agent/TFRC set ca_ 0
Test/smooth instproc run {} [Test/slowStart info instbody run ]
$self next pktTraceFile
}
Class Test/smoothCA -superclass TestSuite
Test/smoothCA instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ smoothCA
set guide_ "TFRC with smooth_, discount_, and ca_ all true."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Test/smoothCA instproc run {} [Test/slowStart info instbody run ]
$self next pktTraceFile
}
Class Test/slowStart -superclass TestSuite
Test/slowStart instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ slowStart
set guide_ "TFRC with smooth_, discount_, and ca_ all false."
Agent/TFRCSink set discount_ 0
Agent/TFRCSink set smooth_ 0
Agent/TFRC set df_ 0.25
Agent/TFRC set ca_ 0
Queue/RED set gentle_ false
$self next pktTraceFile
}
Class Test/slowStartCA -superclass TestSuite
Test/slowStartCA instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ slowStartCA
set guide_ "TFRC with discount_ false and ca_ true."
Agent/TFRCSink set discount_ 0
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Test/slowStartCA instproc run {} [Test/slowStart info instbody run ]
$self next pktTraceFile
}
Test/slowStart instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 40.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$ns_ at 0.0 "$tf1 start"
$ns_ at 30 "$tf1 stop"
set tf2 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 1]
if {$stopTime > 16} {
$ns_ at 16 "$tf2 start"
$ns_ at $stopTime "$tf2 stop"
$self tfccDump 2 $tf2 $interval_ $dumpfile_
}
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
# This test uses EWMA for estimating the loss event rate.
Class Test/slowStartEWMA -superclass TestSuite
Test/slowStartEWMA instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ slowStartEWMA
set guide_ "TFRC with EWMA for estimating the loss event rate."
Agent/TFRCSink set algo_ 2
Test/slowStartEWMA instproc run {} [Test/slowStart info instbody run ]
$self next pktTraceFile
}
# This test uses Fixed Windows for estimating the loss event rate.
Class Test/slowStartFixed -superclass TestSuite
Test/slowStartFixed instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ slowStartFixed
set guide_ "TFRC with Fixed Windows for estimating the loss event rate."
Agent/TFRCSink set algo_ 3
Test/slowStartFixed instproc run {} [Test/slowStart info instbody run ]
$self next pktTraceFile
}
Class Test/ecn -superclass TestSuite
Test/ecn instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ ecn
set guide_ "TFRC with ECN."
Agent/TFRC set ecn_ 1
Queue/RED set setbit_ true
Test/ecn instproc run {} [Test/slowStart info instbody run ]
$self next pktTraceFile
}
Class Test/slowStartTcp -superclass TestSuite
Test/slowStartTcp instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ slowStartTcp
set guide_ "TCP"
$self next pktTraceFile
}
Test/slowStartTcp instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 40.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(s3) 0]
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 0.0 "$ftp1 start"
$ns_ at 30 "$ftp1 stop"
set tcp2 [$ns_ create-connection TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(s3) 1]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 16 "$ftp2 start"
$ns_ at $stopTime "$ftp2 stop"
$self tfccDump 1 $tcp1 $interval_ $dumpfile_
$self tfccDump 2 $tcp2 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/impulseDiscount -superclass TestSuite
Test/impulseDiscount instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ impulseDiscount
set guide_ "TFRC with discount_ true, for discounting older loss intervals."
Agent/TFRCSink set discount_ 1
Agent/TFRC set df_ 0.25
Agent/TFRC set ca_ 0
Agent/TFRCSink set smooth_ 0
Test/impulseDiscount instproc run {} [Test/impulseCA info instbody run ]
$self next pktTraceFile
}
Class Test/impulseDiscountCA -superclass TestSuite
Test/impulseDiscountCA instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ impulseDiscountCA
set guide_ "TFRC with discount_ and ca_ true, smooth_ false."
Agent/TFRCSink set discount_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Agent/TFRCSink set smooth_ 0
Test/impulseDiscountCA instproc run {} [Test/impulseCA info instbody run ]
$self next pktTraceFile
}
Class Test/impulse -superclass TestSuite
Test/impulse instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ impulse
set guide_ "TFRC with smooth_, discount_, and ca_ all false."
Agent/TFRCSink set discount_ 0
Agent/TFRC set df_ 0.25
Agent/TFRC set ca_ 0
Agent/TFRCSink set smooth_ 0
Test/impulse instproc run {} [Test/impulseCA info instbody run ]
$self next pktTraceFile
}
Class Test/impulseCA -superclass TestSuite
Test/impulseCA instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ impulseCA
set guide_ "TFRC with ca_ true, for Sqrt(RTT) based congestion avoidance mode."
Agent/TFRCSink set discount_ 0
Agent/TFRCSink set smooth_ 0
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
# Test/impulseCA instproc run {} [Test/impulseCA info instbody run ]
$self next pktTraceFile
}
Test/impulseCA instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 40.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$ns_ at 0.0 "$tf1 start"
$ns_ at $stopTime "$tf1 stop"
set tf2 [$ns_ create-connection TFRC $node_(s2) TFRCSink $node_(s4) 1]
$ns_ at 10.0 "$tf2 start"
$ns_ at 20.0 "$tf2 stop"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$self tfccDump 2 $tf2 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/impulseMultReport -superclass TestSuite
Test/impulseMultReport instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ impulseMultReport
set guide_ "TFRC with feedback four times per RTT, discount_ and ca_ false."
Agent/TFRCSink set NumFeedback_ 4
Agent/TFRCSink set discount_ 0
Agent/TFRC set df_ 0.25
Agent/TFRC set ca_ 0
$self next pktTraceFile
}
Test/impulseMultReport instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 40.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$ns_ at 0.0 "$tf1 start"
set tf2 [$ns_ create-connection TFRC $node_(s2) TFRCSink $node_(s4) 1]
$ns_ at 10.0 "$tf2 start"
$ns_ at 20.0 "$tf2 stop"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$self tfccDump 2 $tf2 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
# Feedback 4 times per roundtrip time.
Class Test/impulseMultReportDiscount -superclass TestSuite
Test/impulseMultReportDiscount instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ impulseMultReportDiscount
set guide_ "TFRC with feedback four times per round-trip time, discount_ true, ca_ false."
Agent/TFRCSink set NumFeedback_ 4
Agent/TFRCSink set discount_ 1
Agent/TFRC set df_ 0.25
Agent/TFRC set ca_ 0
Test/impulseMultReportDiscount instproc run {} [Test/impulseMultReport info instbody run ]
$self next pktTraceFile
}
# Feedback 4 times per roundtrip time.
Class Test/impulseMultReportDiscountCA -superclass TestSuite
Test/impulseMultReportDiscountCA instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ impulseMultReportDiscountCA
set guide_ "TFRC with feedback four times per RTT, discount_ and ca_ true."
Agent/TFRCSink set NumFeedback_ 4
Agent/TFRCSink set discount_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Test/impulseMultReportDiscountCA instproc run {} [Test/impulseMultReport info instbody run ]
$self next pktTraceFile
}
Class Test/impulseMultReportCA -superclass TestSuite
Test/impulseMultReportCA instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ impulseMultReportCA
set guide_ "TFRC with feedback four times per RTT, discount_ false, ca_ true."
Agent/TFRCSink set NumFeedback_ 4
Agent/TFRCSink set discount_ 0
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Test/impulseMultReportCA instproc run {} [Test/impulseMultReport info instbody run ]
$self next pktTraceFile
}
Class Test/impulseTcp -superclass TestSuite
Test/impulseTcp instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ impulseTcp
set guide_ "TFRC with discount_, smooth_, and ca_ false."
$self next pktTraceFile
}
Test/impulseTcp instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 40.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(s3) 0]
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 0.0 "$ftp1 start"
set tcp2 [$ns_ create-connection TCP/Sack1 $node_(s2) TCPSink/Sack1 $node_(s4) 1]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 10.0 "$ftp2 start"
$ns_ at 20.0 "$ftp2 stop"
$self tfccDump 1 $tcp1 $interval_ $dumpfile_
$self tfccDump 2 $tcp2 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
# Two TFRC connections and three TCP connections.
Class Test/two-friendly -superclass TestSuite
Test/two-friendly instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ two-friendly
set guide_ "Two TFRC and three TCP connections, ca_ false."
Agent/TFRC set df_ 0.25
Agent/TFRC set ca_ 0
Agent/TCP set timerfix_ false
# The default is being changed to true.
$self next pktTraceFile
}
# Two TFRC connections and three TCP connections.
Class Test/two-friendlyCA -superclass TestSuite
Test/two-friendlyCA instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ two-friendlyCA
Agent/TFRCSink set discount_ 0
set guide_ "Two TFRC and three TCP connections, ca_ true."
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Agent/TCP set timerfix_ false
# The default is being changed to true.
Test/two-friendlyCA instproc run {} [Test/two-friendly info instbody run ]
$self next pktTraceFile
}
Test/two-friendly instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 30.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
$self runFriendly
$self runTcps
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
# Only TCP
Class Test/OnlyTcp -superclass TestSuite
Test/OnlyTcp instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ OnlyTcp
set guide_ "Five TCP connections."
Agent/TCP set timerfix_ false
# The default is being changed to true.
$self next pktTraceFile
}
Test/OnlyTcp instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 30.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
$self runTcp
$self runTcps
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
## Random factor added to sending times
Class Test/randomized -superclass TestSuite
Test/randomized instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ randomized
set guide_ "Random delay added to sending times, ca_ false."
Agent/TFRC set overhead_ 0.5
Agent/TFRC set df_ 0.25
Agent/TFRC set ca_ 0
Test/randomized instproc run {} [Test/slowStart info instbody run]
$self next pktTraceFile
}
## Random factor added to sending times
Class Test/randomizedCA -superclass TestSuite
Test/randomizedCA instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ randomizedCA
set guide_ "Random delay added to sending times, with ca_."
Agent/TFRC set overhead_ 0.5
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Test/randomizedCA instproc run {} [Test/slowStart info instbody run]
$self next pktTraceFile
}
## Smaller random factor added to sending times
Class Test/randomized1 -superclass TestSuite
Test/randomized1 instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ randomized1
set guide_ "Smaller random delay added to sending times, ca_ false."
Agent/TFRC set overhead_ 0.1
Agent/TFRC set df_ 0.25
Agent/TFRC set ca_ 0
Test/randomized1 instproc run {} [Test/slowStart info instbody run]
$self next pktTraceFile
}
## Smaller random factor added to sending times
Class Test/randomized1CA -superclass TestSuite
Test/randomized1CA instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ randomized1CA
set guide_ "Smaller random delay added to sending times, with ca_."
Agent/TFRC set overhead_ 0.1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Test/randomized1CA instproc run {} [Test/slowStart info instbody run]
$self next pktTraceFile
}
Class Test/slow -superclass TestSuite
Test/slow instproc init {} {
$self instvar net_ test_ guide_
set net_ net2a
set test_ slow
set guide_ "Very slow path."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
$self next pktTraceFile
}
Test/slow instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
# [$ns_ link $node_(r1) $node_(r2)] set bandwidth 0.001Mb
# [$ns_ link $node_(r1) $node_(r2)] set queue-limit 5
set interval_ 100
set stopTime 4000.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$ns_ at 0.0 "$tf1 start"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/twoDrops -superclass TestSuite
Test/twoDrops instproc init {} {
$self instvar net_ test_ guide_ drops_ stopTime1_
set net_ net2
set test_ twoDrops
set guide_ "TFRC, with two packets dropped near the beginning."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
set drops_ " 2 3 "
set stopTime1_ 5.0
$self next pktTraceFile
}
Class Test/manyDrops -superclass TestSuite
Test/manyDrops instproc init {} {
$self instvar net_ test_ guide_ drops_ stopTime1_
set net_ net2
set test_ manyDrops
set guide_ "TFRC, with many packets dropped in the beginning."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
## set stopTime1_ 100.0
set stopTime1_ 100.0
# set drops_ " 0 1 "
set drops_ " 0 1 2 3 4 5 6 "
Test/manyDrops instproc run {} [Test/twoDrops info instbody run ]
$self next pktTraceFile
}
Test/twoDrops instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ drops_ stopTime1_
puts "Guide: $guide_"
$self setTopo
set interval_ 1
set stopTime $stopTime1_
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set em [new ErrorModule Fid]
set lossylink_ [$ns_ link $node_(r1) $node_(r2)]
$lossylink_ errormodule $em
$em default pass
set emod [$lossylink_ errormodule]
set errmodel [new ErrorModel/List]
$errmodel unit pkt
$errmodel droplist $drops_
$emod insert $errmodel
$emod bind $errmodel 0
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$ns_ at 0.0 "$tf1 start"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/HighLoss -superclass TestSuite
Test/HighLoss instproc init {} {
$self instvar net_ test_ guide_ stopTime1_
set net_ net2
set test_ HighLoss
set guide_ "TFRC competing against a CBR flow, with high loss."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
set stopTime1_ 60
$self next pktTraceFile
}
Test/HighLoss instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ stopTime1_
puts "Guide: $guide_"
$self setTopo
set interval_ 1
set stopTime $stopTime1_
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$ns_ at 0.0 "$tf1 start"
set udp1 [$ns_ create-connection UDP $node_(s2) UDP $node_(s4) 1]
set cbr1 [$udp1 attach-app Traffic/CBR]
$cbr1 set rate_ 3Mb
$ns_ at [expr $stopTime1_/3.0] "$cbr1 start"
$ns_ at [expr 2.0*$stopTime1_/3.0] "$cbr1 stop"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/HighLossShort -superclass TestSuite
Test/HighLossShort instproc init {} {
$self instvar net_ test_ guide_ stopTime1_
set net_ net2
set test_ HighLossShort
set guide_ "TFRC competing against a CBR flow, with high loss, ShortIntervals_."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRCSink set ShortIntervals_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
set stopTime1_ 80
Test/HighLossShort instproc run {} [Test/HighLoss info instbody run ]
$self next pktTraceFile
}
# PreciseLoss_ is turned off
Class Test/HighLossImprecise -superclass TestSuite
Test/HighLossImprecise instproc init {} {
$self instvar net_ test_ guide_ stopTime1_
set net_ net2
set test_ HighLossImprecise
set guide_ "TFRC competing against a CBR flow, with PreciseLoss_ off."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Agent/TFRCSink set PreciseLoss_ 0
set stopTime1_ 80
$self next pktTraceFile
}
Test/HighLossImprecise instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ stopTime1_
puts "Guide: $guide_"
$self setTopo
set interval_ 1
set stopTime $stopTime1_
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$ns_ at 0.0 "$tf1 start"
set udp1 [$ns_ create-connection UDP $node_(s2) UDP $node_(s4) 1]
set cbr1 [$udp1 attach-app Traffic/CBR]
$cbr1 set rate_ 3Mb
$ns_ at [expr $stopTime1_/4.0] "$cbr1 start"
$ns_ at [expr 2.0*$stopTime1_/4.0] "$cbr1 stop"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/HighLossMinRTO -superclass TestSuite
Test/HighLossMinRTO instproc init {} {
$self instvar net_ test_ guide_ stopTime1_
set net_ net2
set test_ HighLossMinRTO
set guide_ "TFRC competing against a CBR flow, with high loss, high MinRTO."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Agent/TFRC set minrto_ 1.0
# Minimum RTO of one second. This slows down the TFRC flow.
set stopTime1_ 60
Test/HighLossMinRTO instproc run {} [Test/HighLoss info instbody run ]
$self next pktTraceFile
}
Class Test/HighLossConservative -superclass TestSuite
Test/HighLossConservative instproc init {} {
$self instvar net_ test_ guide_ stopTime1_
set net_ net2
set test_ HighLossConservative
set guide_ "TFRC and CBR, with a conservative_ response to heavy congestion."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Agent/TFRC set conservative_ true
set stopTime1_ 60
# Test/HighLossConservative instproc run {} [Test/HighLoss info instbody run ]
$self next pktTraceFile
}
Test/HighLossConservative instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ stopTime1_
puts "Guide: $guide_"
$self setTopo
set interval_ 1
set stopTime $stopTime1_
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$ns_ at 0.0 "$tf1 start"
set udp1 [$ns_ create-connection UDP $node_(s2) UDP $node_(s4) 1]
set cbr1 [$udp1 attach-app Traffic/CBR]
$cbr1 set rate_ 3Mb
$ns_ at [expr $stopTime1_/3.0] "$cbr1 start"
$ns_ at [expr 2.0*$stopTime1_/3.0] "$cbr1 stop"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/HighLossTCP -superclass TestSuite
Test/HighLossTCP instproc init {} {
$self instvar net_ test_ guide_ stopTime1_
set net_ net2
set test_ HighLossTCP
set guide_ "TCP competing against a CBR flow."
Agent/TFRCSink set discount_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
set stopTime1_ 60
$self next pktTraceFile
}
Test/HighLossTCP instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ stopTime1_
puts "Guide: $guide_"
$self setTopo
set interval_ 1
set stopTime $stopTime1_
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(s3) 0]
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 0.0 "$ftp1 start"
set udp1 [$ns_ create-connection UDP $node_(s2) UDP $node_(s4) 1]
set cbr1 [$udp1 attach-app Traffic/CBR]
$cbr1 set rate_ 3Mb
$ns_ at [expr $stopTime1_/3.0] "$cbr1 start"
$ns_ at [expr 2.0*$stopTime1_/3.0] "$cbr1 stop"
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/TFRC_FTP -superclass TestSuite
Test/TFRC_FTP instproc init {} {
$self instvar net_ test_ guide_ stopTime1_
set net_ net2
set test_ TFRC_FTP
set guide_ "TFRC with a data source with limited, bursty data."
Agent/TFRC set SndrType_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Agent/TFRC set discount_ 1
Agent/TCP set oldCode_ false
Agent/TFRC set idleFix_ true ;
set stopTime1_ 15
$self next pktTraceFile
}
Test/TFRC_FTP instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ stopTime1_
puts "Guide: $guide_"
$self setTopo
set interval_ 1
set stopTime $stopTime1_
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
set ftp [new Application/FTP]
$ftp attach-agent $tf1
$ns_ at 0 "$ftp produce 100"
$ns_ at 5 "$ftp producemore 100"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/TFRC_CBR -superclass TestSuite
Test/TFRC_CBR instproc init {} {
$self instvar net_ test_ guide_ stopTime1_
set net_ net2
set test_ TFRC_CBR
set guide_ "TFRC with a data source with CBR data."
Agent/TFRC set SndrType_ 1
Agent/TFRCSink set smooth_ 1
Agent/TFRC set df_ 0.95
Agent/TFRC set ca_ 1
Agent/TFRC set discount_ 1
Agent/TCP set oldCode_ false
set stopTime1_ 15
$self next pktTraceFile
}
Test/TFRC_CBR instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ stopTime1_
puts "Guide: $guide_"
$self setTopo
set interval_ 1
set stopTime $stopTime1_
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
set cbr [new Application/Traffic/CBR]
$cbr attach-agent $tf1
$cbr set rate_ 10Kb
$ns_ at 0 "$cbr start"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/printLosses -superclass TestSuite
Test/printLosses instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ printLosses
set guide_ "One TFRC flow, with the loss intervals from the TFRC receiver."
Agent/TFRCSink set printLosses_ 1
Agent/TFRCSink set printLoss_ 1
$self next pktTraceFile
}
Test/printLosses instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 3.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$ns_ at 0.0 "$tf1 start"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
#
# This test shows that a few lost packets are not counted as lost
# by the losses array. I think this is for sequential packet losses.
#
Class Test/printLossesShort -superclass TestSuite
Test/printLossesShort instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ printLossesShort
set guide_ "A TFRC-SP flow with ShortIntervals_, loss intervals from the TFRC receiver."
$self next pktTraceFile
}
Test/printLossesShort instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 4.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
# set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
set tf1 [new Agent/TFRC]
set tf1Dest [new Agent/TFRCSink]
$tf1 set fid_ 0
$tf1 set voip_ 1
$tf1 set packetSize_ 125
$tf1Dest set ShortIntervals_ 1
$tf1Dest set fid_ 0
$ns_ attach-agent $node_(s1) $tf1
$ns_ attach-agent $node_(s3) $tf1Dest
$tf1Dest set printLosses_ 1
$tf1Dest set printLoss_ 1
$ns_ connect $tf1 $tf1Dest
set cbr0 [new Application/Traffic/CBR]
$cbr0 set packetSize_ 125
$cbr0 set interval_ 0.02
$cbr0 attach-agent $tf1
$ns_ at 0.0 "$cbr0 start"
set tf2 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 1]
$ns_ at 0.2 "$tf2 start"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/printLossesShort3 -superclass TestSuite
Test/printLossesShort3 instproc init {} {
$self instvar net_ test_ guide_
set net_ net2
set test_ printLossesShort3
set guide_ "A TFRC-SP flow with ShortIntervals_ 3, loss intervals from the TFRC receiver."
$self next pktTraceFile
}
Test/printLossesShort3 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 4.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
# set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
set tf1 [new Agent/TFRC]
set tf1Dest [new Agent/TFRCSink]
$tf1 set fid_ 0
$tf1 set voip_ 1
$tf1 set packetSize_ 125
$tf1Dest set ShortIntervals_ 3
$tf1Dest set ShortRtts_ 3
$tf1Dest set fid_ 0
$ns_ attach-agent $node_(s1) $tf1
$ns_ attach-agent $node_(s3) $tf1Dest
$tf1Dest set printLosses_ 1
$tf1Dest set printLoss_ 1
$ns_ connect $tf1 $tf1Dest
set cbr0 [new Application/Traffic/CBR]
$cbr0 set packetSize_ 125
$cbr0 set interval_ 0.02
$cbr0 attach-agent $tf1
$ns_ at 0.0 "$cbr0 start"
set tf2 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 1]
$ns_ at 0.2 "$tf2 start"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
TestSuite instproc printpkts { label tcp } {
puts "tcp $label highest_seqment_acked [$tcp set ack_]"
}
TestSuite instproc printTFRCpkts { label src } {
puts "tfrc $label [$src set ndatapack_] "
}
Class Test/goodTFRC superclass TestSuite
Test/goodTFRC instproc init {} {
$self instvar net_ test_ guide_ period_
set net_ net2
set test_ goodTFRC
set guide_ "One TFRC flow, no reordering and no extra drops."
set period_ 10000.0
$self next pktTraceFile
}
Test/goodTFRC instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ period_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 20.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$ns_ at 0.0 "$tf1 start"
$self dropPktsPeriodic [$ns_ link $node_(r2) $node_(s3)] 0 1000.0 $period_
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# $ns_ at $stopTime0 "$self printTFRCpkts 0 $tf1"
# trace only the bottleneck link
$ns_ run
}
Class Test/droppedTFRC superclass TestSuite
Test/droppedTFRC instproc init {} {
$self instvar net_ test_ guide_ list_ period_
set net_ net2
set test_ droppedTFRC
set guide_ "One TFRC flow, with extra dropped packets."
set period_ 40.0
Test/droppedTFRC instproc run {} [Test/goodTFRC info instbody run ]
$self next pktTraceFile
}
Class Test/delayedTFRC superclass TestSuite
Test/delayedTFRC instproc init {} {
$self instvar net_ test_ guide_ list_ period_
set net_ net2
set test_ delayedTFRC
set guide_ "One TFRC flow, with some packets delayed 0.03 seconds, numPkts_ 1."
set period_ 40.0
ErrorModel set delay_pkt_ true
ErrorModel set drop_ false
ErrorModel set delay_ 0.03
Agent/TFRCSink set numPkts_ 1
Test/delayedTFRC instproc run {} [Test/goodTFRC info instbody run ]
$self next pktTraceFile
}
Class Test/delayedTFRC1 superclass TestSuite
Test/delayedTFRC1 instproc init {} {
$self instvar net_ test_ guide_ list_ period_
set net_ net2
set test_ delayedTFRC1
set guide_ "One TFRC flow, with some packets delayed 0.03 seconds, numPkts_ 5."
set period_ 40.0
ErrorModel set delay_pkt_ true
ErrorModel set drop_ false
ErrorModel set delay_ 0.03
Agent/TFRCSink set numPkts_ 5
Test/delayedTFRC1 instproc run {} [Test/goodTFRC info instbody run ]
$self next pktTraceFile
}
Class Test/delayedTFRC2 superclass TestSuite
Test/delayedTFRC2 instproc init {} {
$self instvar net_ test_ guide_ list_ period_
set net_ net2
set test_ delayedTFRC2
set guide_ "One TFRC flow, with some packets delayed 0.01 seconds, numPkts_ 3."
set period_ 40.0
ErrorModel set delay_pkt_ true
ErrorModel set drop_ false
ErrorModel set delay_ 0.01
Agent/TFRCSink set numPkts_ 3
Test/delayedTFRC2 instproc run {} [Test/goodTFRC info instbody run ]
$self next pktTraceFile
}
Class Test/goodTCP superclass TestSuite
Test/goodTCP instproc init {} {
$self instvar net_ test_ guide_ list_ period_
set net_ net2
set test_ goodTCP
set guide_ "One TCP flow, no reordering and no extra drops."
set list_ {50000 50001}
set period_ 1000.0
$self next pktTraceFile
}
Test/goodTCP instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ list_ period_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 20.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(s3) 0]
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 0.0 "$ftp1 start"
$self pktsDump 1 $tcp1 $interval_ $dumpfile_
$self dropPktsPeriodic [$ns_ link $node_(r2) $node_(s3)] 0 200.0 $period_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
$ns_ at $stopTime0 "$self printpkts 0 $tcp1"
# trace only the bottleneck link
$ns_ run
}
Class Test/droppedTCP superclass TestSuite
Test/droppedTCP instproc init {} {
$self instvar net_ test_ guide_ list_ period_
set net_ net2
set test_ droppedTCP
set guide_ "One TCP flow, with extra dropped packets."
set period_ 40.0
Test/droppedTCP instproc run {} [Test/goodTCP info instbody run ]
$self next pktTraceFile
}
Class Test/delayedTCP superclass TestSuite
Test/delayedTCP instproc init {} {
$self instvar net_ test_ guide_ list_ period_
set net_ net2
set test_ delayedTCP
set guide_ "One TCP flow, with some packets delayed 0.03 seconds."
set period_ 40.0
ErrorModel set delay_pkt_ true
ErrorModel set drop_ false
ErrorModel set delay_ 0.03
Test/delayedTCP instproc run {} [Test/goodTCP info instbody run ]
$self next pktTraceFile
}
Class Test/delayedTCP2 superclass TestSuite
Test/delayedTCP2 instproc init {} {
$self instvar net_ test_ guide_ list_ period_
set net_ net2
set test_ delayedTCP2
set guide_ "One TCP flow, with some packets delayed 0.01 seconds."
set period_ 40.0
ErrorModel set delay_pkt_ true
ErrorModel set drop_ false
ErrorModel set delay_ 0.01
Test/delayedTCP2 instproc run {} [Test/goodTCP info instbody run ]
$self next pktTraceFile
}
Class Test/initRate superclass TestSuite
Test/initRate instproc init {} {
$self instvar net_ test_ guide_ period_
set net_ net2
set test_ initRate
set guide_ "One TFRC flow, initial rate of one packet per RTT."
set period_ 10000.0
Agent/TFRC set rate_init_ 1
Agent/TFRC set rate_init_option_ 1
$self next pktTraceFile
}
Test/initRate instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ period_
puts "Guide: $guide_"
$self setTopo
Agent/TFRC set SndrType_ 1
Agent/TFRC set idleFix_ true ;
set interval_ 0.1
set stopTime 2.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
set ftp [new Application/FTP]
$ftp attach-agent $tf1
$ns_ at 0 "$ftp produce 50"
$ns_ at 1.5 "$ftp producemore 50"
$self dropPktsPeriodic [$ns_ link $node_(r2) $node_(s3)] 0 1000.0 $period_
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
#$self traceQueues $node_(r1) [$self openTrace $stopTime $testName_]
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# $ns_ at $stopTime0 "$self printTFRCpkts 0 $tf1"
# trace only the bottleneck link
$ns_ run
}
Class Test/initRateLarge superclass TestSuite
Test/initRateLarge instproc init {} {
$self instvar net_ test_ guide_ period_
set net_ net2
set test_ initRateLarge
set guide_ "One TFRC flow, initial rate of 4 packets per RTT."
set period_ 10000.0
Agent/TFRC set rate_init_ 4.0
Agent/TFRC set rate_init_option_ 1
Test/initRateLarge instproc run {} [Test/initRate info instbody run ]
$self next pktTraceFile
}
Class Test/initRateLarger superclass TestSuite
Test/initRateLarger instproc init {} {
$self instvar net_ test_ guide_ period_
set net_ net2
set test_ initRateLarger
set guide_ "One TFRC flow, initial rate of 8 packets per RTT."
set period_ 10000.0
Agent/TFRC set rate_init_ 8.0
Agent/TFRC set rate_init_option_ 1
Test/initRateLarger instproc run {} [Test/initRate info instbody run ]
$self next pktTraceFile
}
Class Test/initRateRFC3390 superclass TestSuite
Test/initRateRFC3390 instproc init {} {
$self instvar net_ test_ guide_ period_
set net_ net2
set test_ initRateRFC3390
set guide_ "One TFRC flow, initial rate from RFC 3390."
set period_ 10000.0
Agent/TFRC set rate_init_option_ 2
Test/initRateRFC3390 instproc run {} [Test/initRate info instbody run ]
$self next pktTraceFile
}
TestSuite instproc printdrops { fid fmon } {
set fcl [$fmon classifier]; # flow classifier
#
set flow [$fcl lookup auto 0 0 $fid]
puts "fid: $fid drops [$flow set pdrops_] marks [$flow set pmarks_]"
puts "fid: $fid packets [$flow set pdepartures_] _bytes [$flow set bdepartures_]"
}
Class Test/tfrcOnly superclass TestSuite
Test/tfrcOnly instproc init {} {
$self instvar net_ test_ guide_
set net_ net2d
set test_ tfrcOnly
set guide_ "One VoIP TFRC flow."
Agent/TFRC set voip_ 1
Agent/TFRCSink set ShortIntervals_ 1
$self next pktTraceFile
}
Test/tfrcOnly instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 20.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set pktsize 120
set cbrInterval 0.01
set slink [$ns_ link $node_(r1) $node_(r2)]; # link to collect stats on
set fmon [$ns_ makeflowmon Fid]
$ns_ attach-fmon $slink $fmon
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
$ns_ at 0.0 "$ns_ bandwidth $node_(r1) $node_(r2) 0.2Mbps duplex"
$ns_ queue-limit $node_(r1) $node_(r2) 50
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$tf1 set packetSize_ $pktsize
set cbr [new Application/Traffic/CBR]
$cbr set packetSize_ $pktsize
$cbr set interval_ $cbrInterval
$cbr attach-agent $tf1
$ns_ at 2.0 "$cbr start"
$ns_ at $stopTime0 "$cbr stop"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
$ns_ at $stopTime0 "$self printdrops 0 $fmon"
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/tfrcOnlyHighLoss superclass TestSuite
Test/tfrcOnlyHighLoss instproc init {} {
$self instvar net_ test_ guide_ voip
set net_ net2d
set test_ tfrcOnlyHighLoss
set guide_ "One VoIP TFRC flow, high loss."
Agent/TFRC set voip_ 1
Agent/TFRCSink set ShortIntervals_ 1
$self next pktTraceFile
}
Test/tfrcOnlyHighLoss instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ voip
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 20.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set pktsize 120
set cbrInterval 0.01
set droprate 0.2
set slink [$ns_ link $node_(r1) $node_(r2)]; # link to collect stats on
set fmon [$ns_ makeflowmon Fid]
$ns_ attach-fmon $slink $fmon
set lossylink_ [$ns_ link $node_(r1) $node_(r2)]
set em [new ErrorModule Fid]
set errmodel [new ErrorModel/Uniform $droprate pkt ]
$lossylink_ errormodule $em
$em insert $errmodel
$em bind $errmodel 0 5
$em default pass
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
$ns_ at 0.0 "$ns_ bandwidth $node_(r1) $node_(r2) 0.2Mbps duplex"
$ns_ queue-limit $node_(r1) $node_(r2) 50
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$tf1 set packetSize_ $pktsize
set cbr [new Application/Traffic/CBR]
$cbr set packetSize_ $pktsize
$cbr set interval_ $cbrInterval
$cbr attach-agent $tf1
$ns_ at 2.0 "$cbr start"
$ns_ at $stopTime0 "$cbr stop"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
$ns_ at $stopTime0 "$self printdrops 0 $fmon"
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/tfrcOnlyHighLoss1 superclass TestSuite
Test/tfrcOnlyHighLoss1 instproc init {} {
$self instvar net_ test_ guide_ voip
set net_ net2d
set test_ tfrcOnlyHighLoss1
set guide_ "One VoIP TFRC flow, high loss, old measurement of loss event rate."
Agent/TFRC set voip_ 1
Agent/TFRCSink set ShortIntervals_ 11
Test/tfrcOnlyHighLoss1 instproc run {} [Test/tfrcOnlyHighLoss info instbody run ]
$self next pktTraceFile
}
Class Test/voip superclass TestSuite
Test/voip instproc init {} {
$self instvar net_ test_ guide_
set net_ net2d
set test_ voip
set guide_ "One VoIP TFRC flow and one TCP flow, different packet sizes."
Agent/TFRC set voip_ 1
Agent/TFRCSink set ShortIntervals_ 1
$self next pktTraceFile
}
Test/voip instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_
puts "Guide: $guide_"
$self setTopo
set interval_ 0.1
set stopTime 20.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set pktsize 120
set cbrInterval 0.01
set slink [$ns_ link $node_(r1) $node_(r2)]; # link to collect stats on
set fmon [$ns_ makeflowmon Fid]
$ns_ attach-fmon $slink $fmon
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
$ns_ at 0.0 "$ns_ bandwidth $node_(r1) $node_(r2) 0.2Mbps duplex"
$ns_ queue-limit $node_(r1) $node_(r2) 50
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
$tf1 set packetSize_ $pktsize
set cbr [new Application/Traffic/CBR]
$cbr set packetSize_ $pktsize
$cbr set interval_ $cbrInterval
$cbr attach-agent $tf1
$ns_ at 2.0 "$cbr start"
$ns_ at $stopTime0 "$cbr stop"
set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s2) TCPSink/Sack1 $node_(s4) 1]
$tcp1 set window_ 10
$tcp1 set packetSize_ 1460
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 0.0 "$ftp1 start"
$ns_ at $stopTime0 "$ftp1 stop"
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$self pktsDump 2 $tcp1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
$ns_ at $stopTime0 "$self printdrops 0 $fmon; $self printdrops 1 $fmon"
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
# trace only the bottleneck link
$ns_ run
}
Class Test/voipHeader superclass TestSuite
Test/voipHeader instproc init {} {
$self instvar net_ test_ guide_
set net_ net2d
set test_ voip
set guide_ "One VoIP TFRC flow with headers, and one TCP flow."
Agent/TFRC set useHeaders_ true ;
Agent/TFRC set headersize_ 32;
Agent/TFRC set voip_ 1
Agent/TFRCSink set ShortIntervals_ 1
Test/voipHeader instproc run {} [Test/voip info instbody run ]
$self next pktTraceFile
}
Class Test/voipNoHeader superclass TestSuite
Test/voipNoHeader instproc init {} {
$self instvar net_ test_ guide_
set net_ net2d
set test_ voip
set guide_ "One VoIP TFRC flow without headers, and one TCP flow."
Agent/TFRC set useHeaders_ false ;
Agent/TFRC set headersize_ 32;
Agent/TFRC set voip_ 1
Agent/TFRCSink set ShortIntervals_ 1
Test/voipNoHeader instproc run {} [Test/voip info instbody run ]
$self next pktTraceFile
}
Class Test/voipEcn superclass TestSuite
Test/voipEcn instproc init {} {
$self instvar net_ test_ guide_
set net_ net2d
set test_ voipEcn
set guide_ "One ECN VoIP TFRC flow and one TCP flow, different packet sizes."
Agent/TFRC set useHeaders_ false ;
Agent/TFRC set ecn_ 1
Agent/TFRC set voip_ 1
Agent/TFRCSink set ShortIntervals_ 1
Agent/TCP set ecn_ 1
Queue/RED set setbit_ true
Test/voipEcn instproc run {} [Test/voip info instbody run ]
$self next pktTraceFile
}
Class Test/noVoip superclass TestSuite
Test/noVoip instproc init {} {
$self instvar net_ test_ guide_
set net_ net2d
set test_ noVoip
set guide_ "One TFRC flow (not voip) and one TCP flow, different packet sizes."
Agent/TFRC set voip_ 0
Test/noVoip instproc run {} [Test/voip info instbody run ]
$self next pktTraceFile
}
Class Test/idleTfrc superclass TestSuite
Test/idleTfrc instproc init {} {
$self instvar net_ test_ guide_ period_
set net_ net3
set test_ idleTfrc
set guide_ "TFRC with two idle periods during slow-start."
set period_ 10000.0
$self next pktTraceFile
}
Test/idleTfrc instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ period_
puts "Guide: $guide_"
$self setTopo
Agent/TFRC set SndrType_ 1
Agent/TFRC set datalimited_ 1
Agent/TFRC set voip_ 1
Agent/TFRCSink set ShortIntervals_ 1
Agent/TFRC set packetSize_ 160
Agent/TFRC set voip_max_pkt_rate_ 50
set interval_ 1.0
set start_time 0.0
set stopTime 60.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
set cbr0 [new Application/Traffic/CBR]
$cbr0 set packetSize_ 160
$cbr0 set interval_ 0.02
$cbr0 attach-agent $tf1
$ns_ at $start_time "$cbr0 start"
$ns_ at 10.0 "$cbr0 stop"
$ns_ at 20.0 "$cbr0 start"
$ns_ at 25.0 "$cbr0 stop"
$ns_ at 35.0 "$cbr0 start"
$ns_ at $stopTime "$cbr0 stop"
$self dropPktsPeriodic [$ns_ link $node_(r2) $node_(s3)] 0 1000.0 $period_
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
$ns_ run
}
Class Test/idleTcp superclass TestSuite
Test/idleTcp instproc init {} {
$self instvar net_ test_ guide_ period_
set net_ net3
set test_ idleTcp
set guide_ "TCP with two idle periods during slow-start."
set period_ 10000.0
$self next pktTraceFile
}
Test/idleTcp instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ period_
puts "Guide: $guide_"
$self setTopo
Agent/TCP set packetSize_ 160
Agent/TCP set window_ 30
set interval_ 1.0
set start_time 0.0
set stopTime 60.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(s3) 0]
set cbr0 [new Application/Traffic/CBR]
$cbr0 set packetSize_ 160
$cbr0 set interval_ 0.02
$cbr0 attach-agent $tcp1
$ns_ at $start_time "$cbr0 start"
$ns_ at 10.0 "$cbr0 stop"
$ns_ at 20.0 "$cbr0 start"
$ns_ at 25.0 "$cbr0 stop"
$ns_ at 35.0 "$cbr0 start"
$ns_ at $stopTime "$cbr0 stop"
$self dropPktsPeriodic [$ns_ link $node_(r2) $node_(s3)] 0 1000.0 $period_
$self pktsDump 1 $tcp1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
$ns_ run
}
Class Test/idleTfrc1 superclass TestSuite
Test/idleTfrc1 instproc init {} {
$self instvar net_ test_ guide_ period_
set net_ net3
set test_ idleTfrc1
set guide_ "TFRC with only one idle period during slow-start."
set period_ 10000.0
$self next pktTraceFile
}
Test/idleTfrc1 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ period_
puts "Guide: $guide_"
$self setTopo
Agent/TFRC set SndrType_ 1
Agent/TFRC set datalimited_ 1
Agent/TFRC set voip_ 1
Agent/TFRCSink set ShortIntervals_ 1
Agent/TFRC set packetSize_ 160
Agent/TFRC set voip_max_pkt_rate_ 50
set interval_ 1.0
set start_time 0.0
set stopTime 60.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
set cbr0 [new Application/Traffic/CBR]
$cbr0 set packetSize_ 160
$cbr0 set interval_ 0.02
$cbr0 attach-agent $tf1
$ns_ at $start_time "$cbr0 start"
$ns_ at 10.0 "$cbr0 stop"
$ns_ at 20.0 "$cbr0 start"
$ns_ at 30.0 "$cbr0 stop"
$ns_ at 40.0 "$cbr0 start"
$ns_ at $stopTime "$cbr0 stop"
$self dropPktsPeriodic [$ns_ link $node_(r2) $node_(s3)] 0 1000.0 $period_
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
$ns_ run
}
Class Test/idleTcp1 superclass TestSuite
Test/idleTcp1 instproc init {} {
$self instvar net_ test_ guide_ period_
set net_ net3
set test_ idleTcp1
set guide_ "TCP with only one idle period during slow-start."
set period_ 10000.0
$self next pktTraceFile
}
Test/idleTcp1 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ period_
puts "Guide: $guide_"
$self setTopo
Agent/TCP set packetSize_ 160
Agent/TCP set window_ 30
set interval_ 1.0
set start_time 0.0
set stopTime 60.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(s3) 0]
set cbr0 [new Application/Traffic/CBR]
$cbr0 set packetSize_ 160
$cbr0 set interval_ 0.02
$cbr0 attach-agent $tcp1
$ns_ at $start_time "$cbr0 start"
$ns_ at 10.0 "$cbr0 stop"
$ns_ at 20.0 "$cbr0 start"
$ns_ at 30.0 "$cbr0 stop"
$ns_ at 40.0 "$cbr0 start"
$ns_ at $stopTime "$cbr0 stop"
$self dropPktsPeriodic [$ns_ link $node_(r2) $node_(s3)] 0 1000.0 $period_
$self pktsDump 1 $tcp1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
$ns_ run
}
Class Test/shortIdleTcp superclass TestSuite
Test/shortIdleTcp instproc init {} {
$self instvar net_ test_ guide_ period_
set net_ net3
set test_ shortIdleTcp
set guide_ "TCP with two short idle periods during slow-start."
set period_ 10000.0
$self next pktTraceFile
}
Test/shortIdleTcp instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ period_
puts "Guide: $guide_"
$self setTopo
Agent/TCP set packetSize_ 160
Agent/TCP set window_ 30
set interval_ 1.0
set start_time 0.0
set stopTime 25.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(s3) 0]
set ftp [new Application/FTP]
$ftp attach-agent $tcp1
$ns_ at 0 "$ftp produce 280"
$ns_ at 9.2 "$ftp producemore 280"
$ns_ at 15.8 "$ftp producemore 280"
$self dropPktsPeriodic [$ns_ link $node_(r2) $node_(s3)] 0 1000.0 $period_
$self pktsDump 1 $tcp1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
$ns_ run
}
Class Test/idleTfrc1 superclass TestSuite
Test/idleTfrc1 instproc init {} {
$self instvar net_ test_ guide_ period_
set net_ net3
set test_ idleTfrc1
set guide_ "TFRC with only one idle period during slow-start."
set period_ 10000.0
$self next pktTraceFile
}
Test/idleTfrc1 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ interval_ dumpfile_ guide_ period_
puts "Guide: $guide_"
$self setTopo
Agent/TFRC set SndrType_ 1
Agent/TFRC set datalimited_ 1
Agent/TFRC set voip_ 1
Agent/TFRCSink set ShortIntervals_ 1
Agent/TFRC set packetSize_ 160
Agent/TFRC set voip_max_pkt_rate_ 50
set interval_ 1.0
set start_time 0.0
set stopTime 60.0
set stopTime0 [expr $stopTime - 0.001]
set stopTime2 [expr $stopTime + 0.001]
set dumpfile_ [open temp.s w]
if {$quiet == "false"} {
set tracefile [open all.tr w]
$ns_ trace-all $tracefile
}
set tf1 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(s3) 0]
set cbr0 [new Application/Traffic/CBR]
$cbr0 set packetSize_ 160
$cbr0 set interval_ 0.02
$cbr0 attach-agent $tf1
$ns_ at $start_time "$cbr0 start"
$ns_ at 10.0 "$cbr0 stop"
$ns_ at 20.0 "$cbr0 start"
$ns_ at 30.0 "$cbr0 stop"
$ns_ at 40.0 "$cbr0 start"
$ns_ at $stopTime "$cbr0 stop"
$self dropPktsPeriodic [$ns_ link $node_(r2) $node_(s3)] 0 1000.0 $period_
$self tfccDump 1 $tf1 $interval_ $dumpfile_
$ns_ at $stopTime0 "close $dumpfile_; $self finish_1 $testName_"
$ns_ at $stopTime "$self cleanupAll $testName_"
if {$quiet == "false"} {
$ns_ at $stopTime2 "close $tracefile"
}
$ns_ at $stopTime2 "exec cp temp2.rands temp.rands; exit 0"
$ns_ run
}
TestSuite runTest
|