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

通讯编程

开发平台:

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-tcpReset.tcl,v 1.14 2006/01/25 22:02:05 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. 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 minrto_ 1
  50. # default changed on 10/14/2004.
  51. Queue/RED set bytes_ false              
  52. # default changed on 10/11/2004.
  53. Queue/RED set queue_in_bytes_ false
  54. # default changed on 10/11/2004.
  55. Queue/RED set q_weight_ 0.002
  56. Queue/RED set thresh_ 5 
  57. Queue/RED set maxthresh_ 15
  58. # The RED parameter defaults are being changed for automatic configuration.
  59. Agent/TCP set useHeaders_ false
  60. # The default is being changed to useHeaders_ true.
  61. Agent/TCP set windowInit_ 1
  62. # The default is being changed to 2.
  63. Agent/TCP set singledup_ 0
  64. # The default is being changed to 1
  65. source topologies.tcl
  66. Agent/TCP set syn_ false
  67. Agent/TCP set delay_growth_ false
  68. # In preparation for changing the default values for syn_ and delay_growth_.
  69. TestSuite instproc finish file {
  70. global quiet PERL
  71.         exec $PERL ../../bin/set_flow_id -s all.tr | 
  72.           $PERL ../../bin/getrc -s 2 -d 3 | 
  73.           $PERL ../../bin/raw2xg -s 0.01 -m 90 -t $file > temp.rands
  74. if {$quiet == "false"} {
  75. exec xgraph -bb -tk -nl -m -x time -y packets temp.rands &
  76. }
  77.         ## now use default graphing tool to make a data file
  78. ## if so desired
  79. ## regsub \(.+\) $file {} filename
  80. ## exec csh gnuplotA.com temp.rands $filename
  81.         exit 0
  82. }
  83. #
  84. # Links1 uses 8Mb, 5ms feeders, and a 800Kb 20ms bottleneck.
  85. # Queue-limit on bottleneck is 25 packets.
  86. #
  87. Class Topology/net6 -superclass NodeTopology/4nodes
  88. Topology/net6 instproc init ns {
  89.     $self next $ns
  90.     $self instvar node_
  91.     Queue/RED set setbit_ true
  92.     $ns duplex-link $node_(s1) $node_(r1) 8Mb 5ms DropTail
  93.     $ns duplex-link $node_(s2) $node_(r1) 8Mb 5ms DropTail
  94.     $ns duplex-link $node_(r1) $node_(k1) 800Kb 20ms RED
  95.     $ns queue-limit $node_(r1) $node_(k1) 25
  96.     $ns queue-limit $node_(k1) $node_(r1) 25
  97.     if {[$class info instprocs config] != ""} {
  98. $self config $ns
  99.     }
  100. }
  101. # Arrange for tcp source stats to be dumped for $tcpSrc every
  102. # $interval seconds of simulation time
  103. TestSuite instproc tcpDump { tcpSrc interval } {
  104.         global quiet
  105.         $self instvar dump_inst_ ns_
  106.         if ![info exists dump_inst_($tcpSrc)] {
  107.                 set dump_inst_($tcpSrc) 1
  108.                 $ns_ at 0.0 "$self tcpDump $tcpSrc $interval"
  109.                 return
  110.         }
  111.         $ns_ at [expr [$ns_ now] + $interval] "$self tcpDump $tcpSrc $interval"
  112.         set report [$ns_ now]/cwnd=[format "%.4f" [$tcpSrc set cwnd_]]/ssthresh=[$tcpSrc set ssthresh_]/ack=[$tcpSrc set ack_]
  113.         if {$quiet == "false"} {
  114.                 puts $report
  115.         }
  116. }
  117. # Definition of test-suite tests
  118. Class Test/reset -superclass TestSuite
  119. Test/reset instproc init topo {
  120. $self instvar net_ defNet_ test_ guide_
  121. set net_ $topo
  122. set defNet_ net6
  123. set test_ reset
  124. set guide_ "Resetting a TCP connection."
  125. $self next
  126. }
  127. Test/reset instproc run {} {
  128. global quiet
  129. $self instvar ns_ node_ testName_ guide_
  130. puts "Guide: $guide_"
  131. # Set up TCP connection
  132. set tcp [$ns_ create-connection-list TCP $node_(s1) TCPSink $node_(k1) 1]
  133. set tcp1 [lindex $tcp 0]
  134.         set sink [lindex $tcp 1]
  135. $tcp1 set window_ 5
  136. set ftp1 [$tcp1 attach-app FTP]
  137. $ns_ at 0.0 "$ftp1 produce 10"
  138. $ns_ at 1.1 "$tcp1 reset"
  139. $ns_ at 1.1 "$sink reset"
  140. $ns_ at 1.5 "$ftp1 producemore 20"
  141.         $self tcpDump $tcp1 1.0
  142. $self traceQueues $node_(r1) [$self openTrace 3.0 $testName_]
  143. $ns_ run
  144. }
  145. Class Test/resetDelAck -superclass TestSuite
  146. Test/resetDelAck instproc init topo {
  147. $self instvar net_ defNet_ test_ guide_
  148. set net_ $topo
  149. set defNet_ net6
  150. set test_ resetDelAck
  151. set guide_ "Resetting a DelAck TCP connection."
  152. $self next
  153. }
  154. Test/resetDelAck instproc run {} {
  155. global quiet
  156. $self instvar ns_ node_ testName_ guide_
  157. puts "Guide: $guide_"
  158. # Set up TCP connection
  159. set tcp [$ns_ create-connection-list TCP $node_(s1) TCPSink/DelAck $node_(k1) 1]
  160. set tcp1 [lindex $tcp 0]
  161.         set sink [lindex $tcp 1]
  162. $tcp1 set window_ 5
  163. set ftp1 [$tcp1 attach-app FTP]
  164. $ns_ at 0.0 "$ftp1 produce 10"
  165. $ns_ at 1.1 "$tcp1 reset"
  166. $ns_ at 1.1 "$sink reset"
  167. $ns_ at 1.5 "$ftp1 producemore 20"
  168. $self traceQueues $node_(r1) [$self openTrace 3.0 $testName_]
  169. $ns_ run
  170. }
  171. Class Test/resetDelAck1 -superclass TestSuite
  172. Test/resetDelAck1 instproc init topo {
  173. $self instvar net_ defNet_ test_ guide_
  174. set net_ $topo
  175. set defNet_ net6
  176. set test_ resetDelAck1
  177. set guide_
  178. "Resetting a DelAck TCP connection, different timing between connections."
  179. $self next
  180. }
  181. Test/resetDelAck1 instproc run {} {
  182. global quiet
  183. $self instvar ns_ node_ testName_ guide_
  184. puts "Guide: $guide_"
  185. # Set up TCP connection
  186. set tcp [$ns_ create-connection-list TCP $node_(s1) TCPSink/DelAck $node_(k1) 1]
  187. set tcp1 [lindex $tcp 0]
  188.         set sink [lindex $tcp 1]
  189. $tcp1 set window_ 5
  190. set ftp1 [$tcp1 attach-app FTP]
  191. $ns_ at 0.0 "$ftp1 produce 10"
  192. $ns_ at 0.41 "$tcp1 reset"
  193. $ns_ at 0.41 "$sink reset"
  194. $ns_ at 5.00 "$ftp1 producemore 20"
  195. $self traceQueues $node_(r1) [$self openTrace 10.0 $testName_]
  196. $ns_ run
  197. }
  198. Class Test/reset1 -superclass TestSuite
  199. Test/reset1 instproc init topo {
  200. $self instvar net_ defNet_ test_ guide_
  201. set net_ $topo
  202. set defNet_ net6
  203. set test_ reset1
  204. set guide_
  205. "Resetting a TCP connection."
  206. $self next
  207. }
  208. Test/reset1 instproc run {} {
  209. global quiet
  210. $self instvar ns_ node_ testName_ guide_
  211. puts "Guide: $guide_"
  212. # Set up TCP connection
  213. set tcp [$ns_ create-connection-list TCP $node_(s1) TCPSink $node_(k1) 1]
  214. set tcp1 [lindex $tcp 0]
  215.         set sink [lindex $tcp 1]
  216. $tcp1 set window_ 5
  217. set ftp1 [$tcp1 attach-app FTP]
  218. $ns_ at 0.0 "$ftp1 produce 10"
  219. $ns_ at 0.2 "$tcp1 reset"
  220. $ns_ at 0.2 "$sink reset"
  221. $ns_ at 0.201 "$ftp1 producemore 20"
  222.         $self tcpDump $tcp1 1.0
  223. $self traceQueues $node_(r1) [$self openTrace 3.0 $testName_]
  224. $ns_ run
  225. }
  226. Class Test/resetDelAck2 -superclass TestSuite
  227. Test/resetDelAck2 instproc init topo {
  228. $self instvar net_ defNet_ test_ guide_
  229. set net_ $topo
  230. set defNet_ net6
  231. set test_ resetDelAck2
  232. set guide_
  233. "Resetting a TCP connection when there is unsent data."
  234. $self next
  235. }
  236. Test/resetDelAck2 instproc run {} {
  237. global quiet
  238. $self instvar ns_ node_ testName_ guide_
  239. puts "Guide: $guide_"
  240. # Set up TCP connection
  241. set tcp [$ns_ create-connection-list TCP $node_(s1) TCPSink/DelAck $node_(k1) 1]
  242. set tcp1 [lindex $tcp 0]
  243.         set sink [lindex $tcp 1]
  244. $tcp1 set window_ 5
  245. set ftp1 [$tcp1 attach-app FTP]
  246. $ns_ at 0.0 "$ftp1 produce 10"
  247. $ns_ at 0.32 "$tcp1 reset"
  248. $ns_ at 0.32 "$sink reset"
  249. $ns_ at 0.321 "$ftp1 producemore 20"
  250. $self traceQueues $node_(r1) [$self openTrace 3.0 $testName_]
  251. $ns_ run
  252. }
  253. Class Test/resetDelAck3 -superclass TestSuite
  254. Test/resetDelAck3 instproc init topo {
  255. $self instvar net_ defNet_ test_ guide_
  256. set net_ $topo
  257. set defNet_ net6
  258. set test_ resetDelAck3
  259. set guide_
  260. "Resetting a TCP connection when there is unsent data."
  261. $self next
  262. }
  263. Test/resetDelAck3 instproc run {} {
  264. global quiet
  265. $self instvar ns_ node_ testName_ guide_
  266. puts "Guide: $guide_"
  267. # Set up TCP connection
  268. set tcp [$ns_ create-connection-list TCP $node_(s1) TCPSink/DelAck $node_(k1) 1]
  269. set tcp1 [lindex $tcp 0]
  270.         set sink [lindex $tcp 1]
  271. $tcp1 set window_ 5
  272. set ftp1 [$tcp1 attach-app FTP]
  273. $ns_ at 0.0 "$ftp1 produce 10"
  274. $ns_ at 0.32 "$tcp1 reset"
  275. $ns_ at 0.32 "$sink reset"
  276. $ns_ at 0.321 "$ftp1 producemore 20"
  277. $self traceQueues $node_(r1) [$self openTrace 10.0 $testName_]
  278. $ns_ run
  279. }
  280. Class Test/resetNewreno -superclass TestSuite
  281. Test/resetNewreno instproc init topo {
  282. $self instvar net_ defNet_ test_ guide_
  283. set net_ $topo
  284. set defNet_ net6
  285. set test_ resetNewreno
  286. set guide_
  287. "NewReno TCP, resetting a TCP connection."
  288. $self next
  289. }
  290. Test/resetNewreno instproc run {} {
  291. global quiet
  292. $self instvar ns_ node_ testName_ guide_
  293. puts "Guide: $guide_"
  294. # Set up TCP connection
  295. set tcp [$ns_ create-connection-list TCP/Newreno $node_(s1) TCPSink $node_(k1) 1]
  296. set tcp1 [lindex $tcp 0]
  297.         set sink [lindex $tcp 1]
  298. $tcp1 set window_ 5
  299. set ftp1 [$tcp1 attach-app FTP]
  300. $ns_ at 0.0 "$ftp1 produce 10"
  301. $ns_ at 0.2 "$tcp1 reset"
  302. $ns_ at 0.2 "$sink reset"
  303. $ns_ at 0.201 "$ftp1 producemore 20"
  304.         $self tcpDump $tcp1 1.0
  305. $self traceQueues $node_(r1) [$self openTrace 3.0 $testName_]
  306. $ns_ run
  307. }
  308. Class Test/resetSack1 -superclass TestSuite
  309. Test/resetSack1 instproc init topo {
  310. $self instvar net_ defNet_ test_ guide_
  311. set net_ $topo
  312. set defNet_ net6
  313. set test_ resetSack1
  314. set guide_
  315. "Sack TCP, resetting a TCP connection."
  316. $self next
  317. }
  318. Test/resetSack1 instproc run {} {
  319. global quiet
  320. $self instvar ns_ node_ testName_ guide_
  321. puts "Guide: $guide_"
  322. # Set up TCP connection
  323. set tcp [$ns_ create-connection-list TCP/Sack1 $node_(s1) TCPSink/Sack1 $node_(k1) 1]
  324. set tcp1 [lindex $tcp 0]
  325.         set sink [lindex $tcp 1]
  326. $tcp1 set window_ 5
  327. set ftp1 [$tcp1 attach-app FTP]
  328. $ns_ at 0.0 "$ftp1 produce 10"
  329. $ns_ at 0.2 "$tcp1 reset"
  330. $ns_ at 0.2 "$sink reset"
  331. $ns_ at 0.201 "$ftp1 producemore 20"
  332.         $self tcpDump $tcp1 1.0
  333. $self traceQueues $node_(r1) [$self openTrace 3.0 $testName_]
  334. $ns_ run
  335. }
  336. Class Test/resetReno -superclass TestSuite
  337. Test/resetReno instproc init topo {
  338. $self instvar net_ defNet_ test_ guide_
  339. set net_ $topo
  340. set defNet_ net6
  341. set test_ resetReno
  342. set guide_
  343. "Reno TCP, resetting a TCP connection."
  344. $self next
  345. }
  346. Test/resetReno instproc run {} {
  347. global quiet
  348. $self instvar ns_ node_ testName_ guide_
  349. puts "Guide: $guide_"
  350. # Set up TCP connection
  351. set tcp [$ns_ create-connection-list TCP/Reno $node_(s1) TCPSink $node_(k1) 1]
  352. set tcp1 [lindex $tcp 0]
  353.         set sink [lindex $tcp 1]
  354. $tcp1 set window_ 5
  355. set ftp1 [$tcp1 attach-app FTP]
  356. $ns_ at 0.0 "$ftp1 produce 10"
  357. $ns_ at 0.2 "$tcp1 reset"
  358. $ns_ at 0.2 "$sink reset"
  359. $ns_ at 0.201 "$ftp1 producemore 20"
  360.         $self tcpDump $tcp1 1.0
  361. $self traceQueues $node_(r1) [$self openTrace 3.0 $testName_]
  362. $ns_ run
  363. }
  364. TestSuite runTest
  365. ### Local Variables:
  366. ### mode: tcl
  367. ### tcl-indent-level: 8
  368. ### tcl-default-application: ns
  369. ### End: