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
|
#
# Copyright (c) 1995-1997 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-ecn.tcl,v 1.47 2010/04/03 20:40:15 tom_henderson Exp $
#
# To run all tests: test-all-ecn
set dir [pwd]
catch "cd tcl/test"
source misc_simple.tcl
remove-all-packet-headers ; # removes all except common
add-packet-header Flags IP TCP ; # hdrs reqd for validation test
catch "cd $dir"
# 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.
Agent/TCPSink set SYN_immediate_ack_ false
# default changed 02/2010.
set flowfile fairflow.tr; # file where flow data is written
set flowgraphfile fairflow.xgr; # file given to graph tool
Class Topology
Topology instproc node? num {
$self instvar node_
return $node_($num)
}
Topology instproc makenodes 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]
set node_(r3) [$ns node]
}
Topology instproc createlinks ns {
$self instvar node_
$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) 25
$ns queue-limit $node_(r2) $node_(r1) 25
$ns duplex-link $node_(s3) $node_(r2) 10Mb 4ms DropTail
$ns duplex-link $node_(s4) $node_(r2) 10Mb 5ms DropTail
$ns duplex-link-op $node_(s1) $node_(r1) orient right-down
$ns duplex-link-op $node_(s2) $node_(r1) orient right-up
$ns duplex-link-op $node_(r1) $node_(r2) orient right
$ns duplex-link-op $node_(r1) $node_(r2) queuePos 0
$ns duplex-link-op $node_(r2) $node_(r1) queuePos 0
$ns duplex-link-op $node_(s3) $node_(r2) orient left-down
$ns duplex-link-op $node_(s4) $node_(r2) orient left-up
}
Topology instproc createlinks3 ns {
$self instvar node_
$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) 25
$ns queue-limit $node_(r2) $node_(r1) 25
$ns duplex-link $node_(r2) $node_(r3) 100Mb 0ms RED
$ns queue-limit $node_(r2) $node_(r3) 100
$ns queue-limit $node_(r3) $node_(r2) 100
$ns duplex-link $node_(s3) $node_(r3) 10Mb 4ms DropTail
$ns duplex-link $node_(s4) $node_(r3) 10Mb 5ms DropTail
$ns duplex-link-op $node_(s1) $node_(r1) orient right-down
$ns duplex-link-op $node_(s2) $node_(r1) orient right-up
$ns duplex-link-op $node_(r1) $node_(r2) orient right
$ns duplex-link-op $node_(r1) $node_(r2) queuePos 0
$ns duplex-link-op $node_(r2) $node_(r1) queuePos 0
$ns duplex-link-op $node_(r2) $node_(r3) queuePos 0
$ns duplex-link-op $node_(r3) $node_(r2) queuePos 0
$ns duplex-link-op $node_(s3) $node_(r3) orient left-down
$ns duplex-link-op $node_(s4) $node_(r3) orient left-up
}
Class Topology/net2 -superclass Topology
Topology/net2 instproc init ns {
$self instvar node_
$self makenodes $ns
$self createlinks $ns
}
Class Topology/net2-lossy -superclass Topology
Topology/net2-lossy instproc init ns {
$self instvar node_
$self makenodes $ns
$self createlinks $ns
$self instvar lossylink_
set lossylink_ [$ns link $node_(r1) $node_(r2)]
set em [new ErrorModule Fid]
set errmodel [new ErrorModel/Periodic]
$errmodel unit pkt
$lossylink_ errormodule $em
$em insert $errmodel
$em bind $errmodel 0
$em default pass
}
Class Topology/net3-lossy -superclass Topology
Topology/net3-lossy instproc init ns {
$self instvar node_
$self makenodes $ns
$self createlinks3 $ns
$self instvar lossylink_
set lossylink_ [$ns link $node_(r1) $node_(r2)]
set em [new ErrorModule Fid]
set errmodel [new ErrorModel/Periodic]
$errmodel unit pkt
$lossylink_ errormodule $em
$em insert $errmodel
$em bind $errmodel 0
$em default pass
$self instvar lossylink1_
set lossylink1_ [$ns link $node_(r2) $node_(r3)]
set em [new ErrorModule Fid]
set errmodel [new ErrorModel/Periodic]
$errmodel unit pkt
$lossylink1_ errormodule $em
$em insert $errmodel
$em bind $errmodel 0
$em default pass
}
TestSuite instproc finish file {
global quiet PERL
$self instvar ns_ tchan_ testName_ cwnd_chan_
exec $PERL ../../bin/getrc -s 2 -d 3 all.tr | \
$PERL ../../bin/raw2xg -a -e -s 0.01 -m 90 -t $file > temp.rands
exec $PERL ../../bin/getrc -s 3 -d 2 all.tr | \
$PERL ../../bin/raw2xg -a -e -s 0.01 -m 90 -t $file > temp1.rands
if {$quiet == "false"} {
exec xgraph -bb -tk -nl -m -x time -y packets temp.rands &
# The line below plots both data and ack packets.
# exec xgraph -bb -tk -nl -m -x time -y packets temp.rands \
# temp1.rands &
}
## now use default graphing tool to make a data file
## if so desired
if { [info exists tchan_] && $quiet == "false" } {
$self plotQueue $testName_
}
if { [info exists cwnd_chan_] && $quiet == "false" } {
$self plot_cwnd
}
$ns_ halt
}
TestSuite instproc enable_tracequeue ns {
$self instvar tchan_ node_
set redq [[$ns link $node_(r1) $node_(r2)] queue]
set tchan_ [open all.q w]
$redq trace curq_
$redq trace ave_
$redq attach $tchan_
}
TestSuite instproc plotQueue file {
global quiet
$self instvar tchan_
#
# Plot the queue size and average queue size, for RED gateways.
#
set awkCode {
{
if ($1 == "Q" && NF>2) {
print $2, $3 >> "temp.q";
set end $2
}
else if ($1 == "a" && NF>2)
print $2, $3 >> "temp.a";
}
}
set f [open temp.queue w]
puts $f "TitleText: $file"
puts $f "Device: Postscript"
if { [info exists tchan_] } {
close $tchan_
}
exec rm -f temp.q temp.a
exec touch temp.a temp.q
exec awk $awkCode all.q
puts $f \"queue
exec cat temp.q >@ $f
puts $f \n\"ave_queue
exec cat temp.a >@ $f
###puts $f \n"thresh
###puts $f 0 [[ns link $r1 $r2] get thresh]
###puts $f $end [[ns link $r1 $r2] get thresh]
close $f
if {$quiet == "false"} {
exec xgraph -bb -tk -x time -y queue temp.queue &
}
}
TestSuite instproc tcpDumpAll { tcpSrc interval label } {
global quiet
$self instvar dump_inst_ ns_
if ![info exists dump_inst_($tcpSrc)] {
set dump_inst_($tcpSrc) 1
set report $label/window=[$tcpSrc set window_]/packetSize=[$tcpSrc set packetSize_]
if {$quiet == "false"} {
puts $report
}
$ns_ at 0.0 "$self tcpDumpAll $tcpSrc $interval $label"
return
}
$ns_ at [expr [$ns_ now] + $interval] "$self tcpDumpAll $tcpSrc $interval $label"
set report time=[$ns_ now]/class=$label/ack=[$tcpSrc set ack_]/packets_resent=[$tcpSrc set nrexmitpack_]
if {$quiet == "false"} {
puts $report
}
}
TestSuite instproc emod {} {
$self instvar topo_
$topo_ instvar lossylink_
set errmodule [$lossylink_ errormodule]
return $errmodule
}
TestSuite instproc emod2 {} {
$self instvar topo_
$topo_ instvar lossylink1_
set errmodule [$lossylink1_ errormodule]
return $errmodule
}
TestSuite instproc setloss {} {
$self instvar topo_
$topo_ instvar lossylink_
set errmodule [$lossylink_ errormodule]
set errmodel [$errmodule errormodels]
if { [llength $errmodel] > 1 } {
puts "droppedfin: confused by >1 err models..abort"
exit 1
}
return $errmodel
}
Class Test/ecn -superclass TestSuite
Test/ecn instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2
set test_ ecn
set guide_ "Two connections using ECN."
$self next pktTraceFile
}
Test/ecn instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$self setTopo
set stoptime 10.0
set redq [[$ns_ link $node_(r1) $node_(r2)] queue]
$redq set setbit_ true
set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(s3) 0]
$tcp1 set window_ 15
$tcp1 set ecn_ 1
set tcp2 [$ns_ create-connection TCP/Reno $node_(s2) TCPSink $node_(s3) 1]
$tcp2 set window_ 15
$tcp2 set ecn_ 1
set ftp1 [$tcp1 attach-app FTP]
set ftp2 [$tcp2 attach-app FTP]
$self enable_tracequeue $ns_
$ns_ at 0.0 "$ftp1 start"
$ns_ at 3.0 "$ftp2 start"
$self tcpDump $tcp1 5.0
# trace only the bottleneck link
#$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
$ns_ at $stoptime "$self cleanupAll $testName_"
$ns_ run
}
#######################################################################
TestSuite instproc ecnsetup { tcptype {stoptime 3.0} { tcp1fid 0 } { delack 0 }} {
$self instvar ns_ node_ testName_ net_
$self setTopo
##
## Agent/TCP set maxburst_ 4
##
set delay 10ms
$ns_ delay $node_(r1) $node_(r2) $delay
$ns_ delay $node_(r2) $node_(r1) $delay
set redq [[$ns_ link $node_(r1) $node_(r2)] queue]
$redq set setbit_ true
if {$tcptype == "Tahoe" && $delack == 0} {
set tcp1 [$ns_ create-connection TCP $node_(s1) \
TCPSink $node_(s3) $tcp1fid]
} elseif {$tcptype == "Sack1" && $delack == 0} {
set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) \
TCPSink/Sack1 $node_(s3) $tcp1fid]
} elseif {$delack == 0} {
set tcp1 [$ns_ create-connection TCP/$tcptype $node_(s1) \
TCPSink $node_(s3) $tcp1fid]
} elseif {$tcptype == "Tahoe" && $delack == 1} {
set tcp1 [$ns_ create-connection TCP $node_(s1) \
TCPSink/DelAck $node_(s3) $tcp1fid]
} elseif {$tcptype == "Sack1" && $delack == 1} {
set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) \
TCPSink/Sack1/DelAck $node_(s3) $tcp1fid]
} else {
set tcp1 [$ns_ create-connection TCP/$tcptype $node_(s1) \
TCPSink/DelAck $node_(s3) $tcp1fid]
}
$tcp1 set window_ 30
$tcp1 set ecn_ 1
set ftp1 [$tcp1 attach-app FTP]
$self enable_tracecwnd $ns_ $tcp1
#$self enable_tracequeue $ns_
$ns_ at 0.0 "$ftp1 start"
$self tcpDump $tcp1 5.0
# trace only the bottleneck link
#$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
$ns_ at $stoptime "$self cleanupAll $testName_"
}
TestSuite instproc second_tcp { tcptype starttime } {
$self instvar ns_ node_
if {$tcptype == "Tahoe"} {
set tcp [$ns_ create-connection TCP $node_(s1) \
TCPSink $node_(s3) 2]
} elseif {$tcptype == "Sack1"} {
set tcp [$ns_ create-connection TCP/Sack1 $node_(s1) \
TCPSink/Sack1 $node_(s3) 2]
} else {
set tcp [$ns_ create-connection TCP/$tcptype $node_(s1) \
TCPSink $node_(s3) 2]
}
$tcp set window_ 30
$tcp set ecn_ 1
set ftp [$tcp attach-app FTP]
$ns_ at $starttime "$ftp start"
}
# Drop the specified packet.
TestSuite instproc drop_pkt { number } {
$self instvar ns_ lossmodel
set lossmodel [$self setloss]
$lossmodel set offset_ $number
$lossmodel set period_ 10000
}
TestSuite instproc drop_pkts pkts {
$self instvar ns_ errmodel1
set emod [$self emod]
set errmodel1 [new ErrorModel/List]
$errmodel1 droplist $pkts
$emod insert $errmodel1
$emod bind $errmodel1 1
}
TestSuite instproc drop_pkts2 pkts {
$self instvar ns_ errmodel2
set emod [$self emod2]
set errmodel2 [new ErrorModel/List]
$errmodel2 droplist $pkts
$emod insert $errmodel2
$emod bind $errmodel2 1
}
#######################################################################
# Tahoe Tests #
#######################################################################
# Plain ECN
Class Test/ecn_nodrop_tahoe -superclass TestSuite
Test/ecn_nodrop_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_nodrop_tahoe
set guide_ "Tahoe with ECN."
$self next pktTraceFile
}
Test/ecn_nodrop_tahoe instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 3.0
$self drop_pkt 10000
$ns_ run
}
# Two ECNs close together
Class Test/ecn_twoecn_tahoe -superclass TestSuite
Test/ecn_twoecn_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_twoecn_tahoe
set guide_ "Tahoe, two marked packets in one window."
$self next pktTraceFile
}
Test/ecn_twoecn_tahoe instproc run {} {
global quiet
$self instvar ns_ lossmodel guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 3.0
$self drop_pkt 195
$lossmodel set markecn_ true
$ns_ run
}
# ECN followed by packet loss.
Class Test/ecn_drop_tahoe -superclass TestSuite
Test/ecn_drop_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop_tahoe
set guide_ "Tahoe, ECN followed by packet loss."
$self next pktTraceFile
}
Test/ecn_drop_tahoe instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 3.0
$self drop_pkt 195
$ns_ run
}
# ECN preceded by packet loss.
Class Test/ecn_drop1_tahoe -superclass TestSuite
Test/ecn_drop1_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop1_tahoe
set guide_ "Tahoe, ECN preceded by packet loss."
$self next pktTraceFile
}
Test/ecn_drop1_tahoe instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 3.0
$self drop_pkt 185
$ns_ run
}
# Packet loss only.
Class Test/ecn_noecn_tahoe -superclass TestSuite
Test/ecn_noecn_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
Queue/RED set thresh_ 1000
Queue/RED set maxthresh_ 1000
set net_ net2-lossy
set test_ ecn_noecn_tahoe
Test/ecn_noecn_tahoe instproc run {} [Test/ecn_drop_tahoe info instbody run ]
set guide_ "Tahoe, packet loss only, no ECN."
$self next pktTraceFile
}
# Multiple dup acks
Class Test/ecn_bursty_tahoe -superclass TestSuite
Test/ecn_bursty_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
Queue/RED set thresh_ 100
Queue/RED set maxthresh_ 100
set net_ net2-lossy
set test_ ecn_bursty_tahoe
set guide_ "Tahoe, multiple dup acks."
$self next pktTraceFile
}
Test/ecn_bursty_tahoe instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 3.0
set lossmodel [$self setloss]
$lossmodel set offset_ 189
$lossmodel set burstlen_ 15
$lossmodel set period_ 10000
$ns_ run
}
# Multiple dup acks following ECN
Class Test/ecn_burstyEcn_tahoe -superclass TestSuite
Test/ecn_burstyEcn_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_burstyEcn_tahoe
Test/ecn_burstyEcn_tahoe instproc run {} [Test/ecn_bursty_tahoe info instbody run ]
set guide_ "Tahoe, multiple dup acks and ECN."
$self next pktTraceFile
}
# Multiple dup acks without bugFix_
Class Test/ecn_noBugfix_tahoe -superclass TestSuite
Test/ecn_noBugfix_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set thresh_ 100
Queue/RED set maxthresh_ 100
Queue/RED set setbit_ true
set net_ net2-lossy
Agent/TCP set bugFix_ false
set test_ ecn_noBugfix_tahoe
Test/ecn_noBugfix_tahoe instproc run {} [Test/ecn_bursty_tahoe info instbody run ]
set guide_ "Tahoe, multiple dup acks, no bugFix."
$self next pktTraceFile
}
# ECN followed by timeout.
Class Test/ecn_timeout_tahoe -superclass TestSuite
Test/ecn_timeout_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_timeout_tahoe
set guide_ "Tahoe, drops and ECN followed by a timeout."
$self next pktTraceFile
}
Test/ecn_timeout_tahoe instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 3.0 1
$self drop_pkts {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}
$ns_ run
}
# Only the timeout.
Class Test/ecn_timeout2_tahoe -superclass TestSuite
Test/ecn_timeout2_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
Queue/RED set thresh_ 100
Queue/RED set maxthresh_ 100
set net_ net2-lossy
set test_ ecn_timeout2_tahoe
set guide_ "Tahoe, drops followed by a timeout, no ECN."
$self next pktTraceFile
}
Test/ecn_timeout2_tahoe instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 3.0 1
$self drop_pkts {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}
$ns_ run
}
# The timeout with the ECN in the middle of dropped packets.
Class Test/ecn_timeout3_tahoe -superclass TestSuite
Test/ecn_timeout3_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_timeout3_tahoe
set guide_ "Tahoe, drops and ECN followed by a timeout."
$self next pktTraceFile
}
Test/ecn_timeout3_tahoe instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 3.0 1
$self drop_pkts {241 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}
$ns_ run
}
# Packet drops with a window of one packet.
Class Test/ecn_smallwin_tahoe -superclass TestSuite
Test/ecn_smallwin_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
Agent/TCP set timerfix_ false
# The default is being changed to true.
set net_ net2-lossy
set test_ ecn_smallwin_tahoe
set guide_ "Tahoe, packet drops with a window of one."
$self next pktTraceFile
}
Test/ecn_smallwin_tahoe instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 6.0 1
$self drop_pkts {4 8 9 10 11 12 13 100 115 118 119}
$ns_ run
}
# ECN with a window of one packet.
Class Test/ecn_smallwinEcn_tahoe -superclass TestSuite
Test/ecn_smallwinEcn_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
Agent/TCP set timerfix_ false
# The default is being changed to true.
set test_ ecn_smallwinEcn_tahoe
set guide_ "Tahoe, ECN with a window of one."
$self next pktTraceFile
}
Test/ecn_smallwinEcn_tahoe instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1
puts "Guide: $guide_"
$self ecnsetup Tahoe 10.0 1
$self drop_pkts {4 8 9 11 12 13 14 15 120 135 143 148 150 151 152 153}
$errmodel1 set markecn_ true
$ns_ run
}
# ECN, cwnd 4, packet 4 is dropped, and then packet 6 is marked.
# The retransmit timer expires, packet 4 is retransmitted, and then the
# ECN bit is set on the retransmitted packet.
# When the ACK for packet 4 comes in, the retransmit timer must not get
# cancelled.
Class Test/ecn_smallwin1Ecn_tahoe -superclass TestSuite
Test/ecn_smallwin1Ecn_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net3-lossy
Agent/TCP set timerfix_ false
# The default is being changed to true.
set test_ ecn_smallwin1Ecn_tahoe
set guide_ "Tahoe, ECN with small windows."
$self next pktTraceFile
}
Test/ecn_smallwin1Ecn_tahoe instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1 errmodel2
puts "Guide: $guide_"
$self ecnsetup Tahoe 10.0 1
$self drop_pkts {4 8 9 11 12 13 120 135 143 148 150 153}
$errmodel1 set markecn_ true
$self drop_pkts2 {6}
$errmodel2 set markecn_ false
$ns_ run
}
# ECN with a window of one packet, slow_start_restart_ false.
Class Test/ecn_smallwin2Ecn_tahoe -superclass TestSuite
Test/ecn_smallwin2Ecn_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
Agent/TCP set slow_start_restart_ false
Agent/TCP set timerfix_ false
# The default is being changed to true.
set test_ ecn_smallwin2Ecn_tahoe
Test/ecn_smallwin2Ecn_tahoe instproc run {} [Test/ecn_smallwinEcn_tahoe info instbody run ]
set guide_ "Tahoe, ECN with a window of one, no slow_start_restart."
$self next pktTraceFile
}
Class Test/ecn_smallwin3Ecn_tahoe -superclass TestSuite
Test/ecn_smallwin3Ecn_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net3-lossy
Agent/TCP set slow_start_restart_ false
set test_ ecn_smallwin3Ecn_tahoe
Test/ecn_smallwin3Ecn_tahoe instproc run {} [Test/ecn_smallwin1Ecn_tahoe info instbody run ]
set guide_ "Tahoe, ECN with small windows, no slow_start_restart."
$self next pktTraceFile
}
# Packet drops for the second packet.
Class Test/ecn_secondpkt_tahoe -superclass TestSuite
Test/ecn_secondpkt_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_secondpkt_tahoe
set guide_ "Tahoe, with the second packet dropped."
$self next pktTraceFile
}
Test/ecn_secondpkt_tahoe instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 2.0 1
$self drop_pkts {1 3}
$ns_ run
}
# ECN for the second packet.
Class Test/ecn_secondpktEcn_tahoe -superclass TestSuite
Test/ecn_secondpktEcn_tahoe instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_secondpktEcn_tahoe
set guide_ "Tahoe, with the second packet marked."
$self next pktTraceFile
}
Test/ecn_secondpktEcn_tahoe instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1
puts "Guide: $guide_"
$self ecnsetup Tahoe 2.0 1
$self drop_pkts {1 3}
$errmodel1 set markecn_ true
$ns_ run
}
#######################################################################
# Delayed Ack Tahoe Tests #
#######################################################################
# Plain ECN
Class Test/ecn_nodrop_tahoe_delack -superclass TestSuite
Test/ecn_nodrop_tahoe_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_nodrop_tahoe_delack
set guide_ "Tahoe with ECN, delayed acks."
$self next pktTraceFile
}
Test/ecn_nodrop_tahoe_delack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 3.0 0 1
$self drop_pkt 10000
$ns_ run
}
# This one doesn't have two ECNs close together..
Class Test/ecn_twoecn_tahoe_delack -superclass TestSuite
Test/ecn_twoecn_tahoe_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_twoecn_tahoe_delack
set guide_ "Tahoe, ECN, delayed acks."
$self next pktTraceFile
}
Test/ecn_twoecn_tahoe_delack instproc run {} {
global quiet
$self instvar ns_ guide_ lossmodel
puts "Guide: $guide_"
$self ecnsetup Tahoe 3.0 0 1
$self drop_pkt 195
$lossmodel set markecn_ true
$ns_ run
}
# ECN followed by packet loss?
Class Test/ecn_drop_tahoe_delack -superclass TestSuite
Test/ecn_drop_tahoe_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop_tahoe_delack
set guide_ "Tahoe, ECN, delayed acks."
$self next pktTraceFile
}
Test/ecn_drop_tahoe_delack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 3.0 0 1
$self drop_pkt 195
$ns_ run
}
# ECN preceded by packet loss?
Class Test/ecn_drop1_tahoe_delack -superclass TestSuite
Test/ecn_drop1_tahoe_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop1_tahoe_delack
set guide_ "Tahoe, ECN, delayed acks."
$self next pktTraceFile
}
Test/ecn_drop1_tahoe_delack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Tahoe 3.0 0 1
$self drop_pkt 185
$ns_ run
}
# ECN with a window of one packet.
Class Test/ecn_smallwinEcn_tahoe_delack -superclass TestSuite
Test/ecn_smallwinEcn_tahoe_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
Agent/TCP set timerfix_ false
# The default is being changed to true.
set test_ ecn_smallwinEcn_tahoe_delack
set guide_ "Tahoe, ECN with a window of one, delayed acks."
$self next pktTraceFile
}
Test/ecn_smallwinEcn_tahoe_delack instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1
puts "Guide: $guide_"
$self ecnsetup Tahoe 10.0 1 1
$self drop_pkts {4 8 9 11 12 13 14 15 120 135 143 148 150 151 152 153}
$errmodel1 set markecn_ true
$ns_ run
}
#######################################################################
# Reno Tests #
#######################################################################
# Plain ECN
Class Test/ecn_nodrop_reno -superclass TestSuite
Test/ecn_nodrop_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_nodrop_reno
set guide_ "Reno with ECN."
$self next pktTraceFile
}
Test/ecn_nodrop_reno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Reno 3.0
$self drop_pkt 10000
$ns_ run
}
# Two ECNs close together
Class Test/ecn_twoecn_reno -superclass TestSuite
Test/ecn_twoecn_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_twoecn_reno
set guide_ "Reno, two marked packets in one window."
$self next pktTraceFile
}
Test/ecn_twoecn_reno instproc run {} {
global quiet
$self instvar ns_ guide_ lossmodel
puts "Guide: $guide_"
$self ecnsetup Reno 3.0
$self drop_pkt 195
$lossmodel set markecn_ true
$ns_ run
}
# ECN followed by packet loss.
Class Test/ecn_drop_reno -superclass TestSuite
Test/ecn_drop_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop_reno
set guide_ "Reno, ECN followed by packet loss."
$self next pktTraceFile
}
Test/ecn_drop_reno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Reno 3.0
$self drop_pkt 195
$ns_ run
}
# ECN preceded by packet loss.
Class Test/ecn_drop1_reno -superclass TestSuite
Test/ecn_drop1_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop1_reno
set guide_ "Reno, ECN preceded by packet loss."
$self next pktTraceFile
}
Test/ecn_drop1_reno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Reno 3.0
$self drop_pkt 185
$ns_ run
}
# Packet loss only.
Class Test/ecn_noecn_reno -superclass TestSuite
Test/ecn_noecn_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
Queue/RED set thresh_ 1000
Queue/RED set maxthresh_ 1000
set net_ net2-lossy
set test_ ecn_noecn_reno
Test/ecn_noecn_reno instproc run {} [Test/ecn_drop_reno info instbody run ]
set guide_ "Reno, packet loss only, no ECN."
$self next pktTraceFile
}
# Multiple dup acks
Class Test/ecn_bursty_reno -superclass TestSuite
Test/ecn_bursty_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
Queue/RED set thresh_ 100
Queue/RED set maxthresh_ 100
set net_ net2-lossy
set test_ ecn_bursty_reno
set guide_ "Reno, multiple dup acks."
$self next pktTraceFile
}
Test/ecn_bursty_reno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Reno 3.0
set lossmodel [$self setloss]
$lossmodel set offset_ 189
$lossmodel set burstlen_ 15
$lossmodel set period_ 10000
$ns_ run
}
# Multiple dup acks following ECN
Class Test/ecn_burstyEcn_reno -superclass TestSuite
Test/ecn_burstyEcn_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_burstyEcn_reno
Test/ecn_burstyEcn_reno instproc run {} [Test/ecn_bursty_reno info instbody run ]
set guide_ "Reno, multiple dup acks and ECN."
$self next pktTraceFile
}
# Multiple dup acks without bugFix_
Class Test/ecn_noBugfix_reno -superclass TestSuite
Test/ecn_noBugfix_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set thresh_ 100
Queue/RED set maxthresh_ 100
Queue/RED set setbit_ true
set net_ net2-lossy
Agent/TCP set bugFix_ false
set test_ ecn_noBugfix_reno
Test/ecn_noBugfix_reno instproc run {} [Test/ecn_bursty_reno info instbody run ]
set guide_ "Reno, multiple dup acks, no bugFix."
$self next pktTraceFile
}
# Drops and a timeout.
Class Test/ecn_timeout_reno -superclass TestSuite
Test/ecn_timeout_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ false
set net_ net2-lossy
set test_ ecn_timeout_reno
set guide_ "Reno, ECN and drops followed by a timeout."
$self next pktTraceFile
}
Test/ecn_timeout_reno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Reno 3.0 1
$self drop_pkts {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}
$ns_ run
}
# ECN followed by a timeout, followed by an ECN representing a
# new instance of congestion.
Class Test/ecn_timeout1_reno -superclass TestSuite
Test/ecn_timeout1_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_timeout1_reno
set guide_ "Reno, drops and ECN followed by a timeout."
$self next pktTraceFile
}
Test/ecn_timeout1_reno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Reno 3.0 1
$self drop_pkts {245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265}
$self second_tcp Tahoe 1.0
$ns_ run
}
# Packet drops with a window of one packet.
Class Test/ecn_smallwin_reno -superclass TestSuite
Test/ecn_smallwin_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_smallwin_reno
set guide_ "Reno, packet drops with a window of one."
$self next pktTraceFile
}
Test/ecn_smallwin_reno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Reno 6.0 1
$self drop_pkts {4 8 9 10 11 12 13 100 115 118 119 121 122}
$ns_ run
}
# ECN with a window of one packet.
Class Test/ecn_smallwinEcn_reno -superclass TestSuite
Test/ecn_smallwinEcn_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_smallwinEcn_reno
set guide_ "Reno, ECN with a window of one."
$self next pktTraceFile
}
Test/ecn_smallwinEcn_reno instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1
puts "Guide: $guide_"
$self ecnsetup Reno 10.0 1
$self drop_pkts {4 8 9 11 12 13 14 15 120 135 143 148 150 151 152 153}
$errmodel1 set markecn_ true
$ns_ run
}
Class Test/ecn_smallwin1Ecn_reno -superclass TestSuite
Test/ecn_smallwin1Ecn_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net3-lossy
set test_ ecn_smallwin1Ecn_reno
set guide_ "Reno, ECN with small windows."
$self next pktTraceFile
}
Test/ecn_smallwin1Ecn_reno instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1 errmodel2
puts "Guide: $guide_"
$self ecnsetup Reno 10.0 1
$self drop_pkts {4 8 9 11 12 13 120 135 143 148 150 153}
$errmodel1 set markecn_ true
$self drop_pkts2 {6}
$errmodel2 set markecn_ false
$ns_ run
}
# Packet drops for the second packet.
Class Test/ecn_secondpkt_reno -superclass TestSuite
Test/ecn_secondpkt_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_secondpkt_reno
set guide_ "Reno, with the second packet dropped."
$self next pktTraceFile
}
Test/ecn_secondpkt_reno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Reno 2.0 1
$self drop_pkts {1 3}
$ns_ run
}
# ECN for the second packet.
Class Test/ecn_secondpktEcn_reno -superclass TestSuite
Test/ecn_secondpktEcn_reno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_secondpktEcn_reno
set guide_ "Reno, with the second packet marked."
$self next pktTraceFile
}
Test/ecn_secondpktEcn_reno instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1
puts "Guide: $guide_"
$self ecnsetup Reno 2.0 1
$self drop_pkts {1 3}
$errmodel1 set markecn_ true
$ns_ run
}
#######################################################################
# Delayed Ack Reno Tests #
#######################################################################
# Plain ECN
Class Test/ecn_nodrop_reno_delack -superclass TestSuite
Test/ecn_nodrop_reno_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_nodrop_reno_delack
set guide_ "Reno, ECN, delayed acks."
$self next pktTraceFile
}
Test/ecn_nodrop_reno_delack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Reno 3.0 0 1
$self drop_pkt 10000
$ns_ run
}
# Two ECNs close together
Class Test/ecn_twoecn_reno_delack -superclass TestSuite
Test/ecn_twoecn_reno_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_twoecn_reno_delack
set guide_ "Reno, ECN, delayed acks."
$self next pktTraceFile
}
Test/ecn_twoecn_reno_delack instproc run {} {
global quiet
$self instvar ns_ guide_ lossmodel
puts "Guide: $guide_"
$self ecnsetup Reno 3.0 0 1
$self drop_pkt 195
$lossmodel set markecn_ true
$ns_ run
}
# ECN followed by packet loss.
Class Test/ecn_drop_reno_delack -superclass TestSuite
Test/ecn_drop_reno_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop_reno_delack
set guide_ "Reno, packet loss followed by ECN, delayed acks."
$self next pktTraceFile
}
Test/ecn_drop_reno_delack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Reno 3.0 0 1
$self drop_pkt 195
$ns_ run
}
# ECN with a window of one packet.
Class Test/ecn_smallwinEcn_reno_delack -superclass TestSuite
Test/ecn_smallwinEcn_reno_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_smallwinEcn_reno_delack
set guide_ "Reno, delayed acks, ECN with a window of one."
$self next pktTraceFile
}
Test/ecn_smallwinEcn_reno_delack instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1
puts "Guide: $guide_"
$self ecnsetup Reno 10.0 1 1
$self drop_pkts {4 8 9 11 12 13 14 15 120 135 143 148 150 151 152 153}
$errmodel1 set markecn_ true
$ns_ run
}
#######################################################################
# Sack1 Tests #
#######################################################################
# Plain ECN
Class Test/ecn_nodrop_sack -superclass TestSuite
Test/ecn_nodrop_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_nodrop_sack
set guide_ "Sack with ECN."
$self next pktTraceFile
}
Test/ecn_nodrop_sack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0
$self drop_pkt 10000
$ns_ run
}
# Two ECNs close together
Class Test/ecn_twoecn_sack -superclass TestSuite
Test/ecn_twoecn_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_twoecn_sack
set guide_ "Sack, two marked packets in one window."
$self next pktTraceFile
}
Test/ecn_twoecn_sack instproc run {} {
global quiet
$self instvar ns_ guide_ lossmodel
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0
$self drop_pkt 195
$lossmodel set markecn_ true
$ns_ run
}
# ECN preceded by packet loss.
# Do one with ECN followed by packet loss?
Class Test/ecn_drop_sack -superclass TestSuite
Test/ecn_drop_sack instproc init {} {
$self instvar net_ test_ guide_
# Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop_sack
set guide_ "Sack, ECN preceded by packet loss."
$self next pktTraceFile
}
Test/ecn_drop_sack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0
$self drop_pkt 195
$ns_ run
}
# ECN followed by packet loss.
Class Test/ecn_drop1_sack -superclass TestSuite
Test/ecn_drop1_sack instproc init {} {
$self instvar net_ test_ guide_
# Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop1_sack
set guide_ "Sack, ECN preceded by packet loss."
$self next pktTraceFile
}
Test/ecn_drop1_sack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0
$self drop_pkt 185
$ns_ run
}
# Packet loss only.
Class Test/ecn_noecn_sack -superclass TestSuite
Test/ecn_noecn_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
Queue/RED set thresh_ 1000
Queue/RED set maxthresh_ 1000
set net_ net2-lossy
set test_ ecn_noecn_sack
Test/ecn_noecn_sack instproc run {} [Test/ecn_drop_sack info instbody run ]
set guide_ "Sack, packet loss only, no ECN."
$self next pktTraceFile
}
# Multiple dup acks
Class Test/ecn_bursty_sack -superclass TestSuite
Test/ecn_bursty_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
Queue/RED set thresh_ 100
Queue/RED set maxthresh_ 100
set net_ net2-lossy
set test_ ecn_bursty_sack
set guide_ "Sack, multiple dup acks."
$self next pktTraceFile
}
Test/ecn_bursty_sack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0
set lossmodel [$self setloss]
$lossmodel set offset_ 189
$lossmodel set burstlen_ 15
$lossmodel set period_ 10000
$ns_ run
}
# Multiple dup acks following ECN
Class Test/ecn_burstyEcn_sack -superclass TestSuite
Test/ecn_burstyEcn_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_burstyEcn_sack
Test/ecn_burstyEcn_sack instproc run {} [Test/ecn_bursty_sack info instbody run ]
set guide_ "Sack, multiple dup acks and ECN."
$self next pktTraceFile
}
# Multiple dup acks following ECN
Class Test/ecn_burstyEcn1_sack -superclass TestSuite
Test/ecn_burstyEcn1_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_burstyEcn1_sack
set guide_ "Sack, multiple dup acks and ECN."
$self next pktTraceFile
}
Test/ecn_burstyEcn1_sack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0
set lossmodel [$self setloss]
$lossmodel set offset_ 189
$lossmodel set burstlen_ 17
$lossmodel set period_ 10000
$ns_ run
}
# Multiple dup acks without bugFix_
Class Test/ecn_noBugfix_sack -superclass TestSuite
Test/ecn_noBugfix_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set thresh_ 100
Queue/RED set maxthresh_ 100
Queue/RED set setbit_ true
set net_ net2-lossy
Agent/TCP set bugFix_ false
set test_ ecn_noBugfix_sack
Test/ecn_noBugfix_sack instproc run {} [Test/ecn_bursty_sack info instbody run ]
set guide_ "Sack, multiple dup acks, no bugFix."
$self next pktTraceFile
}
# ECN followed by timeout.
Class Test/ecn_timeout_sack -superclass TestSuite
Test/ecn_timeout_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_timeout_sack
set guide_ "Sack, drops and ECN followed by a timeout."
$self next pktTraceFile
}
Test/ecn_timeout_sack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0 1
$self drop_pkts {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}
$ns_ run
}
# ECN followed by a timeout, followed by an ECN representing a
# new instance of congestion.
Class Test/ecn_timeout1_sack -superclass TestSuite
Test/ecn_timeout1_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_timeout1_sack
set guide_ "Sack, drops and ECN followed by a timeout."
$self next pktTraceFile
}
Test/ecn_timeout1_sack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0 1
$self drop_pkts {245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265}
$self second_tcp Tahoe 1.0
$ns_ run
}
# ECN and packet drops.
Class Test/ecn_fourdrops_sack -superclass TestSuite
Test/ecn_fourdrops_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_fourdrops_sack
set guide_ "Reno, ECN with four packet drops."
$self next pktTraceFile
}
Test/ecn_fourdrops_sack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0 1
$self drop_pkts {182 184 207 208}
$ns_ run
}
# Packet drops with a window of one packet.
Class Test/ecn_smallwin_sack -superclass TestSuite
Test/ecn_smallwin_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_smallwin_sack
set guide_ "Sack, packet drops with a window of one."
$self next pktTraceFile
}
Test/ecn_smallwin_sack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 6.0 1
$self drop_pkts {4 8 9 10 11 12 13 100 115 121 124 126 127 128}
$ns_ run
}
# ECN with a window of one packet.
Class Test/ecn_smallwinEcn_sack -superclass TestSuite
Test/ecn_smallwinEcn_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_smallwinEcn_sack
set guide_ "Sack, ECN with a window of one."
$self next pktTraceFile
}
Test/ecn_smallwinEcn_sack instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1
puts "Guide: $guide_"
$self ecnsetup Sack1 10.0 1
$self drop_pkts {4 7 9 10 11 12 13 14 15 120 135 143 148 150 151 152}
$errmodel1 set markecn_ true
$ns_ run
}
Class Test/ecn_smallwin1Ecn_sack -superclass TestSuite
Test/ecn_smallwin1Ecn_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net3-lossy
set test_ ecn_smallwin1Ecn_sack
set guide_ "Sack, ECN with small windows."
$self next pktTraceFile
}
Test/ecn_smallwin1Ecn_sack instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1 errmodel2
puts "Guide: $guide_"
$self ecnsetup Sack1 10.0 1
$self drop_pkts {4 8 9 11 12 13 120 135 143 148 150 153}
$errmodel1 set markecn_ true
$self drop_pkts2 {6}
$errmodel2 set markecn_ false
$ns_ run
}
# Packet drops for the second packet.
Class Test/ecn_secondpkt_sack -superclass TestSuite
Test/ecn_secondpkt_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_secondpkt_sack
set guide_ "Sack, with the second packet dropped."
$self next pktTraceFile
}
Test/ecn_secondpkt_sack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 2.0 1
$self drop_pkts {1 3}
$ns_ run
}
# ECN for the second packet.
Class Test/ecn_secondpktEcn_sack -superclass TestSuite
Test/ecn_secondpktEcn_sack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_secondpktEcn_sack
set guide_ "Sack, with the second packet marked."
$self next pktTraceFile
}
Test/ecn_secondpktEcn_sack instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1
puts "Guide: $guide_"
$self ecnsetup Sack1 2.0 1
$self drop_pkts {1 3}
$errmodel1 set markecn_ true
$ns_ run
}
#######################################################################
# Delayed Ack Sack1 Tests #
#######################################################################
# Plain ECN
Class Test/ecn_nodrop_sack_delack -superclass TestSuite
Test/ecn_nodrop_sack_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_nodrop_sack_delack
set guide_ "Sack, ECN, delayed acks."
$self next pktTraceFile
}
Test/ecn_nodrop_sack_delack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0 0 1
$self drop_pkt 10000
$ns_ run
}
# Two ECNs close together
Class Test/ecn_twoecn_sack_delack -superclass TestSuite
Test/ecn_twoecn_sack_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_twoecn_sack_delack
set guide_ "Sack, ECN, delayed acks."
$self next pktTraceFile
}
Test/ecn_twoecn_sack_delack instproc run {} {
global quiet
$self instvar ns_ guide_ lossmodel
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0 0 1
$self drop_pkt 195
$lossmodel set markecn_ true
$ns_ run
}
# ECN followed by packet loss.
Class Test/ecn_drop_sack_delack -superclass TestSuite
Test/ecn_drop_sack_delack instproc init {} {
$self instvar net_ test_ guide_
# Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop_sack_delack
set guide_ "Sack, packet loss followed by ECN, delayed acks."
$self next pktTraceFile
}
Test/ecn_drop_sack_delack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0 0 1
$self drop_pkt 195
$ns_ run
}
# ECN followed by packet loss.
Class Test/ecn_drop1_sack_delack -superclass TestSuite
Test/ecn_drop1_sack_delack instproc init {} {
$self instvar net_ test_ guide_
# Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop1_sack_delack
set guide_ "Sack, packet loss followed by ECN, delayed acks."
$self next pktTraceFile
}
Test/ecn_drop1_sack_delack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Sack1 3.0 0 1
$self drop_pkt 185
$ns_ run
}
# ECN with a window of one packet.
Class Test/ecn_smallwinEcn_sack_delack -superclass TestSuite
Test/ecn_smallwinEcn_sack_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_smallwinEcn_sack_delack
set guide_ "Sack, delayed ack, ECN with small windows."
$self next pktTraceFile
}
Test/ecn_smallwinEcn_sack_delack instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1
puts "Guide: $guide_"
$self ecnsetup Sack1 10.0 1 1
$self drop_pkts {4 7 9 11 12 13 14 15 120 135 143 148 150 151 152}
$errmodel1 set markecn_ true
$ns_ run
}
#######################################################################
# Newreno Tests #
#######################################################################
# Plain ECN
Class Test/ecn_nodrop_newreno -superclass TestSuite
Test/ecn_nodrop_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_nodrop_newreno
set guide_ "NewReno with ECN."
$self next pktTraceFile
}
Test/ecn_nodrop_newreno instproc run {} {
global quiet
$self instvar ns_ guide_
$self ecnsetup Newreno 3.0
$self drop_pkt 10000
$ns_ run
}
# Two ECNs close together
Class Test/ecn_twoecn_newreno -superclass TestSuite
Test/ecn_twoecn_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_twoecn_newreno
set guide_ "NewReno, two marked packets in one window."
$self next pktTraceFile
}
Test/ecn_twoecn_newreno instproc run {} {
global quiet
$self instvar ns_ guide_ lossmodel
puts "Guide: $guide_"
$self ecnsetup Newreno 3.0
$self drop_pkt 195
$lossmodel set markecn_ true
$ns_ run
}
# ECN followed by packet loss.
Class Test/ecn_drop_newreno -superclass TestSuite
Test/ecn_drop_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop_newreno
set guide_ "NewReno, ECN preceded by packet loss."
$self next pktTraceFile
}
Test/ecn_drop_newreno instproc run {} {
global quiet
$self instvar ns_ guide_
$self ecnsetup Newreno 3.0
$self drop_pkt 195
$ns_ run
}
# ECN preceded by packet loss.
Class Test/ecn_drop1_newreno -superclass TestSuite
Test/ecn_drop1_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop1_newreno
set guide_ "NewReno, ECN preceded by packet loss."
$self next pktTraceFile
}
Test/ecn_drop1_newreno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Newreno 3.0
$self drop_pkt 185
$ns_ run
}
# Packet loss only.
Class Test/ecn_noecn_newreno -superclass TestSuite
Test/ecn_noecn_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
Queue/RED set thresh_ 1000
Queue/RED set maxthresh_ 1000
set net_ net2-lossy
set test_ ecn_noecn_newreno
Test/ecn_noecn_newreno instproc run {} [Test/ecn_drop_newreno info instbody run ]
set guide_ "NewReno, packet loss only, no ECN."
$self next pktTraceFile
}
# Multiple dup acks
Class Test/ecn_bursty_newreno -superclass TestSuite
Test/ecn_bursty_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
Queue/RED set thresh_ 100
Queue/RED set maxthresh_ 100
set net_ net2-lossy
set test_ ecn_bursty_newreno
set guide_ "NewReno, multiple dup acks."
$self next pktTraceFile
}
Test/ecn_bursty_newreno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Newreno 3.0
set lossmodel [$self setloss]
$lossmodel set offset_ 189
$lossmodel set burstlen_ 15
$lossmodel set period_ 10000
$ns_ run
}
# Multiple dup acks following ECN
Class Test/ecn_burstyEcn_newreno -superclass TestSuite
Test/ecn_burstyEcn_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_burstyEcn_newreno
Test/ecn_burstyEcn_newreno instproc run {} [Test/ecn_bursty_newreno info instbody run ]
set guide_ "NewReno, multiple dup acks and ECN."
$self next pktTraceFile
}
# ECN followed by timeout.
# Nope.
Class Test/ecn_timeout_newreno -superclass TestSuite
Test/ecn_timeout_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_timeout_newreno
set guide_ "NewReno, multiple dup acks"
$self next pktTraceFile
}
Test/ecn_timeout_newreno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Newreno 3.0 1
$self drop_pkts {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}
$ns_ run
}
# ECN followed by a timeout, followed by an ECN representing a
# new instance of congestion.
Class Test/ecn_timeout1_newreno -superclass TestSuite
Test/ecn_timeout1_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_timeout1_newreno
set guide_ "NewReno, drops and ECN followed by a timeout."
$self next pktTraceFile
}
Test/ecn_timeout1_newreno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Newreno 3.0 1
$self drop_pkts {245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265}
$self second_tcp Tahoe 1.0
$ns_ run
}
# Packet drops with a window of one packet.
Class Test/ecn_smallwin_newreno -superclass TestSuite
Test/ecn_smallwin_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_smallwin_newreno
set guide_ "NewReno, packet drops with a window of one."
$self next pktTraceFile
}
Test/ecn_smallwin_newreno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Newreno 6.0 1
$self drop_pkts {4 8 9 10 11 12 13 100 115 121 124 126 127 128}
$ns_ run
}
# ECN with a window of one packet.
Class Test/ecn_smallwinEcn_newreno -superclass TestSuite
Test/ecn_smallwinEcn_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_smallwinEcn_newreno
set guide_ "NewReno, ECN with a window of one."
$self next pktTraceFile
}
Test/ecn_smallwinEcn_newreno instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1
puts "Guide: $guide_"
$self ecnsetup Newreno 10.0 1
$self drop_pkts {4 8 9 11 12 13 14 15 120 135 143 148 150 151 152 153}
$errmodel1 set markecn_ true
$ns_ run
}
# Packet drops for the second packet.
Class Test/ecn_secondpkt_newreno -superclass TestSuite
Test/ecn_secondpkt_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_secondpkt_newreno
set guide_ "NewReno, with the second packet dropped."
$self next pktTraceFile
}
Test/ecn_secondpkt_newreno instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Newreno 2.0 1
$self drop_pkts {1 3}
$ns_ run
}
# ECN for the second packet.
Class Test/ecn_secondpktEcn_newreno -superclass TestSuite
Test/ecn_secondpktEcn_newreno instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_secondpktEcn_newreno
set guide_ "NewReno, with the second packet marked."
$self next pktTraceFile
}
Test/ecn_secondpktEcn_newreno instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1
puts "Guide: $guide_"
$self ecnsetup Newreno 2.0 1
$self drop_pkts {1 3}
$errmodel1 set markecn_ true
$ns_ run
}
#######################################################################
# Delayed Ack Newreno Tests #
#######################################################################
# Plain ECN
Class Test/ecn_nodrop_newreno_delack -superclass TestSuite
Test/ecn_nodrop_newreno_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_nodrop_newreno_delack
set guide_ "NewReno, plain ECN, delayed ACKs."
$self next pktTraceFile
}
Test/ecn_nodrop_newreno_delack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Newreno 3.0 0 1
$self drop_pkt 10000
$ns_ run
}
# Two ECNs close together
# Nope.
Class Test/ecn_twoecn_newreno_delack -superclass TestSuite
Test/ecn_twoecn_newreno_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_twoecn_newreno_delack
set guide_ "NewReno, delayed acks."
$self next pktTraceFile
}
Test/ecn_twoecn_newreno_delack instproc run {} {
global quiet guide_
$self instvar ns_ guide_ lossmodel
puts "Guide: $guide_"
$self ecnsetup Newreno 3.0 0 1
$self drop_pkt 195
$lossmodel set markecn_ true
$ns_ run
}
# ECN followed by packet loss.
Class Test/ecn_drop_newreno_delack -superclass TestSuite
Test/ecn_drop_newreno_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop_newreno_delack
set guide_ "ECN followed by packet loss."
$self next pktTraceFile
}
Test/ecn_drop_newreno_delack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Newreno 3.0 0 1
$self drop_pkt 195
$ns_ run
}
# ECN preceded by packet loss.
Class Test/ecn_drop1_newreno_delack -superclass TestSuite
Test/ecn_drop1_newreno_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_drop1_newreno_delack
set guide_ "ECN preceded by packet loss"
$self next pktTraceFile
}
Test/ecn_drop1_newreno_delack instproc run {} {
global quiet
$self instvar ns_ guide_
puts "Guide: $guide_"
$self ecnsetup Newreno 3.0 0 1
$self drop_pkt 185
$ns_ run
}
# ECN with a window of one packet.
Class Test/ecn_smallwinEcn_newreno_delack -superclass TestSuite
Test/ecn_smallwinEcn_newreno_delack instproc init {} {
$self instvar net_ test_ guide_
Queue/RED set setbit_ true
set net_ net2-lossy
set test_ ecn_smallwinEcn_newreno_delack
set guide_ "ECN with a window of one packet."
$self next pktTraceFile
}
Test/ecn_smallwinEcn_newreno_delack instproc run {} {
global quiet
$self instvar ns_ guide_ errmodel1
puts "Guide: $guide_"
$self ecnsetup Newreno 10.0 1 1
$self drop_pkts {4 8 9 11 12 13 14 15 120 135 143 148 150 151 152 153}
$errmodel1 set markecn_ true
$ns_ run
}
#################################################################
#################################################################
#
# Links1 uses 8Mb, 5ms feeders, and a 800Kb 20ms bottleneck.
# Queue-limit on bottleneck is 25 packets.
#
Class Topology/net6 -superclass Topology
Topology/net6 instproc init ns {
$self instvar node_
set node_(s1) [$ns node]
set node_(s2) [$ns node]
set node_(r1) [$ns node]
set node_(k1) [$ns node]
Queue/RED set setbit_ true
$ns duplex-link $node_(s1) $node_(r1) 8Mb 5ms DropTail
$ns duplex-link $node_(s2) $node_(r1) 8Mb 5ms DropTail
$ns duplex-link $node_(r1) $node_(k1) 800Kb 20ms RED
$ns queue-limit $node_(r1) $node_(k1) 25
$ns queue-limit $node_(k1) $node_(r1) 25
}
# This test shows two TCPs when one is ECN-capable and the other
# is not.
Class Test/ecn1 -superclass TestSuite
Test/ecn1 instproc init {} {
$self instvar net_ test_ guide_
set net_ net6
set test_ ecn1_(one_with_ecn1,_one_without)
set guide_ "Two TCPs, one with ECN and one without."
$self next pktTraceFile
}
Test/ecn1 instproc run {} {
global quiet
$self instvar ns_ guide_ node_ guide_ testName_
puts "Guide: $guide_"
$self setTopo
# Set up TCP connection
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 30
$tcp1 set ecn_ 1
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 0.0 "$ftp1 start"
# Set up TCP connection
set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
$tcp2 set window_ 20
$tcp2 set ecn_ 0
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 3.0 "$ftp2 start"
$self tcpDump $tcp1 5.0
$self tcpDump $tcp2 5.0
#$self traceQueues $node_(r1) [$self openTrace 10.0 $testName_]
$ns_ at 10.0 "$self cleanupAll $testName_"
$ns_ run
}
TestSuite runTest
|