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
|
#
# 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-simple.tcl,v 1.45 2010/04/03 20:40:15 tom_henderson Exp $
#
#
# This test suite reproduces most of the tests from the following note:
# Floyd, S., Simulator Tests. July 1995.
# URL ftp://ftp.ee.lbl.gov/papers/simtests.ps.Z.
#
# To run all tests: test-all
#
# To run individual tests:
# ns test-suite.tcl tahoe1
# ns test-suite.tcl tahoe2
# ...
#
# To view a list of available tests to run with this script:
# ns test-suite.tcl
#
# Much more extensive test scripts are available in tcl/test
# This script is a simplified version of tcl/test/test-suite-routed.tcl
# ns-random 0
#source misc_simple.tcl
#source support.tcl
remove-all-packet-headers ; # removes all except common
add-packet-header Flags IP TCP TFRC TFRC_ACK ; # hdrs reqd for TCP
# FOR UPDATING GLOBAL DEFAULTS:
Agent/TCP set rtxcur_init_ 6.0 ; # Default changed on 2006/01/21
Agent/TCP set updated_rttvar_ false ; # Variable added on 2006/1/21
Agent/TFRC set ss_changes_ 1 ; # Added on 10/21/2004
Agent/TFRC set slow_increase_ 1 ; # Added on 10/20/2004
Agent/TFRC set rate_init_ 2 ; # Added on 10/20/2004
Agent/TFRC set rate_init_option_ 2 ; # Added on 10/20/2004
Agent/TFRC set useHeaders_ false ; # Added on 6/24/2004, default of true
Agent/TFRC set headersize_ 40 ; # Changed on 6/24/2004 to 32.
Agent/TCP set minrto_ 1
# default changed on 10/14/2004.
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/TCP set useHeaders_ false
# The default is being changed to useHeaders_ true.
Agent/TCP set singledup_ 0
# The default is being changed to 1
set tcpTick_ 0.1
Agent/TCP set tcpTick_ $tcpTick_
# The default for tcpTick_ is being changed to reflect a changing reality.
Agent/TCP set rfc2988_ false
# The default for rfc2988_ is being changed to true.
Class TestSuite
TestSuite instproc init {} {
$self instvar ns_ net_ defNet_ test_ topo_ node_ testName_
set ns_ [new Simulator]
# trace-all is only used in more extensive test suites
# $ns_ trace-all [open all.tr w]
if {$net_ == ""} {
set net_ $defNet_
}
if ![Topology/$defNet_ info subclass Topology/$net_] {
global argv0
puts "$argv0: cannot run test $test_ over topology $net_"
exit 1
}
set topo_ [new Topology/$net_ $ns_]
foreach i [$topo_ array names node_] {
# This would be cool, but lets try to be compatible
# with test-suite.tcl as far as possible.
#
# $self instvar $i
# set $i [$topo_ node? $i]
#
set node_($i) [$topo_ node? $i]
}
if {$net_ == $defNet_} {
set testName_ "$test_"
} else {
set testName_ "$test_:$net_"
}
# XXX
if [info exists node_(k1)] {
set blink [$ns_ link $node_(r1) $node_(k1)]
} else {
set blink [$ns_ link $node_(r1) $node_(r2)]
}
$blink trace-dynamics $ns_ stdout
}
TestSuite instproc finish file {
global env quiet PERL
#
# we don't bother checking for the link we're interested in
# since we know only such events are in our trace file
#
set perlCode {
sub BEGIN { $c = 0; @p = @a = @d = @lu = @ld = (); }
/^[\+-] / && do {
if ($F[4] eq 'tcp' || $F[4] eq 'tcpFriend') {
push(@p, $F[1], ' ', \
$F[7] + ($F[10] % 90) * 0.01, "\n");
} elsif ($F[4] eq 'ack' || $F[4] eq 'tcpFriendCtl') {
push(@a, $F[1], ' ', \
$F[7] + ($F[10] % 90) * 0.01, "\n");
}
$c = $F[7] if ($c < $F[7]);
next;
};
/^d / && do {
push(@d, $F[1], ' ', \
$F[7] + ($F[10] % 90) * 0.01, "\n");
next;
};
/link-down/ && push(@ld, $F[1]);
/link-up/ && push(@lu, $F[1]);
sub END {
print "\"packets\n", @p, "\n";
# insert dummy data sets
# so we get X's for marks in data-set 4
print "\"skip-1\n0 1\n\n\"skip-2\n0 1\n\n";
#
# Repeat the first line twice in the drops file because
# often we have only one drop and xgraph won't print
# marks for data sets with only one point.
#
print "\n", '"drops', "\n", @d[0..3], @d;
# To plot acks, uncomment the following line
# print "\n", '"acks', "\n", @a;
$c++;
foreach $i (@ld) {
print "\n\"link-down\n$i 0\n$i $c\n";
}
foreach $i (@lu) {
print "\n\"link-up\n$i 0\n$i $c\n";
}
}
}
set f [open temp.rands w]
puts $f "TitleText: $file"
puts $f "Device: Postscript"
exec $PERL -ane $perlCode out.tr >@ $f
close $f
if {$quiet == "false"} {
if {[info exists env(DISPLAY)] && ![info exists env(NOXGRAPH)]} {
exec xgraph -display $env(DISPLAY) -bb -tk -nl -m -x time -y packet temp.rands &
} else {
puts stderr "output trace is in temp.rands"
}
}
exit 0
}
#
# Arrange for tcp source stats to be dumped for $tcpSrc every
# $interval seconds of simulation time
#
TestSuite instproc tcpDump { tcpSrc interval } {
global quiet
$self instvar dump_inst_ ns_
if ![info exists dump_inst_($tcpSrc)] {
set dump_inst_($tcpSrc) 1
$ns_ at 0.0 "$self tcpDump $tcpSrc $interval"
return
}
$ns_ at [expr [$ns_ now] + $interval] "$self tcpDump $tcpSrc $interval"
set report [$ns_ now]/cwnd=[format "%.4f" [$tcpSrc set cwnd_]]/ssthresh=[$tcpSrc set ssthresh_]/ack=[$tcpSrc set ack_]
if {$quiet == "false"} {
puts $report
}
}
TestSuite instproc tcpDumpAll { tcpSrc interval label } {
$self instvar dump_inst_ ns_
if ![info exists dump_inst_($tcpSrc)] {
set dump_inst_($tcpSrc) 1
puts $label/window=[$tcpSrc set window_]/packetSize=[$tcpSrc set packetSize_]/bugFix=[$tcpSrc set bugFix_]
$ns_ at 0.0 "$self tcpDumpAll $tcpSrc $interval $label"
return
}
$ns_ at [expr [$ns_ now] + $interval] "$self tcpDumpAll $tcpSrc $interval $label"
puts $label/time=[$ns_ now]/cwnd=[format "%.4f" [$tcpSrc set cwnd_]]/ssthresh=[$tcpSrc set ssthresh_]/ack=[$tcpSrc set ack_]/rtt=[$tcpSrc set rtt_]
}
TestSuite instproc openTrace { stopTime testName } {
$self instvar ns_
exec rm -f out.tr temp.rands
set traceFile [open out.tr w]
puts $traceFile "v testName $testName"
$ns_ at $stopTime \
"close $traceFile ; $self finish $testName"
return $traceFile
}
TestSuite instproc traceQueues { node traceFile } {
$self instvar ns_
foreach nbr [$node neighbors] {
$ns_ trace-queue $node $nbr $traceFile
[$ns_ link $node $nbr] trace-dynamics $ns_ $traceFile
}
}
proc usage {} {
global argv0
puts stderr "usage: ns $argv0 <tests> \[<topologies>\]"
puts stderr "Valid tests are:\t[get-subclasses TestSuite Test/]"
puts stderr "Valid Topologies are:\t[get-subclasses SkelTopology Topology/]"
exit 1
}
proc isProc? {cls prc} {
if [catch "Object info subclass $cls/$prc" r] {
global argv0
puts stderr "$argv0: no such $cls: $prc"
usage
}
}
proc get-subclasses {cls pfx} {
set ret ""
set l [string length $pfx]
set c $cls
while {[llength $c] > 0} {
set t [lindex $c 0]
set c [lrange $c 1 end]
if [string match ${pfx}* $t] {
lappend ret [string range $t $l end]
}
eval lappend c [$t info subclass]
}
set ret
}
TestSuite proc runTest {} {
global argc argv quiet
set quiet false
switch $argc {
1 {
set test $argv
isProc? Test $test
set topo ""
}
2 {
set test [lindex $argv 0]
isProc? Test $test
set topo [lindex $argv 1]
if {$topo == "QUIET"} {
set quiet true
set topo ""
} else {
isProc? Topology $topo
}
}
3 {
set test [lindex $argv 0]
isProc? Test $test
set topo [lindex $argv 1]
isProc? Topology $topo
set extra [lindex $argv 2]
if {$extra == "QUIET"} {
set quiet true
}
}
default {
usage
}
}
set t [new Test/$test $topo]
$t run
}
# Skeleton topology base class
Class SkelTopology
SkelTopology instproc init {} {
$self next
}
SkelTopology instproc node? n {
$self instvar node_
if [info exists node_($n)] {
set ret $node_($n)
} else {
set ret ""
}
set ret
}
SkelTopology instproc add-fallback-links {ns nodelist bw delay qtype args} {
$self instvar node_
set n1 [lindex $nodelist 0]
foreach n2 [lrange $nodelist 1 end] {
if ![info exists node_($n2)] {
set node_($n2) [$ns node]
}
$ns duplex-link $node_($n1) $node_($n2) $bw $delay $qtype
foreach opt $args {
set cmd [lindex $opt 0]
set val [lindex $opt 1]
if {[llength $opt] > 2} {
set x1 [lindex $opt 2]
set x2 [lindex $opt 3]
} else {
set x1 $n1
set x2 $n2
}
$ns $cmd $node_($x1) $node_($x2) $val
$ns $cmd $node_($x2) $node_($x1) $val
}
set n1 $n2
}
}
Class NodeTopology/4nodes -superclass SkelTopology
# Create a simple four node topology:
#
# s1
# \
# 8Mb,5ms \ 0.8Mb,100ms
# r1 --------- k1
# 8Mb,5ms /
# /
# s2
NodeTopology/4nodes instproc init ns {
$self next
$self instvar node_
set node_(s1) [$ns node]
set node_(s2) [$ns node]
set node_(r1) [$ns node]
set node_(k1) [$ns node]
}
#
# Links1 uses 8Mb, 5ms feeders, and a 800Kb 100ms bottleneck.
# Queue-limit on bottleneck is 6 packets.
#
Class Topology/net0 -superclass NodeTopology/4nodes
Topology/net0 instproc init ns {
$self next $ns
$self instvar node_
$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 100ms DropTail
$ns queue-limit $node_(r1) $node_(k1) 6
$ns queue-limit $node_(k1) $node_(r1) 6
if {[$class info instprocs config] != ""} {
$self config $ns
}
}
#
# The net0a topology with RED at the bottleneck should be functionally
# equivalent to the net0 topology above.
# The queue-limit on bottleneck is 5 instead of 6 packets, to account
# for a difference in measuring the queue between RED and DT.
# However, there are stilll performance differences between net0 and net0a.
#
Class Topology/net0a -superclass NodeTopology/4nodes
Topology/net0a instproc init ns {
$self next $ns
$self instvar node_
$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 100ms RED
$ns queue-limit $node_(r1) $node_(k1) 5
$ns queue-limit $node_(k1) $node_(r1) 5
Queue/RED set thresh_ 1000
Queue/RED set maxthresh_ 1000
if {[$class info instprocs config] != ""} {
$self config $ns
}
}
#
# Links1 uses 10Mb, 5ms feeders, and a 1.5Mb 100ms bottleneck.
# Queue-limit on bottleneck is 23 packets.
#
Class Topology/net1 -superclass NodeTopology/4nodes
Topology/net1 instproc init ns {
$self next $ns
$self instvar node_
$ns duplex-link $node_(s1) $node_(r1) 10Mb 5ms DropTail
$ns duplex-link $node_(s2) $node_(r1) 10Mb 5ms DropTail
$ns duplex-link $node_(r1) $node_(k1) 1.5Mb 100ms DropTail
$ns queue-limit $node_(r1) $node_(k1) 23
$ns queue-limit $node_(k1) $node_(r1) 23
if {[$class info instprocs config] != ""} {
$self config $ns
}
}
Class NodeTopology/6nodes -superclass SkelTopology
#
# Create a simple six node topology:
#
# s1 s3
# \ /
# 10Mb,2ms \ 1.5Mb,20ms / 10Mb,4ms
# r1 --------- r2
# 10Mb,3ms / \ 10Mb,5ms
# / \
# s2 s4
#
NodeTopology/6nodes instproc init ns {
$self next
$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]
}
Class Topology/net2 -superclass NodeTopology/6nodes
Topology/net2 instproc init ns {
$self next $ns
$self instvar node_
Queue/RED set drop_rand_ 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) 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
if {[$class info instprocs config] != ""} {
$self config $ns
}
}
Class Topology/net3 -superclass NodeTopology/6nodes
Topology/net3 instproc init ns {
$self next $ns
$self instvar node_
Queue/RED set drop_rand_ true
$ns duplex-link $node_(s1) $node_(r1) 100Mb 1ms DropTail
$ns duplex-link $node_(s2) $node_(r1) 100Mb 30ms DropTail
$ns duplex-link $node_(r1) $node_(r2) 10Mb 10ms RED
$ns queue-limit $node_(r1) $node_(r2) 25
$ns queue-limit $node_(r2) $node_(r1) 25
$ns duplex-link $node_(s3) $node_(r2) 100Mb 1ms DropTail
$ns duplex-link $node_(s4) $node_(r2) 100Mb 5ms DropTail
if {[$class info instprocs config] != ""} {
$self config $ns
}
}
# Definition of test-suite tests
Class Test/tahoe1 -superclass TestSuite
Test/tahoe1 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ tahoe
set guide_ \
"Tahoe TCP with multiple packets dropped from a window of data."
Queue/DropTail set summarystats_ true
$self next
}
Test/tahoe1 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
# Set up TCP connection
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 50
# Set up FTP source
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 0.0 "$ftp1 start"
$self tcpDump $tcp1 1.0
set link1 [$ns_ link $node_(r1) $node_(k1)]
set queue1 [$link1 queue]
$ns_ at 5.0 "$queue1 printstats"
# Trace only the bottleneck link
#
# Actually, we now trace all activity at the node around the
# bottleneck link. This allows us to track acks, as well
# packets taking any alternate paths around the bottleneck
# link.
#
$self traceQueues $node_(r1) [$self openTrace 5.0 $testName_]
$ns_ run
}
Class Test/tahoe1Bytes -superclass TestSuite
Test/tahoe1Bytes instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ tahoe1Bytes
set guide_ "DropTail queue in bytes instead of packets."
Queue/DropTail set queue_in_bytes_ true
Queue/DropTail set mean_pktsize_ 1000
Queue/DropTail set summarystats_ true
Test/tahoe1Bytes instproc run {} [Test/tahoe1 info instbody run ]
$self next
}
# Tahoe1 with RED
Class Test/tahoe1RED -superclass TestSuite
Test/tahoe1RED instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0a
set test_ tahoe1RED
set guide_ \
"RED queue, configured for 5 packets instead of DropTail's 6 packets."
Queue/RED set summarystats_ true
Test/tahoe1RED instproc run {} [Test/tahoe1 info instbody run ]
$self next
}
# Tahoe1 with RED
Class Test/tahoe1REDbytes -superclass TestSuite
Test/tahoe1REDbytes instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0a
set test_ tahoe1REDbytes
set guide_ "RED queue in bytes."
Queue/RED set queue_in_bytes_ true
Queue/RED set mean_pktsize_ 1000
Queue/RED set summarystats_ true
Test/tahoe1REDbytes instproc run {} [Test/tahoe1 info instbody run ]
$self next
}
Class Test/tahoe2 -superclass TestSuite
Test/tahoe2 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ tahoe2
set guide_ "Tahoe TCP with one packet dropped."
$self next
}
Test/tahoe2 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 14
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 1.0 "$ftp1 start"
$self tcpDump $tcp1 1.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 5.0 $testName_]
$ns_ run
}
Class Test/tahoe3 -superclass TestSuite
Test/tahoe3 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ tahoe3
set guide_ \
"Tahoe TCP, two packets dropped from a congestion window of 5 packets."
$self next
}
Test/tahoe3 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ queue-limit $node_(r1) $node_(k1) 8
$ns_ queue-limit $node_(k1) $node_(r1) 8
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 100
set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
$tcp2 set window_ 16
set ftp1 [$tcp1 attach-app FTP]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 1.0 "$ftp1 start"
$ns_ at 0.5 "$ftp2 start"
$self tcpDump $tcp1 1.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 8.0 $testName_]
$ns_ run
}
# Tahoe3 with RED.
Class Test/tahoe3RED -superclass TestSuite
Test/tahoe3RED instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0a
set test_ tahoe3RED
set guide_ \
"Tahoe TCP, two packets dropped, RED queue configured for 5 packets."
Test/tahoe3RED instproc run {} [Test/tahoe3 info instbody run ]
$self next
}
Class Test/tahoe4 -superclass TestSuite
Test/tahoe4 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ tahoe4
set guide_ \
"Tahoe TCP, two connections with different round-trip times."
$self next
}
Test/tahoe4 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ delay $node_(s2) $node_(r1) 200ms
$ns_ delay $node_(r1) $node_(s2) 200ms
$ns_ queue-limit $node_(r1) $node_(k1) 11
$ns_ queue-limit $node_(k1) $node_(r1) 11
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 30
set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
$tcp2 set window_ 30
set ftp1 [$tcp1 attach-app FTP]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 0.0 "$ftp1 start"
$ns_ at 0.0 "$ftp2 start"
$self tcpDump $tcp1 5.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 25.0 $testName_]
$ns_ run
}
Class Test/no_bug -superclass TestSuite
Test/no_bug instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net1
set test_ no_bug
set guide_ "Tahoe TCP with TCP/bugFix_ set to true."
$self next
}
Test/no_bug instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ delay $node_(s1) $node_(r1) 3ms
$ns_ delay $node_(r1) $node_(s1) 3ms
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 50
set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
$tcp2 set window_ 50
set ftp1 [$tcp1 attach-app FTP]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 1.0 "$ftp1 start"
$ns_ at 1.75 "$ftp2 produce 99"
$self tcpDump $tcp1 1.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 6.0 $testName_]
$ns_ run
}
Class Test/bug -superclass TestSuite
Test/bug instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net1
set test_ bug
set guide_ "Tahoe TCP with TCP/bugFix_ set to false."
$self next
}
Test/bug instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ delay $node_(s1) $node_(r1) 3ms
$ns_ delay $node_(r1) $node_(s1) 3ms
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 50
$tcp1 set bugFix_ false
set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
$tcp2 set window_ 50
$tcp2 set bugFix_ false
set ftp1 [$tcp1 attach-app FTP]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 1.0 "$ftp1 start"
$ns_ at 1.75 "$ftp2 produce 100"
$self tcpDump $tcp1 1.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 6.0 $testName_]
$ns_ run
}
Class Test/reno1 -superclass TestSuite
Test/reno1 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ reno1
set guide_ \
"Reno TCP, one packet dropped, Fast Recovery and Fast Retransmit"
$self next
}
Test/reno1 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 14
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 1.0 "$ftp1 start"
$self tcpDump $tcp1 1.0
# trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 5.0 $testName_]
$ns_ run
}
Class Test/reno -superclass TestSuite
Test/reno instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ reno
set guide_ \
"Reno TCP, limited by maximum congestion window maxcwnd_."
$self next
}
Test/reno instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 28
$tcp1 set maxcwnd_ 14
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 1.0 "$ftp1 start"
$self tcpDump $tcp1 1.0
# trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 5.0 $testName_]
$ns_ run
}
Class Test/renoA -superclass TestSuite
Test/renoA instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ renoA
set guide_ \
"Reno TCP, one packet dropped, Fast Recovery and Fast Retransmit"
$self next
}
Test/renoA instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ queue-limit $node_(r1) $node_(k1) 8
set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 28
set tcp2 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 1]
$tcp2 set window_ 4
set tcp3 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 2]
$tcp3 set window_ 4
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 1.0 "$ftp1 start"
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 1.2 "$ftp2 produce 6"
set ftp3 [$tcp3 attach-app FTP]
$ns_ at 1.2 "$ftp3 produce 6"
$self tcpDump $tcp1 1.0
$self tcpDump $tcp2 1.0
$self tcpDump $tcp3 1.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 5.0 $testName_]
$ns_ run
}
Class Test/reno2 -superclass TestSuite
Test/reno2 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ reno2
set guide_ \
"Reno TCP, multiple packets dropped, Retransmit Timeout."
$self next
}
Test/reno2 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ queue-limit $node_(r1) $node_(k1) 9
set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 50
set tcp2 [$ns_ create-connection TCP/Reno $node_(s2) TCPSink $node_(k1) 1]
$tcp2 set window_ 20
set ftp1 [$tcp1 attach-app FTP]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 1.0 "$ftp1 start"
$ns_ at 1.0 "$ftp2 start"
$self tcpDump $tcp1 1.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 10.0 $testName_]
$ns_ run
}
Class Test/reno3 -superclass TestSuite
Test/reno3 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ reno3
set guide_ \
"Reno TCP, two packets dropped from a congestion window of 5 packets."
$self next
}
Test/reno3 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ queue-limit $node_(r1) $node_(k1) 8
$ns_ queue-limit $node_(k1) $node_(r1) 8
set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 100
set tcp2 [$ns_ create-connection TCP/Reno $node_(s2) TCPSink $node_(k1) 1]
$tcp2 set window_ 16
set ftp1 [$tcp1 attach-app FTP]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 1.0 "$ftp1 start"
$ns_ at 0.5 "$ftp2 start"
$self tcpDump $tcp1 1.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 8.0 $testName_]
$ns_ run
}
Class Test/reno4 -superclass TestSuite
Test/reno4 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net2
set test_ reno4
set guide_ \
"Reno TCP, two packets dropped, no Retransmit Timeout"
$self next
}
Test/reno4 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ queue-limit $node_(r1) $node_(r2) 29
set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink/DelAck $node_(r2) 0]
$tcp1 set window_ 80
$tcp1 set maxcwnd_ 40
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 0.0 "$ftp1 start"
$self tcpDump $tcp1 1.0
# DelAckSink's default behavior changed 2010-02-02
[$node_(r2) agent [$tcp1 dst-port]] set SYN_immediate_ack_ false
# Trace only the bottleneck link
$self traceQueues $node_(s1) [$self openTrace 2.0 $testName_]
$ns_ run
}
Class Test/reno4a -superclass TestSuite
Test/reno4a instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net2
set test_ reno4a
set guide_ \
"Reno TCP, two packets dropped, Retransmit Timeout"
$self next
}
Test/reno4a instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ queue-limit $node_(r1) $node_(r2) 29
set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink/DelAck $node_(r2) 0]
$tcp1 set window_ 40
$tcp1 set maxcwnd_ 40
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 0.0 "$ftp1 start"
$self tcpDump $tcp1 1.0
# DelAckSink's default behavior changed 2010-02-02
[$node_(r2) agent [$tcp1 dst-port]] set SYN_immediate_ack_ false
# Trace only the bottleneck link
$self traceQueues $node_(s1) [$self openTrace 4.0 $testName_]
$ns_ run
}
Class Test/reno5 -superclass TestSuite
Test/reno5 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ reno5
set guide_ \
"Reno TCP, TCP/bugFix_ set to false."
Agent/TCP set bugFix_ false
$self next
}
Test/reno5 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ queue-limit $node_(r1) $node_(k1) 9
set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 50
set tcp2 [$ns_ create-connection TCP/Reno $node_(s2) TCPSink $node_(k1) 1]
$tcp2 set window_ 20
set ftp1 [$tcp1 attach-app FTP]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 1.0 "$ftp1 start"
$ns_ at 1.1 "$ftp2 start"
$self tcpDump $tcp1 1.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 10.0 $testName_]
$ns_ run
}
Class Test/reno5_nobug -superclass TestSuite
Test/reno5_nobug instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ reno5_nobug
set guide_ \
"Reno TCP, TCP/bugFix_ set to true."
Agent/TCP set bugFix_ true
Test/reno5_nobug instproc run {} [Test/reno5 info instbody run ]
$self next
}
Class Test/telnet -superclass TestSuite
Test/telnet instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ telnet
set guide_ \
"Telnet connections with two different packet generation processes."
Agent/TCP set timerfix_ false
# The default is being changed to true.
$self next
}
Test/telnet instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ queue-limit $node_(r1) $node_(k1) 8
$ns_ queue-limit $node_(k1) $node_(r1) 8
set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]
set tcp2 [$ns_ create-connection TCP/Reno $node_(s2) TCPSink $node_(k1) 1]
set tcp3 [$ns_ create-connection TCP/Reno $node_(s2) TCPSink $node_(k1) 2]
set telnet1 [$tcp1 attach-app Telnet]; $telnet1 set interval_ 1
set telnet2 [$tcp2 attach-app Telnet]; $telnet2 set interval_ 0
# Interval 0 designates the tcplib telnet interarrival distribution
set telnet3 [$tcp3 attach-app Telnet]; $telnet3 set interval_ 0
$ns_ at 0.0 "$telnet1 start"
$ns_ at 0.0 "$telnet2 start"
$ns_ at 0.0 "$telnet3 start"
$self tcpDump $tcp1 5.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 50.0 $testName_]
# use a different seed each time
#puts seed=[$ns_ random 0]
$ns_ run
}
Class Test/delayed -superclass TestSuite
Test/delayed instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ delayed
set guide_ \
"TCP receiver with delayed acknowledgements."
$self next
}
Test/delayed instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink/DelAck $node_(k1) 0]
$tcp1 set window_ 50
# lookup up the sink and set it's delay interval
[$node_(k1) agent [$tcp1 dst-port]] set interval 100ms
set ftp1 [$tcp1 attach-app FTP];
$ns_ at 1.0 "$ftp1 start"
$self tcpDump $tcp1 1.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 4.0 $testName_]
$ns_ run
}
Class Test/phase -superclass TestSuite
Test/phase instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ phase
set guide_ "Phase effects: connection 0 wins."
$self next
}
Test/phase instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ delay $node_(s2) $node_(r1) 3ms
$ns_ delay $node_(r1) $node_(s2) 3ms
$ns_ queue-limit $node_(r1) $node_(k1) 16
$ns_ queue-limit $node_(k1) $node_(r1) 100
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 32
set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
$tcp2 set window_ 32
set ftp1 [$tcp1 attach-app FTP]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 5.0 "$ftp1 start"
$ns_ at 1.0 "$ftp2 start"
$self tcpDump $tcp1 5.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 25.0 $testName_]
$ns_ run
}
Class Test/phase1 -superclass TestSuite
Test/phase1 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ phase1
set guide_ "Phase effects: connection 1 wins."
$self next
}
Test/phase1 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ delay $node_(s2) $node_(r1) 9.5ms
$ns_ delay $node_(r1) $node_(s2) 9.5ms
$ns_ queue-limit $node_(r1) $node_(k1) 16
$ns_ queue-limit $node_(k1) $node_(r1) 100
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 32
set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
$tcp2 set window_ 32
set ftp1 [$tcp1 attach-app FTP]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 5.0 "$ftp1 start"
$ns_ at 1.0 "$ftp2 start"
$self tcpDump $tcp1 5.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 25.0 $testName_]
$ns_ run
}
Class Test/phase2 -superclass TestSuite
Test/phase2 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ phase2
set guide_ \
"Phase effects: TCP/overhead_ is used, and neither connection loses."
$self next
}
Test/phase2 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ delay $node_(s2) $node_(r1) 3ms
$ns_ delay $node_(r1) $node_(s2) 3ms
$ns_ queue-limit $node_(r1) $node_(k1) 16
$ns_ queue-limit $node_(k1) $node_(r1) 100
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp1 set window_ 32
$tcp1 set overhead_ 0.01
set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
$tcp2 set window_ 32
# $tcp2 set overhead_ 0.01
# The random overhead_ was increased slightly to illustrate fairness
# for this scenario.
$tcp2 set overhead_ 0.015
set ftp1 [$tcp1 attach-app FTP]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 5.0 "$ftp1 start"
$ns_ at 1.0 "$ftp2 start"
$self tcpDump $tcp1 5.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 25.0 $testName_]
$ns_ run
}
Class Test/timers -superclass TestSuite
Test/timers instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ timers
set guide_ "TCP retransmit timers."
Agent/TCP set timerfix_ false
# The default is being changed to true.
$self next
}
Test/timers instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
$ns_ queue-limit $node_(r1) $node_(k1) 2
$ns_ queue-limit $node_(k1) $node_(r1) 100
set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink/DelAck $node_(k1) 0]
$tcp1 set window_ 4
# look up the sink and set its delay interval
[$node_(k1) agent [$tcp1 dst-port]] set interval_ 100ms
set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink/DelAck $node_(k1) 1]
$tcp2 set window_ 4
# look up the sink and set its delay interval
[$node_(k1) agent [$tcp2 dst-port]] set interval_ 100ms
# DelAckSink's default behavior changed 2010-02-02
[$node_(k1) agent [$tcp1 dst-port]] set SYN_immediate_ack_ false
[$node_(k1) agent [$tcp2 dst-port]] set SYN_immediate_ack_ false
set ftp1 [$tcp1 attach-app FTP]
set ftp2 [$tcp2 attach-app FTP]
$ns_ at 1.0 "$ftp1 start"
$ns_ at 1.3225 "$ftp2 start"
$self tcpDump $tcp1 5.0
# Trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace 10.0 $testName_]
$ns_ run
}
# Many small TCP flows.
Class Test/manyflows -superclass TestSuite
Test/manyflows instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ manyflows
set guide_ "Using FTP commands to create many small flows."
$self next
}
Test/manyflows instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
# Set up TCP connections
set rng_ [new RNG]
## $rng_ seed [ns random 0]
set stoptime 5
set randomflows 10
for {set i 0} {$i < $randomflows} {incr i} {
set tcp [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 1]
set ftp [[set tcp] attach-app FTP]
set numpkts [$rng_ uniform 0 10]
set starttime [$rng_ uniform 0 $stoptime]
$ns_ at $starttime "[set ftp] produce $numpkts"
$ns_ at $stoptime "[set ftp] stop"
}
# Trace only the bottleneck link
#
# Actually, we now trace all activity at the node around the
# bottleneck link. This allows us to track acks, as well
# packets taking any alternate paths around the bottleneck
# link.
#
$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
$ns_ run
}
TestSuite instproc printpkts { label tcp } {
global tcpTick_
puts "tcp $label highest_seqment_acked [$tcp set ack_]"
puts "tcp $label data_bytes_sent [$tcp set ndatabytes_]"
set numRtts [$tcp set rtt_]
set tick $tcpTick_
set rtt [expr $numRtts * $tcpTick_]
puts "tcp $label most_recent_rtt [format "%5.3f" $rtt]"
}
TestSuite instproc printpktsTFRC { label tfrc } {
global tcpTick_
puts "tfrc $label data_pkts_sent [$tfrc set ndatapack_]"
}
TestSuite instproc printdrops { fid fmon } {
set fcl [$fmon classifier]; # flow classifier
#
# look up the flow using the classifier. Because we are
# using a Fid classifier, the src/dst fields are not compared,
# and can thus be just zero, as illustrated here. The "auto"
# indicates we don't already know which bucket in the classifier's
# hash table to find the flow we're looking for.
#
set flow [$fcl lookup auto 0 0 $fid]
puts "fid: $fid per-link total_drops [$flow set pdrops_]"
puts "fid: $fid per-link total_marks [$flow set pmarks_]"
puts "fid: $fid per-link total_packets [$flow set pdepartures_]"
puts "fid: $fid per-link total_bytes [$flow set bdepartures_]"
#
# note there is much more date available in $flow and $fmon
# that isn't being printed here.
#
}
TestSuite instproc printstop { stoptime } {
puts "stop-time $stoptime"
}
TestSuite instproc printall { fmon } {
puts "aggregate per-link total_drops [$fmon set pdrops_]"
puts "aggregate per-link total_marks [$fmon set pmarks_]"
puts "aggregate per-link total_packets [$fmon set pdepartures_]"
}
TestSuite instproc printPeakRates { fmon time } {
$self instvar pastbytes
set allflows [$fmon flows]
foreach f $allflows {
set fid [$f set flowid_]
#set src [$f set src_]
#set dst [$f set dst_]
set bytes [$f set bdepartures_]
if [info exists pastbytes($f)] {
set newbytes [expr $bytes - $pastbytes($f)]
} else {
set newbytes $bytes
}
if {$newbytes > 0} {
#src: $src d st: $dst
puts "time: [format "%3.2f" $time] fid: $fid new_bytes $newbytes"
set pastbytes($f) $bytes
}
}
}
TestSuite instproc printPeakRate { fmon time interval } {
$self instvar ns_
set newTime [expr [$ns_ now] + $interval]
$ns_ at $time "$self printPeakRates $fmon $time"
$ns_ at $newTime "$self printPeakRate $fmon $newTime $interval"
}
Class Test/stats -superclass TestSuite
Test/stats instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ stats
set guide_ \
"TCP statistics, and per-flow and aggregate link statistics."
$self next
}
Test/stats instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ delay $node_(s2) $node_(r1) 200ms
$ns_ delay $node_(r1) $node_(s2) 200ms
$ns_ queue-limit $node_(r1) $node_(k1) 10
$ns_ queue-limit $node_(k1) $node_(r1) 10
set slink [$ns_ link $node_(r1) $node_(k1)]; # link to collect stats on
set fmon [$ns_ makeflowmon Fid]
$ns_ attach-fmon $slink $fmon
set stoptime 10.1
set tcp0 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp0 set window_ 30
set tcp1 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
$tcp1 set window_ 30
set ftp0 [$tcp0 attach-app FTP]
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 1.0 "$ftp0 start"
$ns_ at 1.0 "$ftp1 start"
$self tcpDumpAll $tcp0 5.0 tcp0
$self tcpDumpAll $tcp1 5.00001 tcp1
set almosttime [expr $stoptime - 0.001]
$ns_ at $almosttime "$self printpkts 0 $tcp0"
$ns_ at $almosttime "$self printpkts 1 $tcp1"
$ns_ at $stoptime "$self printdrops 0 $fmon; $self printdrops 1 $fmon"
$ns_ at $stoptime "$self printall $fmon"
# trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
$ns_ run
}
Class Test/statsECN -superclass TestSuite
Test/statsECN instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0a
set test_ statsECN
Queue/RED set setbit_ true
Queue/RED set thresh_ 1
Queue/RED set maxthresh_ 0
Agent/TCP set ecn_ 1
set guide_ \
"Flow monitor statistics with ECN."
$self next
}
Test/statsECN instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ delay $node_(s2) $node_(r1) 200ms
$ns_ delay $node_(r1) $node_(s2) 200ms
$ns_ queue-limit $node_(r1) $node_(k1) 100
$ns_ queue-limit $node_(k1) $node_(r1) 100
set slink [$ns_ link $node_(r1) $node_(k1)]; # link to collect stats on
set fmon [$ns_ makeflowmon Fid]
$ns_ attach-fmon $slink $fmon
set stoptime 10.1
set tcp0 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp0 set window_ 30
set tcp1 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
$tcp1 set window_ 30
set ftp0 [$tcp0 attach-app FTP]
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 1.0 "$ftp0 start"
$ns_ at 1.0 "$ftp1 start"
set almosttime [expr $stoptime - 0.001]
$ns_ at $stoptime "$self printdrops 0 $fmon; $self printdrops 1 $fmon"
$ns_ at $stoptime "$self printall $fmon"
# trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
$ns_ run
}
Class Test/stats1 -superclass TestSuite
Test/stats1 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
Queue/DropTail set summarystats_ true
set test_ stats1
set guide_ \
"FTP statistics on bytes produced, and queue statistics.
Should be: fid: 0 per-link total_bytes 940."
$self next
}
Test/stats1 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
$ns_ delay $node_(s2) $node_(r1) 200ms
$ns_ delay $node_(r1) $node_(s2) 200ms
$ns_ queue-limit $node_(r1) $node_(k1) 10
$ns_ queue-limit $node_(k1) $node_(r1) 10
set packetSize_ 100
Agent/TCP set packetSize_ $packetSize_
puts "TCP packetSize [Agent/TCP set packetSize_]"
set slink [$ns_ link $node_(r1) $node_(k1)]; # link to collect stats on
set fmon [$ns_ makeflowmon Fid]
$ns_ attach-fmon $slink $fmon
set stoptime 10.1
set tcp0 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
$tcp0 set window_ 30
set tcp1 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
$tcp1 set window_ 30
set ftp0 [$tcp0 attach-app FTP]
set ftp1 [$tcp1 attach-app FTP]
set packets_ftp 9
set bytes_ftp [expr $packets_ftp * $packetSize_]
$ns_ at 1.0 "$ftp0 produce $packets_ftp"
puts "ftp 0 segments_produced $packets_ftp (using `FTP produce pktcnt')"
$ns_ at 1.0 "$ftp1 send $bytes_ftp"
puts "ftp 1 bytes_produced $bytes_ftp (using `FTP send nbytes')"
set link1 [$ns_ link $node_(r1) $node_(k1)]
set queue1 [$link1 queue]
$ns_ at 10.0 "$queue1 printstats"
set almosttime [expr $stoptime - 0.001]
$ns_ at $almosttime "$self printpkts 0 $tcp0"
$ns_ at $almosttime "$self printpkts 1 $tcp1"
$ns_ at $stoptime "$self printdrops 0 $fmon; $self printdrops 1 $fmon"
$ns_ at $stoptime "$self printall $fmon"
# trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
$ns_ run
}
Class Test/stats1Bytes -superclass TestSuite
Test/stats1Bytes instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
Queue/DropTail set summarystats_ true
Queue/DropTail set queue_in_bytes_ true
set test_ stats1Bytes
set guide_ "Queue statistics for a queue in bytes.
Should be: True average queue: 0.439 (in bytes)"
Test/stats1Bytes instproc run {} [Test/stats1 info instbody run]
$self next
}
Class Test/stats1a -superclass TestSuite
Test/stats1a instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0a
Queue/RED set summarystats_ true
set test_ stats1a
set guide_ "Queue statistics for a RED queue.
Should be: True average queue: 0.004"
Test/stats1a instproc run {} [Test/stats1 info instbody run]
$self next
}
Class Test/stats1aBytes -superclass TestSuite
Test/stats1aBytes instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0a
Queue/RED set summarystats_ true
Queue/RED set queue_in_bytes_ true
set test_ stats1aBytes
set guide_ "Queue statistics for a RED queue in bytes.
Should be: True average queue: 0.439 (in bytes)"
Test/stats1aBytes instproc run {} [Test/stats1 info instbody run]
$self next
}
Class Test/statsHeaders -superclass TestSuite
Test/statsHeaders instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0a
Queue/RED set summarystats_ true
Agent/TCP set useHeaders_ true
set test_ statsHeaders
set guide_ \
"FTP and packet statistics for TCP with correct accounting for headers.
Should be: fid: 0 per-link total_bytes 1300"
Test/statsHeaders instproc run {} [Test/stats1 info instbody run]
$self next
}
Class Test/stats2 -superclass TestSuite
Test/stats2 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net2
Queue/RED set summarystats_ true
set test_ stats2
set guide_ \
"Queue statistics for the true average queue size.
Should be: True average queue: 8.632"
$self next
}
Test/stats2 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
set stoptime 10.1
set tcp0 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(s3) 0]
$tcp0 set window_ 1000
set tcp1 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(s3) 1]
$tcp1 set window_ 1000
set ftp0 [$tcp0 attach-app FTP]
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 0.0 "$ftp0 start"
$ns_ at 1.0 "$ftp1 start"
set link1 [$ns_ link $node_(r1) $node_(r2)]
set queue1 [$link1 queue]
$ns_ at 10.0 "$queue1 printstats"
# trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
$ns_ run
}
Class Test/stats3 -superclass TestSuite
Test/stats3 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net3
set test_ stats3
QueueMonitor set keepRTTstats_ 1
QueueMonitor set maxRTT_ 1
QueueMonitor set binsPerSec_ 100
QueueMonitor set keepSeqnoStats_ 1
QueueMonitor set maxSeqno_ 2000
QueueMonitor set SeqnoBinSize_ 100
Agent/TCP set tcpTick_ 0.01
set guide_ "Printing RTT and Seqno statistics."
$self next
}
Test/stats3 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
set stoptime 1.1
set slink [$ns_ link $node_(r1) $node_(r2)];
set fmon [new QueueMonitor]
#set outfile [open temp.stats w]
set outfile stdout
$fmon traceDist $outfile
$ns_ attach-fmon $slink $fmon
set tcp0 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(s3) 0]
$tcp0 set window_ 10
set tcp1 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(s3) 1]
$tcp1 set window_ 10
set ftp0 [$tcp0 attach-app FTP]
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 0.0 "$ftp0 start"
$ns_ at 0.1 "$ftp1 start"
set link1 [$ns_ link $node_(r1) $node_(r2)]
set queue1 [$link1 queue]
$ns_ at $stoptime "$fmon printRTTs"
#
## to plot RTTs:
## ./test-all-simple stats3 > out %
## awk -f rtts.awk out > data
## xgraph -bb -tk -x rtt -y frac_of_pkts data &
#
$ns_ at $stoptime "$fmon printSeqnos"
#
## to plot seqnos:
## ./test-all-simple stats3 > out &
## awk -f seqnos.awk out > data
## xgraph -bb -tk -x seqno_bin -y frac_of_pkts data &
#
# trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
$ns_ run
}
Class Test/stats4 -superclass TestSuite
Test/stats4 instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net3
set test_ stats4
Agent/TCP set tcpTick_ 0.01
set guide_ "Printing peak rate statistics."
$self next
}
Test/stats4 instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_
puts "Guide: $guide_"
set stoptime 1.1
set PeakRateInterval 0.1
set slink [$ns_ link $node_(r1) $node_(r2)];
#set fmon [$ns_ makeflowmon SrcDestFid]
set fmon [$ns_ makeflowmon Fid]
set outfile stdout
$fmon traceDist $outfile
$ns_ attach-fmon $slink $fmon
set tcp0 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(s3) 0]
$tcp0 set window_ 10
set tcp1 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(s3) 1]
$tcp1 set window_ 10
set ftp0 [$tcp0 attach-app FTP]
set ftp1 [$tcp1 attach-app FTP]
$ns_ at 0.0 "$ftp0 start"
$ns_ at 0.1 "$ftp1 start"
set link1 [$ns_ link $node_(r1) $node_(r2)]
set queue1 [$link1 queue]
$ns_ at 0.5 "$self printPeakRate $fmon 0.5 $PeakRateInterval"
# trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
$ns_ run
}
Class Test/statsTFRC -superclass TestSuite
Test/statsTFRC instproc init topo {
$self instvar net_ defNet_ test_ guide_
set net_ $topo
set defNet_ net0
set test_ statsTFRC
set guide_ \
"TFRC statistics, and per-flow and aggregate link statistics."
$self next
}
Test/statsTFRC instproc run {} {
global quiet
$self instvar ns_ node_ testName_ guide_ test_
puts "Guide: $guide_"
$ns_ delay $node_(s2) $node_(r1) 200ms
$ns_ delay $node_(r1) $node_(s2) 200ms
$ns_ queue-limit $node_(r1) $node_(k1) 10
$ns_ queue-limit $node_(k1) $node_(r1) 10
set slink [$ns_ link $node_(r1) $node_(k1)]; # link to collect stats on
set fmon [$ns_ makeflowmon Fid]
$ns_ attach-fmon $slink $fmon
set stoptime 5.1
set tf0 [$ns_ create-connection TFRC $node_(s1) TFRCSink $node_(k1) 0]
#$tf0 set window_ 30
set tf1 [$ns_ create-connection TFRC $node_(s2) TFRCSink $node_(k1) 1]
#$tf1 set window_ 30
set ftp0 [new Application/FTP]; $ftp0 attach-agent $tf0
set ftp1 [new Application/FTP]; $ftp1 attach-agent $tf1
$ns_ at 1.0 "$ftp0 start"
$ns_ at 1.0 "$ftp1 start"
#$self tcpDumpAll $tf0 5.0 tf0
#$self tcpDumpAll $tf1 5.00001 tf1
set almosttime [expr $stoptime - 0.001]
$ns_ at $almosttime "$self printpktsTFRC 0 $tf0"
$ns_ at $almosttime "$self printpktsTFRC 1 $tf1"
$ns_ at $stoptime "$self printdrops 0 $fmon; $self printdrops 1 $fmon"
$ns_ at $stoptime "$self printall $fmon"
# trace only the bottleneck link
$self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
$ns_ run
}
# Add a test to printTimestamps.
# tcp-sink.cc, p. 337.
TestSuite runTest
### Local Variables:
### mode: tcl
### tcl-indent-level: 8
### tcl-default-application: ns
### End:
|