test-suite-tcp.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:31k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (c) 1995 The Regents of the University of California.
  3. # All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms, with or without
  6. # modification, are permitted provided that the following conditions
  7. # are met:
  8. # 1. Redistributions of source code must retain the above copyright
  9. #    notice, this list of conditions and the following disclaimer.
  10. # 2. Redistributions in binary form must reproduce the above copyright
  11. #    notice, this list of conditions and the following disclaimer in the
  12. #    documentation and/or other materials provided with the distribution.
  13. # 3. All advertising materials mentioning features or use of this software
  14. #    must display the following acknowledgement:
  15. # This product includes software developed by the Computer Systems
  16. # Engineering Group at Lawrence Berkeley Laboratory.
  17. # 4. Neither the name of the University nor of the Laboratory may be used
  18. #    to endorse or promote products derived from this software without
  19. #    specific prior written permission.
  20. #
  21. # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. # SUCH DAMAGE.
  32. #
  33. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/test/test-suite-tcp.tcl,v 1.41 2007/10/24 22:40:24 sallyfloyd Exp $
  34. #
  35. # To view a list of available tests to run with this script:
  36. # ns test-suite-tcp.tcl
  37. #
  38. source misc.tcl
  39. source topologies.tcl
  40. remove-all-packet-headers       ; # removes all except common
  41. add-packet-header Flags IP TCP  ; # hdrs reqd for TCP
  42. Agent/TCP set tcpTick_ 0.1
  43. # The default for tcpTick_ is being changed to reflect a changing reality.
  44. # FOR UPDATING GLOBAL DEFAULTS:
  45. Agent/TCP set precisionReduce_ false ;   # default changed on 2006/1/24.
  46. Agent/TCP set rtxcur_init_ 6.0 ;      # Default changed on 2006/01/21
  47. Agent/TCP set updated_rttvar_ false ;  # Variable added on 2006/1/21
  48. Queue/RED set bytes_ false              
  49. # default changed on 10/11/2004.
  50. Queue/RED set queue_in_bytes_ false
  51. # default changed on 10/11/2004.
  52. Queue/RED set q_weight_ 0.002
  53. Queue/RED set thresh_ 5 
  54. Queue/RED set maxthresh_ 15
  55. # The RED parameter defaults are being changed for automatic configuration.
  56. Agent/TCP set useHeaders_ false
  57. # The default is being changed to useHeaders_ true.
  58. Agent/TCP set windowInit_ 1
  59. # The default is being changed to 2.
  60. Agent/TCP set singledup_ 0
  61. # The default is being changed to 1
  62. Agent/TCP set minrto_ 0
  63. # The default is being changed to minrto_ 1
  64. Agent/TCP set syn_ false
  65. Agent/TCP set delay_growth_ false
  66. # In preparation for changing the default values for syn_ and delay_growth_.
  67. Agent/TCP set rfc2988_ true
  68. TestSuite instproc finish file {
  69. global quiet PERL
  70.         exec $PERL ../../bin/set_flow_id -s all.tr | 
  71.           $PERL ../../bin/getrc -s 2 -d 3 | 
  72.           $PERL ../../bin/raw2xg -s 0.01 -m 90 -t $file > temp.rands
  73. if {$quiet == "false"} {
  74. exec xgraph -bb -tk -nl -m -x time -y packets temp.rands &
  75. }
  76.         ## now use default graphing tool to make a data file
  77. ## if so desired
  78. ## regsub \(.+\) $file {} filename
  79. ## exec csh gnuplotA.com temp.rands $filename
  80.         exit 0
  81. }
  82. TestSuite instproc printtimers { tcp time} {
  83. global quiet
  84. if {$quiet == "false"} {
  85.          puts "time: [format %.3f $time] sRTT(in ticks): [$tcp set srtt_]/8 RTTvar(in ticks): [$tcp set rttvar_]/4 backoff: [$tcp set backoff_]"
  86. }
  87. }
  88. TestSuite instproc printtimersAll { tcp time interval } {
  89.         $self instvar dump_inst_ ns_
  90.         if ![info exists dump_inst_($tcp)] {
  91.                 set dump_inst_($tcp) 1
  92.                 $ns_ at $time "$self printtimersAll $tcp $time $interval"
  93.                 return
  94.         }
  95. set newTime [expr [$ns_ now] + $interval]
  96. $ns_ at $time "$self printtimers $tcp $time"
  97.         $ns_ at $newTime "$self printtimersAll $tcp $newTime $interval"
  98. }
  99. #
  100. # Links1 uses 8Mb, 5ms feeders, and a 800Kb 10ms bottleneck.
  101. # Queue-limit on bottleneck is 2 packets.
  102. #
  103. Class Topology/net4 -superclass NodeTopology/4nodes
  104. Topology/net4 instproc init ns {
  105.     $self next $ns
  106.     $self instvar node_
  107.     $ns duplex-link $node_(s1) $node_(r1) 8Mb 5ms DropTail
  108.     $ns duplex-link $node_(s2) $node_(r1) 8Mb 5ms DropTail
  109.     $ns duplex-link $node_(r1) $node_(k1) 800Kb 10ms DropTail
  110.     $ns queue-limit $node_(r1) $node_(k1) 2
  111.     $ns queue-limit $node_(k1) $node_(r1) 2
  112.     if {[$class info instprocs config] != ""} {
  113. $self config $ns
  114.     }
  115. }
  116. TestSuite instproc set_lossylink {} {
  117.         $self instvar lossylink_ ns_ node_
  118.         set lossylink_ [$ns_ link $node_(r1) $node_(k1)]
  119.         set em [new ErrorModule Fid]
  120.         set errmodel [new ErrorModel/Periodic]
  121.         $errmodel unit pkt
  122.         $lossylink_ errormodule $em
  123. }
  124. TestSuite instproc emod {} {
  125.         $self instvar lossylink_
  126.         set errmodule [$lossylink_ errormodule]
  127.         return $errmodule
  128. }
  129. TestSuite instproc drop_pkts pkts {
  130.     $self instvar ns_
  131.     set emod [$self emod]
  132.     set errmodel1 [new ErrorModel/List]
  133.     $errmodel1 droplist $pkts
  134.     $emod insert $errmodel1
  135.     $emod bind $errmodel1 1
  136. }
  137. #
  138. # Links1 uses 8Mb, 5ms feeders, and a 800Kb 20ms bottleneck.
  139. # Queue-limit on bottleneck is 25 packets.
  140. #
  141. Class Topology/net6 -superclass NodeTopology/4nodes
  142. Topology/net6 instproc init ns {
  143.     $self next $ns
  144.     $self instvar node_
  145.     Queue/RED set setbit_ true
  146.     $ns duplex-link $node_(s1) $node_(r1) 8Mb 5ms DropTail
  147.     $ns duplex-link $node_(s2) $node_(r1) 8Mb 5ms DropTail
  148.     $ns duplex-link $node_(r1) $node_(k1) 800Kb 20ms RED
  149.     $ns queue-limit $node_(r1) $node_(k1) 25
  150.     $ns queue-limit $node_(k1) $node_(r1) 25
  151.     if {[$class info instprocs config] != ""} {
  152. $self config $ns
  153.     }
  154. }
  155. Class Topology/net8 -superclass NodeTopology/4nodes
  156. Topology/net8 instproc init ns {
  157.     $self next $ns
  158.     $self instvar node_
  159.     Queue/RED set setbit_ true
  160.     $ns duplex-link $node_(s1) $node_(s2) 1000Mb 0ms DropTail
  161.     $ns duplex-link $node_(s2) $node_(r1) 9.6Kb 1ms DropTail
  162.     $ns duplex-link $node_(r1) $node_(k1) 800Kb 10ms RED
  163.     $ns queue-limit $node_(r1) $node_(k1) 25
  164.     $ns queue-limit $node_(k1) $node_(r1) 25
  165.     if {[$class info instprocs config] != ""} {
  166. $self config $ns
  167.     }
  168. }
  169. # Definition of test-suite tests
  170. # This test shows two TCPs when one is ECN-capable and the other
  171. # is not.
  172. Class Test/ecn -superclass TestSuite
  173. Test/ecn instproc init topo {
  174. $self instvar net_ defNet_ test_ guide_
  175. set net_ $topo
  176. set defNet_ net6
  177. set test_ ecn_(one_with_ecn,_one_without)
  178. set guide_ "One connection with ECN, and one without ECN."
  179. Agent/TCP set old_ecn_ 1
  180. $self next
  181. }
  182. Test/ecn instproc run {} {
  183. global quiet
  184. $self instvar ns_ node_ testName_ guide_
  185. puts "Guide: $guide_"
  186. # Set up TCP connection
  187. set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
  188. $tcp1 set window_ 30
  189. $tcp1 set ecn_ 1
  190. set ftp1 [$tcp1 attach-app FTP]
  191. $ns_ at 0.0 "$ftp1 start"
  192. # Set up TCP connection
  193. set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
  194. $tcp2 set window_ 20
  195. $tcp2 set ecn_ 0
  196. set ftp2 [$tcp2 attach-app FTP]
  197. $ns_ at 3.0 "$ftp2 start"
  198. $self tcpDump $tcp1 5.0
  199. $self tcpDump $tcp2 5.0
  200. $self traceQueues $node_(r1) [$self openTrace 10.0 $testName_]
  201. $ns_ run
  202. }
  203. # This test shows the retransmit timeout value when the first packet
  204. # of a connection is dropped, and the backoff of the retransmit timer
  205. # as subsequent packets are dropped.
  206. #
  207. # This test also shows that once the retransmit timer is backed off,
  208. # it is later un-backed.
  209. Class Test/timers -superclass TestSuite
  210. Test/timers instproc init topo {
  211. $self instvar net_ defNet_ test_ guide_
  212. set net_ $topo
  213. set defNet_ net4
  214. set test_ timers_(first_packet_dropped)
  215. set guide_ "TCP's retransmit timers when first and second packets are dropped."
  216. $self next
  217. }
  218. Test/timers instproc run {} {
  219. global quiet
  220. $self instvar ns_ node_ testName_ guide_ 
  221. puts "Guide: $guide_"
  222.         $self set_lossylink
  223. if {$quiet == "false"} {puts "tcpTICK: [Agent/TCP set tcpTick_]"}
  224. # Set up TCP connection
  225. set tcp1 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
  226. $tcp1 set window_ 3
  227. set ftp2 [$tcp1 attach-app FTP]
  228. $ns_ at 0.09 "$ftp2 start"
  229. $ns_ at 1.0 "$self printtimersAll $tcp1 1.0 1.0" 
  230. $self drop_pkts {0 1}
  231. $self traceQueues $node_(r1) [$self openTrace 25.0 $testName_]
  232. $ns_ run
  233. }
  234. Class Test/timersA -superclass TestSuite
  235. Test/timersA instproc init topo {
  236. $self instvar net_ defNet_ test_ guide_
  237. set net_ $topo
  238. set defNet_ net4
  239. set test_ timersA_(early_packet_dropped)
  240. set guide_ "TCP's retransmit timers when the third packet is droopped."
  241. Agent/TCP set timerfix_ false
  242. $self next
  243. }
  244. #  This one is funny.  
  245. #  No fast retransmit.
  246. #  First retransmit timer expires, packet 2 is retransmitted.  Backoff 1.
  247. #  Ack for 2 comes in.  Karns.  Backoff is still 2.  Send packet 5, set timer.
  248. #  Send packet 6.
  249. #  Ack for 5 comes in.  Reset timer, the reset backoff is 1. Send packet 7.
  250. #  Retransmit timer expires.  Set backoff to 2, reset timer.
  251. #  
  252. Test/timersA instproc run {} {
  253. global quiet
  254. $self instvar ns_ node_ testName_ guide_
  255. puts "Guide: $guide_"
  256.         $self set_lossylink
  257. if {$quiet == "false"} {puts "tcpTICK: [Agent/TCP set tcpTick_]"}
  258. # Set up TCP connection
  259. set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 1]
  260. $tcp1 set window_ 5
  261. set ftp1 [$tcp1 attach-app FTP]
  262. $ns_ at 0.0 "$ftp1 produce 1600"
  263. $ns_ at 25.3 "$ftp1 producemore 5"
  264. $ns_ at 25.7 "$ftp1 producemore 5" 
  265. $ns_ at 26.1 "$ftp1 producemore 5" 
  266. $ns_ at 26.5 "$ftp1 producemore 5" 
  267. $ns_ at 26.9 "$ftp1 producemore 5" 
  268. $ns_ at 28.8 "$ftp1 producemore 5" 
  269. $self drop_pkts {2 7 9 10 11}
  270. $self traceQueues $node_(r1) [$self openTrace 3.5 $testName_]
  271. $ns_ run
  272. }
  273. Class Test/timersAfix -superclass TestSuite
  274. Test/timersAfix instproc init topo {
  275. $self instvar net_ defNet_ test_ guide_
  276. set net_ $topo
  277. set defNet_ net4
  278. set test_ timersAfix_(early_packet_dropped)
  279. set guide_ "Agent/TCP, timerfix_ set, for updating timer *after* updating the RTT." 
  280. Agent/TCP set timerfix_ true
  281.         Test/timersAfix instproc run {} [Test/timersA info instbody run]
  282. $self next
  283. }
  284. # Multiply the mean deviation by 8 instead of by 4.
  285. #
  286. Class Test/timersA1 -superclass TestSuite
  287. Test/timersA1 instproc init topo {
  288. $self instvar net_ defNet_ test_ guide_
  289. set net_ $topo
  290. set defNet_ net4
  291. set test_ timersA1_(multiple_of_8_instead_of_4)
  292. set guide_ "Agent/TCP, rttvar_exp_ set to 3 instead of 2."
  293. Agent/TCP set rttvar_exp_ 3
  294. Agent/TCP set timerfix_ false
  295. # The default is being changed to true.
  296.         Test/timersA1 instproc run {} [Test/timersA info instbody run ]
  297. $self next
  298. }
  299. # timestamps, and tcpTick more fine-grained.
  300. #
  301. Class Test/timersA2 -superclass TestSuite
  302. Test/timersA2 instproc init topo {
  303. $self instvar net_ defNet_ test_ guide_
  304. set net_ $topo
  305. set defNet_ net4
  306. set test_ timersA2_(timestamps,_fine-grained_clock)
  307. set guide_ "Agent/TCP, tcpTick_ set to 0.001"
  308.         Agent/TCP set timestamps_ true
  309. Agent/TCP set tcpTick_ 0.001
  310. Agent/TCP set timerfix_ false
  311. # The default is being changed to true.
  312.         Test/timersA2 instproc run {} [Test/timersA info instbody run ]
  313. $self next
  314. }
  315. # Update the smoothed round-trip with weight 1/16 instead of 1/8.
  316. #
  317. Class Test/timersA3 -superclass TestSuite
  318. Test/timersA3 instproc init topo {
  319. $self instvar net_ defNet_ test_ guide_
  320. set net_ $topo
  321. set defNet_ net4
  322. set test_ timersA3_(weight_1/32_instead_of_1/8)
  323. set guide_ "Agent/TCP, T_SRTT_BITS set to 5 instead of 3"
  324. Agent/TCP set timestamps_ true
  325. Agent/TCP set tcpTick_ 0.001
  326. Agent/TCP set T_SRTT_BITS 5
  327. Agent/TCP set T_RTTVAR_BITS 4
  328. Agent/TCP set timerfix_ false
  329. # The default is being changed to true.
  330.         Test/timersA3 instproc run {} [Test/timersA info instbody run ]
  331. $self next
  332. }
  333. Class Test/timers1 -superclass TestSuite
  334. Test/timers1 instproc init topo {
  335.         $self instvar net_ defNet_ test_ guide_
  336.         set net_        $topo  
  337.         set defNet_     net2
  338.         set test_       timers1_(tcpTick_=default,0.1)
  339. set guide_ "tcpTick_ set to default of 0.1"
  340.         $self next
  341. }
  342. Test/timers1 instproc run {} {
  343. global quiet
  344.         $self instvar ns_ node_ testName_ guide_
  345. puts "Guide: $guide_"
  346. if {$quiet == "false"} {puts "tcpTICK: [Agent/TCP set tcpTick_]"}
  347.         $ns_ queue-limit $node_(r1) $node_(r2) 29
  348.         set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink/DelAck $node_(r2) 0]
  349. #        set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink/DelAck $node_(r2) 1]
  350.         $tcp1 set window_ 40
  351.         set ftp1 [$tcp1 attach-app FTP]
  352.         $ns_ at 0.0 "$ftp1 produce 180"
  353. $ns_ at 1.0 "$self printtimersAll $tcp1 1.0 1.0" 
  354. $self traceQueues $node_(r1) [$self openTrace 4.0 $testName_]
  355.         $ns_ run
  356. }
  357. Class Test/timers2 -superclass TestSuite
  358. Test/timers2 instproc init topo {
  359.         $self instvar net_ defNet_ test_ guide_
  360.         set net_        $topo  
  361.         set defNet_     net2
  362.         set test_       timers2_(tcpTick_=0.5)
  363. set guide_ "tcpTick_ set to 0.5"
  364.         $self next
  365. }
  366. Test/timers2 instproc run {} {
  367. global quiet
  368.         $self instvar ns_ node_ testName_ guide_
  369. puts "Guide: $guide_"
  370. set tick 0.5
  371. if {$quiet == "false"} {puts "tcpTICK: $tick"}
  372. Agent/TCP set tcpTick_ $tick 
  373.         $ns_ queue-limit $node_(r1) $node_(r2) 29
  374.         set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink/DelAck $node_(r2) 0]
  375.         $tcp1 set window_ 40
  376.         set ftp1 [$tcp1 attach-app FTP]
  377.         $ns_ at 0.0 "$ftp1 produce 180"
  378. $ns_ at 1.0 "$self printtimersAll $tcp1 1.0 1.0" 
  379. $self traceQueues $node_(r1) [$self openTrace 4.0 $testName_]
  380.         $ns_ run
  381. }
  382. Class Test/timers3 -superclass TestSuite
  383. Test/timers3 instproc init topo {
  384.         $self instvar net_ defNet_ test_ guide_
  385.         set net_        $topo  
  386.         set defNet_     net2
  387.         set test_       timers3_(tcpTick_=0.001)
  388. set guide_ "tcpTick_ set to 0.001"
  389.         $self next
  390. }
  391. Test/timers3 instproc run {} {
  392. global quiet
  393.         $self instvar ns_ node_ testName_ guide_
  394. puts "Guide: $guide_"
  395. set tick 0.001
  396. if {$quiet == "false"} {puts "tcpTICK: $tick"}
  397. Agent/TCP set tcpTick_ $tick 
  398.         $ns_ queue-limit $node_(r1) $node_(r2) 29
  399.         set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink/DelAck $node_(r2) 0]
  400.         $tcp1 set window_ 40
  401.         set ftp1 [$tcp1 attach-app FTP]
  402.         $ns_ at 0.0 "$ftp1 produce 180"
  403. $ns_ at 1.0 "$self printtimersAll $tcp1 1.0 1.0" 
  404. $self traceQueues $node_(r1) [$self openTrace 4.0 $testName_]
  405.         $ns_ run
  406. }
  407. Class Test/timers4 -superclass TestSuite
  408. Test/timers4 instproc init topo {
  409.         $self instvar net_ defNet_ test_ guide_
  410.         set net_        $topo  
  411.         set defNet_     net2
  412.         set test_       timers4_(tcpTick_=0.001)
  413. set guide_ "With timers5, shows that estimated RTT updated only once per RTT."
  414.         $self next
  415. }
  416. Test/timers4 instproc run {} {
  417. global quiet
  418.         $self instvar ns_ node_ testName_ guide_
  419. puts "Guide: $guide_"
  420. set tick 0.001
  421. if {$quiet == "false"} {puts "tcpTICK: $tick"}
  422. Agent/TCP set tcpTick_ $tick 
  423.         $ns_ queue-limit $node_(r1) $node_(r2) 29
  424.         set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink/DelAck $node_(r2) 0]
  425.         $tcp1 set window_ 10
  426.         set ftp1 [$tcp1 attach-app FTP]
  427.         $ns_ at 0.0 "$ftp1 start"
  428. $ns_ at 0.1 "$self printtimersAll $tcp1 0.1 0.1" 
  429. $self traceQueues $node_(r1) [$self openTrace 2.0 $testName_]
  430.         $ns_ run
  431. }
  432. Class Test/timers5 -superclass TestSuite
  433. Test/timers5 instproc init topo {
  434.         $self instvar net_ defNet_ test_ guide_
  435.         set net_        $topo  
  436.         set defNet_     net2
  437.         set test_       timers5_(tcpTick_=0.001)
  438. set guide_ "With timers4, shows that estimated RTT updated only once per RTT."
  439.         $self next
  440. }
  441. Test/timers5 instproc run {} {
  442. global quiet
  443.         $self instvar ns_ node_ testName_ guide_
  444. puts "Guide: $guide_"
  445. set tick 0.001
  446. if {$quiet == "false"} {puts "tcpTICK: $tick"}
  447. Agent/TCP set tcpTick_ $tick 
  448.         $ns_ queue-limit $node_(r1) $node_(r2) 29
  449.         set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink/DelAck $node_(r2) 0]
  450.         $tcp1 set window_ 2
  451.         set ftp1 [$tcp1 attach-app FTP]
  452.         $ns_ at 0.0 "$ftp1 start"
  453. $ns_ at 0.1 "$self printtimersAll $tcp1 0.1 0.1" 
  454. $self traceQueues $node_(r1) [$self openTrace 2.0 $testName_]
  455.         $ns_ run
  456. }
  457. TestSuite instproc printtcp { label tcp time } {
  458. puts ""
  459. puts "tcp: $label time: [format %.3f $time]" 
  460. puts "total_data_packets_sent: [$tcp set ndatapack_] data_bytes_sent: [$tcp set ndatabytes_]" 
  461. puts "packets_resent: [$tcp set nrexmitpack_] bytes_resent: [$tcp set nrexmitbytes_]" 
  462. puts "ack_packets_received: [$tcp set nackpack_]"
  463. puts "retransmit_timeouts: [$tcp set nrexmit_]" 
  464. }
  465. Class Test/timers_backoffs -superclass TestSuite
  466. Test/timers_backoffs instproc init topo {
  467. $self instvar net_ defNet_ test_ guide_
  468. set net_ $topo
  469. set defNet_ net6
  470. set test_ timers_backoffs
  471. set guide_ "TCP's retransmit timer, max RTO of 60 seconds."
  472. $self next
  473. }
  474. Test/timers_backoffs instproc run {} {
  475. global quiet
  476. $self instvar ns_ node_ testName_ guide_
  477. puts "Guide: $guide_"
  478. $self set_lossylink
  479. if {$quiet == "false"} {puts "tcpTICK: [Agent/TCP set tcpTick_]"}
  480. # Set up TCP connection
  481. set tcp1 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 1]
  482. $tcp1 set window_ 1
  483. set ftp1 [$tcp1 attach-app FTP]
  484. $ns_ at 0.0 "$ftp1 produce 30"
  485. $self drop_pkts {10 11 12 13 14 15 16 17 18 19}
  486. $self traceQueues $node_(r1) [$self openTrace 400.0 $testName_]
  487. $ns_ run
  488. }
  489. Class Test/stats1 -superclass TestSuite
  490. Test/stats1 instproc init topo {
  491.         $self instvar net_ defNet_ test_ guide_
  492.         set net_        $topo
  493.         set defNet_     net0
  494.         set test_       stats1
  495. set guide_ "TCP statistics on the number of retransmit timeouts."
  496.         $self next
  497. Test/stats1 instproc run {} {
  498. global quiet
  499.         $self instvar ns_ node_ testName_ guide_
  500. puts "Guide: $guide_"
  501.         $ns_ delay $node_(s2) $node_(r1) 200ms
  502.         $ns_ delay $node_(r1) $node_(s2) 200ms
  503.         $ns_ queue-limit $node_(r1) $node_(k1) 10
  504.         $ns_ queue-limit $node_(k1) $node_(r1) 10
  505.         set stoptime 10.1
  506.         set tcp1 [$ns_ create-connection TCP/Reno $node_(s1) TCPSink $node_(k1) 0]
  507.         $tcp1 set window_ 30
  508.         set tcp2 [$ns_ create-connection TCP $node_(s2) TCPSink $node_(k1) 1]
  509.         $tcp2 set window_ 3
  510.         set ftp1 [$tcp1 attach-app FTP]
  511.         set ftp2 [$tcp2 attach-app FTP]
  512.  
  513.         $ns_ at 1.0 "$ftp1 start" 
  514.         $ns_ at 1.0 "$ftp2 start"
  515.         $self tcpDumpAll $tcp1 10.0 tcp1
  516.   $self tcpDumpAll $tcp2 10.0 tcp2
  517. $ns_ at 10.0 "$self printtcp 1 $tcp1 10.0" 
  518. $ns_ at 10.0 "$self printtcp 2 $tcp2 10.0" 
  519. $ns_ at 10.0 "puts """
  520.  
  521.         # trace only the bottleneck link 
  522.         $self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
  523.         $ns_ run
  524. }
  525. TestSuite instproc run1 { tcp0 {stoptime 30.1}} {
  526.         $self instvar ns_ node_ testName_ guide_
  527. set count 100 
  528. set count1 3
  529.      set ftp0 [$tcp0 attach-app FTP]
  530.      $ns_ at 0.0  "$ftp0 produce $count" 
  531. $ns_ at 2.4  "$ftp0 producemore $count"  
  532. $ns_ at 2.5  "$ftp0 producemore $count"
  533. $self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
  534. $ns_ run
  535. }
  536. Class Test/quiescent_100ms -superclass TestSuite
  537. Test/quiescent_100ms instproc init topo {
  538.         $self instvar net_ defNet_ test_ guide_
  539.         set net_        $topo
  540.         set defNet_     net6
  541.         set test_       quiescent_100ms
  542. set guide_ "Tahoe TCP after a quiescent period."
  543. Agent/TCP set QOption_ 0
  544.         $self next
  545. Test/quiescent_100ms instproc run {} {
  546. global quiet
  547.         $self instvar ns_ node_ guide_ 
  548. puts "Guide: $guide_"
  549. Agent/TCP set packetSize_ 100 
  550. Agent/TCP set window_ 25
  551. set tcp0 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 0]
  552. $self run1 $tcp0
  553. }
  554. Class Test/quiescentB -superclass TestSuite
  555. Test/quiescentB instproc init topo {
  556.         $self instvar net_ defNet_ test_ guide_
  557.         set net_        $topo
  558.         set defNet_     net6
  559.         set test_       quiescentB
  560. set guide_ "Tahoe TCP entering a quiescent period with a smaller cwnd."
  561. Agent/TCP set QOption_ 0
  562.         $self next
  563. Test/quiescentB instproc run {} {
  564. global quiet
  565.         $self instvar ns_ node_ guide_
  566. puts "Guide: $guide_"
  567. $self set_lossylink
  568. Agent/TCP set packetSize_ 100 
  569. Agent/TCP set window_ 25
  570. set tcp0 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 1]
  571. $self drop_pkts {2}
  572. $self run1 $tcp0 3.0
  573. }
  574. Class Test/quiescentB_qoption -superclass TestSuite
  575. Test/quiescentB_qoption instproc init topo {
  576.         $self instvar net_ defNet_ test_ guide_
  577.         set net_        $topo
  578.         set defNet_     net6
  579.         set test_       quiescentB_qoption
  580. set guide_      "Tahoe TCP entering a quiescent period, TCP quiescence option set."
  581. Agent/TCP set QOption_ 1
  582.         $self next
  583. Test/quiescentB_qoption instproc run {} {
  584. global quiet
  585.         $self instvar ns_ node_ guide_
  586. puts "Guide: $guide_"
  587. $self set_lossylink
  588. Agent/TCP set packetSize_ 100 
  589. Agent/TCP set window_ 25
  590. set tcp0 [$ns_ create-connection TCP $node_(s1) TCPSink $node_(k1) 1]
  591. $self drop_pkts {2}
  592. $self run1 $tcp0 3.0
  593. }
  594. TestSuite instproc run2 { tcp0 {stoptime 3.0}} { 
  595.         $self instvar ns_ node_ testName_ 
  596. set count 25
  597. set count1 10
  598. set count2 3
  599. set count3 100
  600.      set data0 [$tcp0 attach-app Telnet]
  601. $data0 set interval_ 0.0005
  602. $ns_ at 0 "$data0 start"
  603. $ns_ at 0.045 "$data0 set interval_ 0.01"
  604. $ns_ at 2.2 "$data0 set interval_ 0.0005" 
  605. $ns_ at 2.5 "$data0 stop"
  606. $self traceQueues $node_(r1) [$self openTrace $stoptime $testName_]
  607. $ns_ run
  608. }
  609. Class Test/underutilized_100ms -superclass TestSuite
  610. Test/underutilized_100ms instproc init topo {
  611.         $self instvar net_ defNet_ test_ guide_
  612.         set net_        $topo
  613.         set defNet_     net6
  614.         set test_       underutilized_100ms
  615. set guide_      "Tahoe TCP, underutilized, TCP quiescence option not set."
  616. Agent/TCP set QOption_ 0
  617.         $self next
  618. Test/underutilized_100ms instproc run {{sender TCP} {receiver TCPSink}} {
  619. global quiet
  620.         $self instvar ns_ node_ guide_
  621. puts "Guide: $guide_"
  622. Agent/TCP set packetSize_ 100 
  623. Agent/TCP set window_ 100
  624. set tcp0 [$ns_ create-connection $sender $node_(s1) $receiver $node_(k1) 0]
  625. $self run2 $tcp0
  626. }
  627. Class Test/underutilized_100ms_control -superclass TestSuite
  628. Test/underutilized_100ms_control instproc init topo {
  629.         $self instvar net_ defNet_ test_ guide_
  630.         set net_        $topo
  631.         set defNet_     net6
  632.         set test_       underutilized_100ms_control
  633. set guide_      "Tahoe TCP, underutilized, TCP quiescence option not set,
  634. control_increase set."
  635.         Agent/TCP set QOption_ 0
  636.         Agent/TCP set control_increase_ 1
  637.         Test/underutilized_100ms_control instproc run {{sender TCP} {receiver TCPSink}} [Test/underutilized_100ms info instbody run ]
  638.         $self next
  639. }
  640. Class Test/underutilized_100ms_control_Q -superclass TestSuite
  641. Test/underutilized_100ms_control_Q instproc init topo {
  642.         $self instvar net_ defNet_ test_ guide_
  643.         set net_        $topo
  644.         set defNet_     net6
  645.         set test_       underutilized_100ms_control_Q
  646. set guide_      "Tahoe TCP, underutilized, TCP quiescence option set,
  647. control_increase set."
  648.         Agent/TCP set QOption_ 1
  649.         Agent/TCP set control_increase_ 1
  650.         Test/underutilized_100ms_control_Q instproc run {{sender TCP} {receiver TCPSink}} [Test/underutilized_100ms info instbody run ]
  651.         $self next
  652. }
  653. Class Test/underutilized_100ms_Q -superclass TestSuite
  654. Test/underutilized_100ms_Q instproc init topo {
  655.         $self instvar net_ defNet_ test_ guide_
  656.         set net_        $topo
  657.         set defNet_     net6
  658.         set test_       underutilized_100ms_Q
  659. set guide_      "Tahoe TCP, underutilized, TCP quiescence option set,
  660. control_increase not set."
  661.         Agent/TCP set QOption_ 1
  662.         Agent/TCP set control_increase_ 0
  663.         Test/underutilized_100ms_Q instproc run {{sender TCP} {receiver TCPSink}} [Test/underutilized_100ms info instbody run ]
  664.         $self next
  665. }
  666. Class Test/underutilized_100ms_control_Reno -superclass TestSuite
  667. Test/underutilized_100ms_control_Reno instproc init topo {
  668.         $self instvar net_ defNet_ test_ guide_
  669.         set net_        $topo
  670.         set defNet_     net6
  671.         set test_       underutilized_100ms_control_Reno
  672.         set guide_      "Reno TCP, underutilized, TCP quiescence option not set,
  673.         control_increase set."
  674.         Agent/TCP set QOption_ 0
  675.         Agent/TCP set control_increase_ 1
  676.         Test/underutilized_100ms_control_Reno instproc run {{sender TCP/Reno} {receiver TCPSink}} [Test/underutilized_100ms info instbody run ]
  677.         $self next
  678. }
  679. Class Test/underutilized_100ms_control_Newreno -superclass TestSuite
  680. Test/underutilized_100ms_control_Newreno instproc init topo {
  681.         $self instvar net_ defNet_ test_ guide_
  682.         set net_        $topo
  683.         set defNet_     net6
  684.         set test_       underutilized_100ms_control_Newreno
  685.         set guide_      "NewReno TCP, underutilized, TCP quiescence option not set,
  686.         control_increase set."
  687.         Agent/TCP set QOption_ 0
  688.         Agent/TCP set control_increase_ 1
  689.         Test/underutilized_100ms_control_Newreno instproc run {{sender TCP/Reno} {receiver TCPSink}} [Test/underutilized_100ms info instbody run ]
  690.         $self next
  691. }
  692. Class Test/underutilized_100ms_control_Sack -superclass TestSuite
  693. Test/underutilized_100ms_control_Sack instproc init topo {
  694.         $self instvar net_ defNet_ test_ guide_
  695.         set net_        $topo
  696.         set defNet_     net6
  697.         set test_       underutilized_100ms_control_Sack
  698.         set guide_      "Sack TCP, underutilized, TCP quiescence option not set,
  699.         control_increase set."
  700.         Agent/TCP set QOption_ 0
  701.         Agent/TCP set control_increase_ 1
  702.         Test/underutilized_100ms_control_Sack instproc run {{sender TCP/Sack1} {receiver TCPSink/Sack1}} [Test/underutilized_100ms info instbody run ]
  703.         $self next
  704. }
  705. Class Test/quiescent_100ms_fine -superclass TestSuite
  706. Test/quiescent_100ms_fine instproc init topo {
  707.         $self instvar net_ defNet_ test_ guide_
  708.         set net_        $topo
  709.         set defNet_     net6
  710.         set test_       quiescent_100ms_fine(EnblRTTCtr__0)
  711. set guide_      "Tahoe TCP after a quiescent period, fine-grained timer."
  712. Agent/TCP set QOption_ 1
  713. Agent/TCP set control_increase_ 1
  714. Agent/TCP set EnblRTTCtr_ 0
  715. Test/quiescent_100ms_fine instproc run {} [Test/quiescent_100ms info instbody run ]
  716.         $self next
  717. Class Test/quiescent_100ms_coarse -superclass TestSuite
  718. Test/quiescent_100ms_coarse instproc init topo {
  719.         $self instvar net_ defNet_ test_ guide_
  720.         set net_        $topo
  721.         set defNet_     net6
  722.         set test_       quiescent_100ms_coarse(EnblRTTCtr__1)
  723. set guide_      "Tahoe TCP after a quiescent period, coarse-grained timer."
  724. Agent/TCP set QOption_ 1
  725. Agent/TCP set control_increase_ 1
  726. Agent/TCP set EnblRTTCtr_ 1
  727. Test/quiescent_100ms_coarse instproc run {} [Test/quiescent_100ms info instbody run ]
  728.         $self next
  729. Class Test/quiescent_1ms_fine -superclass TestSuite
  730. Test/quiescent_1ms_fine instproc init topo {
  731.         $self instvar net_ defNet_ test_ guide_
  732.         set net_        $topo
  733.         set defNet_     net6
  734.         set test_       quiescent_1ms_fine(EnblRTTCtr__0)
  735. set guide_      "Tahoe TCP after a quiescent period, fine-grained timer, tcpTick_ 0.001."
  736. Agent/TCP set QOption_ 1
  737. Agent/TCP set tcpTick_ 0.001 
  738. Agent/TCP set control_increase_ 1
  739. Agent/TCP set EnblRTTCtr_ 0 
  740. Test/quiescent_1ms_fine instproc run {} [Test/quiescent_100ms info instbody run ]
  741.         $self next
  742. Class Test/quiescent_1ms_coarse -superclass TestSuite
  743. Test/quiescent_1ms_coarse instproc init topo {
  744.         $self instvar net_ defNet_ test_ guide_
  745.         set net_        $topo
  746.         set defNet_     net6
  747.         set test_       quiescent_1ms_coarse(EnblRTTCtr__1)
  748. set guide_      "Tahoe TCP after a quiescent period, coarse-grained timer, tcpTick_ 0.001."
  749. Agent/TCP set QOption_ 1
  750. Agent/TCP set tcpTick_ 0.001 
  751. Agent/TCP set control_increase_ 1
  752. Agent/TCP set EnblRTTCtr_ 1 
  753. Test/quiescent_1ms_coarse instproc run {} [Test/quiescent_100ms info instbody run ]
  754.         $self next
  755. Class Test/quiescent_500ms_fine -superclass TestSuite
  756. Test/quiescent_500ms_fine instproc init topo {
  757.         $self instvar net_ defNet_ test_ guide_
  758.         set net_        $topo
  759.         set defNet_     net6
  760.         set test_       quiescent_500ms_fine(EnblRTTCtr__0)
  761. set guide_      "Tahoe TCP after a quiescent period, fine-grained timer, tcpTick_ 0.5."
  762. Agent/TCP set QOption_ 1
  763. Agent/TCP set tcpTick_ 0.500
  764. Agent/TCP set control_increase_ 1
  765. Agent/TCP set EnblRTTCtr_ 0 
  766. Test/quiescent_500ms_fine instproc run {} [Test/quiescent_100ms info instbody run ]
  767.         $self next
  768. Class Test/quiescent_500ms_coarse -superclass TestSuite
  769. Test/quiescent_500ms_coarse instproc init topo {
  770.         $self instvar net_ defNet_ test_ guide_
  771.         set net_        $topo
  772.         set defNet_     net6
  773.         set test_       quiescent_500ms_coarse(EnblRTTCtr__1)
  774. set guide_      "Tahoe TCP after a quiescent period, coarse-grained timer, tcpTick_ 0.5."
  775. Agent/TCP set QOption_ 1
  776. Agent/TCP set tcpTick_ 0.500 
  777. Agent/TCP set control_increase_ 1
  778. Agent/TCP set EnblRTTCtr_ 1 
  779. Test/quiescent_500ms_coarse instproc run {} [Test/quiescent_100ms info instbody run ]
  780.         $self next
  781. ####################################################################
  782. TestSuite instproc printtimeouts { label tcp time } {
  783. global quiet
  784. if {$quiet == "false"} {
  785.   puts "tcp: $label time: [format %.3f $time] retransmit_timeouts: [$tcp set nrexmit_]" 
  786. }
  787. }
  788. # This test shows the packets and acknowledgements at the source,
  789. # for a path with a 9.6Kbps link, and 1500-byte packets.
  790. Class Test/dialup -superclass TestSuite
  791. Test/dialup instproc init topo {
  792.         $self instvar net_ defNet_ test_ guide_
  793. set net_        $topo
  794. set defNet_     net8
  795.         set guide_ "1500-byte packets on a 9.6 Kbps link"
  796.         set test_       dialup(9.6K-link,1500-byte-pkt)
  797.         $self next
  798. }
  799. Test/dialup instproc run {} {
  800. global quiet
  801.         $self instvar ns_ node_ testName_ guide_
  802. puts "Guide: $guide_"
  803.         Agent/TCP set syn_ true
  804.         Agent/TCP set delay_growth_ true
  805.         Agent/TCP set windowInitOption_ 2
  806.         Agent/TCP set minrto_ 1
  807.   set runtime 30.01
  808. set dumptime 30.0
  809. set testName_ dialup
  810. set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(k1) 0]
  811.         $tcp1 set packetSize_ 1500
  812.         set ftp1 [$tcp1 attach-app FTP] 
  813.         $ns_ at 0.0 "$ftp1 start"
  814. $ns_ at $dumptime "$self printtimeouts 1 $tcp1 $dumptime" 
  815.         # $self tcpDump $tcp1 $dumptime
  816. $self traceQueues $node_(r1) [$self openTrace $runtime $testName_]
  817.         $ns_ run
  818. }
  819. # This test shows the packets and acknowledgements at the source,
  820. # for a path with a 9.6Kbps link, and 1500-byte packets.
  821. # But this one has rfc2988_ set to false.
  822. Class Test/dialup1 -superclass TestSuite
  823. Test/dialup1 instproc init topo {
  824.         $self instvar net_ defNet_ test_ guide_
  825. set net_        $topo
  826. set defNet_     net8
  827.         set guide_ "1500-byte packets on a 9.6 Kbps link, rfc2988_ false"
  828.         set test_       dialup1(9.6K-link,1500-byte-pkt)
  829. Agent/TCP set rfc2988_ false
  830. Test/dialup1 instproc run {} [Test/dialup info instbody run ]
  831.         $self next
  832. }
  833. TestSuite runTest
  834. ### Local Variables:
  835. ### mode: tcl
  836. ### tcl-indent-level: 8
  837. ### tcl-default-application: ns
  838. ### End: