B3-sliding-window.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:4k
源码类别:

通讯编程

开发平台:

Visual C++

  1. # sliding window protocol in normal situation
  2. # features : labeling, annotation, nam-graph, and window size monitoring
  3. # all packets look black cause of supporting nam-graph
  4. # You could run 'B3-sliding-color.nam' to see the colors of each traffic
  5.  
  6. set ns [new Simulator]
  7. $ns color 1 red
  8. #$ns trace-all [open B3-sliding-window.tr w]
  9. #$ns namtrace-all [open B3-sliding-window.nam w]
  10.         foreach i "s1 s2 r1 r2 s3 s4" {
  11.                set node_($i) [$ns node]
  12.         }
  13.         $node_(s2) color "red"
  14.         $node_(s4) color "red"
  15.         $node_(r1) color "blue"
  16.         $node_(r2) color "blue"
  17. $node_(r1) shape "rectangular"
  18.         $node_(r2) shape "rectangular"
  19.         $ns at 0.0 "$node_(s1) label Sliding-W-sender"
  20.         $ns at 0.0 "$node_(s2) label CBR-sender"
  21.         $ns at 0.0 "$node_(s3) label Sliding-W-receiver"
  22.         $ns at 0.0 "$node_(s4) label CBR-receiver"
  23. $ns duplex-link $node_(s1) $node_(r1) 0.5Mb 50ms DropTail
  24.         $ns duplex-link $node_(s2) $node_(r1) 0.5Mb 50ms DropTail
  25.         $ns duplex-link $node_(r1) $node_(r2) 0.5Mb 50ms DropTail
  26.         $ns duplex-link $node_(r2) $node_(s3) 0.5Mb 50ms DropTail
  27.         $ns duplex-link $node_(r2) $node_(s4) 0.5Mb 50ms DropTail
  28. $ns queue-limit $node_(r1) $node_(r2) 100
  29.         $ns queue-limit $node_(r2) $node_(r1) 100
  30. $ns duplex-link-op $node_(s1) $node_(r1) orient right-down
  31.         $ns duplex-link-op $node_(s2) $node_(r1) orient right-up
  32.         $ns duplex-link-op $node_(r1) $node_(r2) orient right
  33.         $ns duplex-link-op $node_(r2) $node_(s3) orient right-up
  34.         $ns duplex-link-op $node_(r2) $node_(s4) orient right-down
  35.         $ns duplex-link-op $node_(r1) $node_(r2) queuePos 0.5
  36.         $ns duplex-link-op $node_(r2) $node_(r1) queuePos 0.5
  37. Agent/TCP set nam_tracevar_ true
  38. # setting sliding window size to 4
  39. Agent/TCP set maxcwnd_ 4
  40. ### sliding-window protocol between s1 and s3 (Black)
  41. #set sliding [new Agent/TCP/SlidingWindow]
  42. set sliding [new Agent/TCP]
  43. $sliding set fid_ 0
  44. $ns attach-agent $node_(s1) $sliding
  45. #set sink [new Agent/TCPSink/SlidingWindowSink]
  46. set sink [new Agent/TCPSink]
  47. $ns attach-agent $node_(s3) $sink
  48. $ns connect $sliding $sink
  49. set ftp [new Application/FTP]
  50. $ftp attach-agent $sliding
  51. $ns add-agent-trace $sliding tcp
  52. $ns monitor-agent-trace $sliding
  53. $sliding tracevar cwnd_
  54. ### CBR traffic between s2 and s4 (Red)
  55. set cbr [$ns create-connection CBR $node_(s2) Null $node_(s4) 1]
  56. $cbr set packetSize_ 500
  57. $cbr set interval_ 0.05
  58. $cbr set class_ 1
  59. proc finish {} {
  60. global ns
  61. $ns flush-trace
  62. # puts "filtering..."
  63. # exec tclsh ../bin/namfilter.tcl B3-sliding-window.nam
  64. puts "running nam..."
  65. exec nam B3-sliding-window.nam &
  66. exit 0
  67. }
  68. ### set operations
  69. $ns at 0.1 "$ftp start"
  70. $ns at 1.7 "$ftp stop"
  71. $ns at 0.1 "$cbr start"
  72. $ns at 1.7 "$cbr stop"
  73. $ns at 2.0 "finish"
  74. ### add annotations
  75. $ns at 0.0 "$ns trace-annotate "Normal operation of <Sliding Window> with window size, 4"" 
  76. $ns at 0.1 "$ns trace-annotate "FTP starts at 0.1""
  77. $ns at 0.1 "$ns trace-annotate "CBR starts at 0.1""
  78. $ns at 0.11 "$ns trace-annotate "Send Packet_0,1,2,3 : window size, 4""
  79. $ns at 0.32 "$ns trace-annotate "Ack_0,1,2,3""
  80. $ns at 0.46 "$ns trace-annotate "Send Packet_4,5,6,7 : window size, 4"" 
  81. $ns at 0.66 "$ns trace-annotate "Ack_4,5,6,7""
  82. $ns at 0.81 "$ns trace-annotate "Send Packet_8,9,10,11   : window size, 4""
  83. $ns at 1.00 "$ns trace-annotate "Ack_8,9,10,11""
  84. $ns at 1.16 "$ns trace-annotate "Send Packet_12,13,14,15  : window size, 4"" 
  85. $ns at 1.35 "$ns trace-annotate "Ack_12,13,14,15""
  86. $ns at 1.50 "$ns trace-annotate "Send Packet_16,17,18,19   : window size, 4""
  87. $ns at 1.71 "$ns trace-annotate "Ack_16,17,18,19""
  88. $ns at 1.8 "$ns trace-annotate "FTP stops at 1.7""
  89. $ns at 1.8 "$ns trace-annotate "CBR stops at 1.7""
  90. $ns run