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

通讯编程

开发平台:

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-testReno-bayfull.tcl,v 1.9 2006/01/24 23:00:08 sallyfloyd Exp $
  34. #
  35. # To view a list of available tests to run with this script:
  36. # ns test-suite-testReno-bayfull.tcl
  37. #
  38. source misc_simple.tcl
  39. remove-all-packet-headers       ; # removes all except common
  40. add-packet-header Flags IP TCP  ; # hdrs reqd for TCP
  41. Agent/TCP set tcpTick_ 0.1
  42. # The default for tcpTick_ is being changed to reflect a changing reality.
  43. Agent/TCP set rfc2988_ false
  44. # The default for rfc2988_ is being changed to true.
  45. # FOR UPDATING GLOBAL DEFAULTS:
  46. Agent/TCP set precisionReduce_ false ;   # default changed on 2006/1/24.
  47. Agent/TCP set rtxcur_init_ 6.0 ;      # Default changed on 2006/01/21
  48. Agent/TCP set updated_rttvar_ false ;  # Variable added on 2006/1/21
  49. Agent/TCP set useHeaders_ false
  50. # The default is being changed to useHeaders_ true.
  51. Agent/TCP set windowInit_ 1
  52. # The default is being changed to 2.
  53. Agent/TCP set singledup_ 0
  54. # The default is being changed to 1
  55. Agent/TCP set minrto_ 0
  56. # The default is being changed to minrto_ 1
  57. #Agent/TCP set syn_ false
  58. #Agent/TCP set delay_growth_ false
  59. # In preparation for changing the default values for syn_ and delay_growth_.
  60. set psize 1500
  61. set segsize [expr $psize-40]
  62. set segperack 2
  63. set delack 0.4
  64. Trace set show_tcphdr_ 1
  65. set wrap 90
  66. set wrap1 [expr 90 * 512 + 40]
  67. Class Topology
  68. Topology instproc node? num {
  69.     $self instvar node_
  70.     return $node_($num)
  71. }
  72. #
  73. # Links1 uses 8Mb, 5ms feeders, and a 800Kb 10ms bottleneck.
  74. # Queue-limit on bottleneck is 2 packets.
  75. #
  76. Class Topology/net4 -superclass Topology
  77. Topology/net4 instproc init ns {
  78.     $self instvar node_
  79.     set node_(s1) [$ns node]
  80.     set node_(s2) [$ns node]
  81.     set node_(r1) [$ns node]
  82.     set node_(k1) [$ns node]
  83.     $self next
  84.     $ns duplex-link $node_(s1) $node_(r1) 8Mb 0ms DropTail
  85.     $ns duplex-link $node_(s2) $node_(r1) 8Mb 0ms DropTail
  86.     $ns duplex-link $node_(r1) $node_(k1) 800Kb 100ms DropTail
  87.     $ns queue-limit $node_(r1) $node_(k1) 8
  88.     $ns queue-limit $node_(k1) $node_(r1) 8
  89.     $self instvar lossylink_
  90.     set lossylink_ [$ns link $node_(r1) $node_(k1)]
  91.     set em [new ErrorModule Fid]
  92.     set errmodel [new ErrorModel/Periodic]
  93.     $errmodel unit pkt
  94.     $lossylink_ errormodule $em
  95. }
  96. TestSuite instproc finish file {
  97.     global quiet wrap PERL
  98.     set wrap [expr 90 * 1000 + 40]
  99.     exec $PERL ../../bin/set_flow_id -s all.tr | 
  100.     $PERL ../../bin/getrc -e -s 3 -d 2 | 
  101.     $PERL ../../bin/raw2xg -v -s 0.01 -m $wrap -t $file > temp.rands
  102.     #exec $PERL ../../bin/set_flow_id -s all.tr > temp1.tr
  103.     #exec $PERL ../../bin/getrc -e -s 2 -d 3 all.tr > temp2.tr
  104.     #exec $PERL ../../bin/raw2xg -v -s 0.00001 -m $wrap -t $file temp2.tr > temp.rands
  105.     if {$quiet == "false"} {
  106. exec xgraph -bb -tk -nl -m -x time -y packets temp.rands &
  107.     }
  108.     ## now use default graphing tool to make a data file
  109.     ## if so desired
  110.     # exec csh gnuplotC.com temp.rands $file
  111.     exit 0
  112. }
  113. TestSuite instproc emod {} {
  114.         $self instvar topo_
  115.         $topo_ instvar lossylink_
  116.         set errmodule [$lossylink_ errormodule]
  117.         return $errmodule
  118. TestSuite instproc drop_pkts pkts {
  119.     $self instvar ns_
  120.     set emod [$self emod]
  121.     set errmodel1 [new ErrorModel/List]
  122.     $errmodel1 droplist $pkts
  123.     $emod insert $errmodel1
  124.     $emod bind $errmodel1 1
  125. }
  126. TestSuite instproc setup {tcptype window list} {
  127.     global wrap wrap1
  128.     global segperack segsize delack
  129.     $self instvar ns_ node_ testName_
  130.     $self setTopo
  131.     
  132.     Agent/TCP set bugFix_ false
  133.     set fid 1
  134.     # Set up TCP connection
  135.     if {$tcptype == "FullTcp"} {
  136. set tcp1 [new Agent/TCP/BayFullTcp]
  137. set sink [new Agent/TCP/BayFullTcp]
  138.     } else {
  139. puts "Error: Type of FullTcp not supportedn"
  140. exit 1
  141.     }
  142.     
  143.     #$tcp1 set window_ 5
  144.     $tcp1 set window_ $window
  145.     set cli [new Agent/BayTcpApp/FtpClient]
  146.     $tcp1 attach-application $cli
  147.     $cli tcp $tcp1
  148.     
  149.     set sftp [new Agent/BayTcpApp/FtpServer]
  150.     $sftp file_size 10000000
  151.     $sink attach-application $sftp
  152.     $ns_ attach-agent $node_(s1) $tcp1
  153.     $ns_ attach-agent $node_(k1) $sink
  154.     $tcp1 set fid_ $fid
  155.     $sink set fid_ $fid
  156.     $ns_ connect $tcp1 $sink
  157.     # set up TCP-level connections
  158.     $sink listen ; # will figure out who its peer is
  159.     
  160.     $ns_ at 1.0 "$cli start"
  161.     #$ns_ at 120.0 "$cli stop"
  162.     $self tcpDump $tcp1 4.0
  163.     $self drop_pkts $list
  164.     
  165.     #$self traceQueues $node_(r1) [$self openTrace 4.01 $testName_]
  166.     $ns_ at 4.01 "$self cleanupAll $testName_"
  167.     $ns_ run
  168. }
  169.     
  170. # Definition of test-suite tests
  171. ###################################################
  172. ## Two drops
  173. ###################################################
  174. Class Test/Reno_FullTCP -superclass TestSuite
  175. Test/Reno_FullTCP instproc init {} {
  176. $self instvar net_ test_
  177. set net_ net4
  178. set test_ Reno_FullTCP
  179. $self next pktTraceFile
  180. }
  181. Test/Reno_FullTCP instproc run {} {
  182.         $self setup FullTcp {5} {15 18}
  183. }
  184. ###################################################
  185. ## One drop
  186. ###################################################
  187. Class Test/Reno_FullTCP2 -superclass TestSuite
  188. Test/Reno_FullTCP2 instproc init {} {
  189. $self instvar net_ test_
  190. set net_ net4
  191. set test_ Reno_FullTCP2
  192. $self next pktTraceFile
  193. }
  194. Test/Reno_FullTCP2 instproc run {} {
  195.         $self setup FullTcp {8} {17}
  196. }
  197. TestSuite runTest