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

通讯编程

开发平台:

Visual C++

  1. # Copyright (c) 1995 The Regents of the University of California.
  2. # All rights reserved.
  3. #
  4. # Redistribution and use in source and binary forms, with or without
  5. # modification, are permitted provided that the following conditions
  6. # are met:
  7. # 1. Redistributions of source code must retain the above copyright
  8. #    notice, this list of conditions and the following disclaimer.
  9. # 2. Redistributions in binary form must reproduce the above copyright
  10. #    notice, this list of conditions and the following disclaimer in the
  11. #    documentation and/or other materials provided with the distribution.
  12. # 3. All advertising materials mentioning features or use of this software
  13. #    must display the following acknowledgement:
  14. # This product includes software developed by the Computer Systems
  15. # Engineering Group at Lawrence Berkeley Laboratory.
  16. # 4. Neither the name of the University nor of the Laboratory may be used
  17. #    to endorse or promote products derived from this software without
  18. #    specific prior written permission.
  19. #
  20. # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  21. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23. # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  24. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  26. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  29. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30. # SUCH DAMAGE.
  31. #
  32. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/test/test-suite-tcpHighspeed.tcl,v 1.21 2006/10/22 15:20:46 sallyfloyd Exp $
  33. #
  34. source misc_simple.tcl
  35. remove-all-packet-headers       ; # removes all except common
  36. add-packet-header Flags IP TCP  ; # hdrs reqd for validation test
  37. # FOR UPDATING GLOBAL DEFAULTS:
  38. Agent/TCP set precisionReduce_ false ;   # default changed on 2006/1/24.
  39. Agent/TCP set rtxcur_init_ 6.0 ;      # Default changed on 2006/01/21
  40. Agent/TCP set updated_rttvar_ false ;  # Variable added on 2006/1/21
  41. Agent/TCP set minrto_ 1
  42. Agent/TCP set numdupacksFrac_ 100 ; # Default changed on 2006/09/27.
  43. # default changed on 10/14/2004.
  44. Queue/RED set bytes_ false              
  45. # default changed on 10/11/2004.
  46. Queue/RED set queue_in_bytes_ false
  47. # default changed on 10/11/2004.
  48. # Uncomment the line below to use a random seed for the
  49. #  random number generator.
  50. # ns-random 0
  51. TestSuite instproc finish file {
  52.         global quiet PERL
  53. $self instvar cwnd_chan_ testName_
  54.         if { [info exists cwnd_chan_] } {
  55.                 $self plot_cwnd 1 $testName_ all.cwnd1
  56.      exec cp temp.cwnd temp.rands
  57.         }
  58. }
  59. Class Topology
  60. Topology instproc node? num {
  61.     $self instvar node_
  62.     return $node_($num)
  63. }
  64. Class Topology/net2a -superclass Topology
  65. Topology/net2a instproc init ns {
  66.     $self instvar node_
  67.     set node_(s1) [$ns node]
  68.     set node_(s2) [$ns node]
  69.     set node_(r1) [$ns node]
  70.     set node_(r2) [$ns node]
  71.     set node_(s3) [$ns node]
  72.     set node_(s4) [$ns node]
  73.     $self next
  74.     $ns duplex-link $node_(s1) $node_(r1) 100Mb 2ms DropTail
  75.     $ns duplex-link $node_(s2) $node_(r1) 100Mb 3ms DropTail
  76.     $ns duplex-link $node_(r1) $node_(r2) 30Mb 30ms RED
  77.     # The delay-bandwidth product of this link is 225 1000-byte packets.
  78.     $ns queue-limit $node_(r1) $node_(r2) 50
  79.     $ns queue-limit $node_(r2) $node_(r1) 50
  80.     $ns duplex-link $node_(s3) $node_(r2) 100Mb 4ms DropTail
  81.     $ns duplex-link $node_(s4) $node_(r2) 100Mb 5ms DropTail
  82. }
  83. Class Topology/net2b -superclass Topology
  84. Topology/net2b instproc init ns {
  85.     $self instvar node_
  86.     set node_(s1) [$ns node]
  87.     set node_(s2) [$ns node]
  88.     set node_(r1) [$ns node]
  89.     set node_(r2) [$ns node]
  90.     set node_(s3) [$ns node]
  91.     set node_(s4) [$ns node]
  92.     $self next
  93.     #Queue/RED set bottom_ 0.001
  94.     Queue/RED set bottom_ 0
  95.     Queue/RED set thresh_ 0
  96.     Queue/RED set maxthresh_ 0
  97.     Queue/RED set q_weight_ 0
  98.     Queue/RED set adaptive_ 1
  99.     $ns duplex-link $node_(s1) $node_(r1) 100Mb 2ms DropTail
  100.     $ns duplex-link $node_(s2) $node_(r1) 100Mb 3ms DropTail
  101.     $ns duplex-link $node_(r1) $node_(r2) 30Mb 30ms RED
  102.     # The delay-bandwidth product of this link is 225 1000-byte packets.
  103.     $ns queue-limit $node_(r1) $node_(r2) 200
  104.     $ns queue-limit $node_(r2) $node_(r1) 200
  105.     $ns duplex-link $node_(s3) $node_(r2) 100Mb 4ms DropTail
  106.     $ns duplex-link $node_(s4) $node_(r2) 100Mb 5ms DropTail
  107. }
  108. ############################################################
  109. # To use windows larger than 1024 pkts, it is necessary to set
  110. # MWS in tcp-sink.h. 
  111. Class Test/tcp -superclass TestSuite
  112. Test/tcp instproc init {} {
  113.     $self instvar net_ test_ sender_ receiver_ guide_
  114.     set net_ net2a
  115.     set test_ tcp
  116.     set guide_ "Sack TCP, bad queue."
  117.     set sender_ TCP/Sack1
  118.     set receiver_ TCPSink/Sack1 
  119.     $self next noTraceFiles
  120. }
  121. Test/tcp instproc run {} {
  122.     global quiet
  123.     $self instvar ns_ node_ testName_ dumpfile_ sender_ receiver_ guide_
  124.     puts "Guide: $guide_"
  125.     $self setTopo
  126.     Agent/TCP set window_ 512
  127.     set stopTime  150.0
  128.     set stopTime0 [expr $stopTime - 0.001]
  129.     set stopTime2 [expr $stopTime + 0.001]
  130.     set tcp1 
  131.      [$ns_ create-connection $sender_ $node_(s1) $receiver_ $node_(s3) 0]
  132.     set ftp1 [$tcp1 attach-app FTP]
  133.     $self enable_tracecwnd $ns_ $tcp1
  134.     $ns_ at 0.0 "$ftp1 start"
  135.     $ns_ at $stopTime0 "$ftp1 stop"
  136.     set tcp2 
  137.      [$ns_ create-connection $sender_ $node_(s2) $receiver_ $node_(s4) 1]
  138.     set ftp2 [$tcp2 attach-app FTP]
  139.     $self enable_tracecwnd $ns_ $tcp2 all.cwnd1
  140.     $ns_ at 30.0 "$ftp2 start"
  141.     $ns_ at 80.0 "$ftp2 stop"
  142.     $ns_ at $stopTime "$self cleanupAll $testName_" 
  143.     $ns_ at $stopTime2 "exit 0"
  144.     $ns_ run
  145. }
  146. Class Test/tcpHighspeed -superclass TestSuite
  147. Test/tcpHighspeed instproc init {} {
  148.     $self instvar net_ test_ sender_ receiver_ guide_
  149.     set net_ net2a
  150.     set test_ tcpHighspeed
  151.     set guide_ "TCP with experimental modification for highspeed TCP, bad queue."
  152.     set sender_ TCP/Sack1
  153.     set receiver_ TCPSink/Sack1 
  154.     Agent/TCP set windowOption_ 8
  155.     Test/tcpHighspeed instproc run {} [Test/tcp info instbody run ]
  156.     $self next noTraceFiles
  157. }
  158. Class Test/tcp1 -superclass TestSuite
  159. Test/tcp1 instproc init {} {
  160.     $self instvar net_ test_ sender_ receiver_ guide_
  161.     set net_ net2b
  162.     set test_ tcp
  163.     set guide_ "Sack TCP, good queue."
  164.     set sender_ TCP/Sack1
  165.     set receiver_ TCPSink/Sack1 
  166.     Test/tcp1 instproc run {} [Test/tcp info instbody run ]
  167.     $self next noTraceFiles
  168. }
  169. Class Test/tcp1A -superclass TestSuite
  170. Test/tcp1A instproc init {} {
  171.     $self instvar net_ test_ sender_ receiver_ guide_
  172.     set net_ net2b
  173.     set test_ tcp
  174.     set guide_ "Sack TCP, good queue, max_ssthresh=100."
  175.     set sender_ TCP/Sack1
  176.     set receiver_ TCPSink/Sack1 
  177.     Agent/TCP set max_ssthresh_ 100
  178.     Test/tcp1A instproc run {} [Test/tcp info instbody run ]
  179.     $self next noTraceFiles
  180. }
  181. ## tcpHighspeed1 uses max_ssthresh_.
  182. Class Test/tcpHighspeed1 -superclass TestSuite
  183. Test/tcpHighspeed1 instproc init {} {
  184.     $self instvar net_ test_ sender_ receiver_ guide_
  185.     set net_ net2b
  186.     set test_ tcpHighspeed1
  187.     set guide_ "Highspeed TCP, good queue, max_ssthresh=100."
  188.     set sender_ TCP/Sack1
  189.     set receiver_ TCPSink/Sack1 
  190.     Agent/TCP set windowOption_ 8
  191.     Agent/TCP set max_ssthresh_ 100
  192.     Test/tcpHighspeed1 instproc run {} [Test/tcp info instbody run ]
  193.     $self next noTraceFiles
  194. }
  195. ## tcpHighspeed1A uses cwnd_range_
  196. Class Test/tcpHighspeed1A -superclass TestSuite
  197. Test/tcpHighspeed1A instproc init {} {
  198.     $self instvar net_ test_ sender_ receiver_ guide_
  199.     set net_ net2b
  200.     set test_ tcpHighspeed1A
  201.     set guide_ "Highspeed TCP, good queue, max_ssthresh=100, efficient version."
  202.     set sender_ TCP/Sack1
  203.     set receiver_ TCPSink/Sack1 
  204.     Agent/TCP set windowOption_ 8
  205.     Agent/TCP set max_ssthresh_ 100
  206.     Agent/TCP set cwnd_range_ 50
  207.     Test/tcpHighspeed1A instproc run {} [Test/tcp info instbody run ]
  208.     $self next noTraceFiles
  209. }
  210. ## tcpHighspeed2 uses a different value for low_window_.
  211. Class Test/tcpHighspeed2 -superclass TestSuite
  212. Test/tcpHighspeed2 instproc init {} {
  213.     $self instvar net_ test_ sender_ receiver_ guide_
  214.     set net_ net2b
  215.     set test_ tcpHighspeed2
  216.     set guide_ "Highspeed TCP, low_window_ set to 25."
  217.     set sender_ TCP/Sack1
  218.     set receiver_ TCPSink/Sack1 
  219.     Agent/TCP set windowOption_ 8
  220.     Agent/TCP set low_window_ 25
  221.     Test/tcpHighspeed2 instproc run {} [Test/tcp info instbody run ]
  222.     $self next noTraceFiles
  223. }
  224. ## tcpHighspeed3 uses different values for high_p_ and high_decrease_,
  225. ##   to give essentially the same response function as TCP.
  226. Class Test/tcpHighspeed3 -superclass TestSuite
  227. Test/tcpHighspeed3 instproc init {} {
  228.     $self instvar net_ test_ sender_ receiver_ guide_
  229.     set net_ net2b
  230.     set test_ tcpHighspeed3
  231.     set guide_ "Highspeed TCP, parameters set similar to TCP."
  232.     set sender_ TCP/Sack1
  233.     set receiver_ TCPSink/Sack1 
  234.     Agent/TCP set windowOption_ 8
  235.     #Agent/TCP set high_p_ 0.0000000096 # the TCP formula would say this.
  236.     Agent/TCP set high_p_ 0.00000001
  237.     Agent/TCP set high_decrease_ 0.5
  238.     Test/tcpHighspeed3 instproc run {} [Test/tcp info instbody run ]
  239.     $self next noTraceFiles
  240. }
  241. ## tcpHighspeed4 uses different values for the response function.
  242. Class Test/tcpHighspeed4 -superclass TestSuite
  243. Test/tcpHighspeed4 instproc init {} {
  244.     $self instvar net_ test_ sender_ receiver_ guide_
  245.     set net_ net2b
  246.     set test_ tcpHighspeed4
  247.     set guide_ "Highspeed TCP, parameters set conservatively."
  248.     set sender_ TCP/Sack1
  249.     set receiver_ TCPSink/Sack1 
  250.     Agent/TCP set windowOption_ 8
  251.     Agent/TCP set low_window_ 50
  252.     Agent/TCP set high_p_ 0.0000001
  253.     Agent/TCP set high_decrease_ 0.25
  254.     Test/tcpHighspeed4 instproc run {} [Test/tcp info instbody run ]
  255.     $self next noTraceFiles
  256. }
  257. ## tcpHighspeed5 uses different values for the response function.
  258. Class Test/tcpHighspeed5 -superclass TestSuite
  259. Test/tcpHighspeed5 instproc init {} {
  260.     $self instvar net_ test_ sender_ receiver_ guide_
  261.     set net_ net2b
  262.     set test_ tcpHighspeed5
  263.     set guide_ "Highspeed TCP, parameters set aggressively."
  264.     set sender_ TCP/Sack1
  265.     set receiver_ TCPSink/Sack1 
  266.     Agent/TCP set windowOption_ 8
  267.     Agent/TCP set low_window_ 13
  268.     Agent/TCP set high_window_ 12500
  269.     Agent/TCP set high_p_ 0.000001
  270.     Agent/TCP set high_decrease_ 0.1
  271.     Test/tcpHighspeed5 instproc run {} [Test/tcp info instbody run ]
  272.     $self next noTraceFiles
  273. }
  274. TestSuite runTest