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

通讯编程

开发平台:

Visual C++

  1. # sliding window protocol in congestion
  2. # features : labeling, annotation, nam-graph, and window size monitoring
  3. # all packets look black cause of supporting nam-graph
  4. # You could run 'B4-sliding-color.nam' to see the colors of each traffic
  5. set ns [new Simulator]
  6. $ns color 1 red
  7. #$ns trace-all [open B4-sliding-color.tr w]
  8. #$ns namtrace-all [open B4-sliding-color.nam w]
  9.         foreach i "s1 s2 r1 r2 s3 s4" {
  10.                set node_($i) [$ns node]
  11.         }
  12.         $node_(s2) color "red"
  13.         $node_(s4) color "red"
  14.         $node_(r1) color "blue"
  15.         $node_(r2) color "blue"
  16. $node_(r1) shape "rectangular"
  17.         $node_(r2) shape "rectangular"
  18.         $ns at 0.0 "$node_(s1) label Sliding-W-sender"
  19.         $ns at 0.0 "$node_(s2) label CBR-sender"
  20.         $ns at 0.0 "$node_(s3) label Sliding-W-receiver"
  21.         $ns at 0.0 "$node_(s4) label CBR-receiver"
  22. $ns duplex-link $node_(s1) $node_(r1) 0.5Mb 50ms DropTail
  23.         $ns duplex-link $node_(s2) $node_(r1) 0.5Mb 50ms DropTail
  24.         $ns duplex-link $node_(r1) $node_(r2) 0.5Mb 50ms DropTail
  25.         $ns duplex-link $node_(r2) $node_(s3) 0.5Mb 50ms DropTail
  26.         $ns duplex-link $node_(r2) $node_(s4) 0.5Mb 50ms DropTail
  27. $ns queue-limit $node_(r1) $node_(r2) 10
  28.         $ns queue-limit $node_(r2) $node_(r1) 10
  29. $ns duplex-link-op $node_(s1) $node_(r1) orient right-down
  30.         $ns duplex-link-op $node_(s2) $node_(r1) orient right-up
  31.         $ns duplex-link-op $node_(r1) $node_(r2) orient right
  32.         $ns duplex-link-op $node_(r2) $node_(s3) orient right-up
  33.         $ns duplex-link-op $node_(r2) $node_(s4) orient right-down
  34.         $ns duplex-link-op $node_(r1) $node_(r2) queuePos 0.5
  35.         $ns duplex-link-op $node_(r2) $node_(r1) queuePos 0.5
  36. Agent/TCP set nam_tracevar_ true
  37. # setting sliding window size to 4
  38. Agent/TCP set maxcwnd_ 4
  39. ### sliding-window protocol between s1 and s3 (Black)
  40. #set sliding [new Agent/TCP/SlidingWindow]
  41. set sliding [new Agent/TCP]
  42. $sliding set fid_ 0
  43. $ns attach-agent $node_(s1) $sliding
  44. #set sink [new Agent/TCPSink/SlidingWindowSink]
  45. set sink [new Agent/TCPSink]
  46. $ns attach-agent $node_(s3) $sink
  47. $ns connect $sliding $sink
  48. set ftp [new Application/FTP]
  49. $ftp attach-agent $sliding
  50. $ns add-agent-trace $sliding tcp
  51. $ns monitor-agent-trace $sliding
  52. $sliding tracevar cwnd_
  53. ### CBR traffic between s2 and s4 (Red)
  54. set cbr [$ns create-connection CBR $node_(s2) Null $node_(s4) 1]
  55. $cbr set fid_ 1
  56. proc finish {} {
  57. global ns
  58. $ns flush-trace
  59. # puts "filtering..."
  60. # exec tclsh ../bin/namfilter.tcl B4-sliding-color.nam
  61. puts "running nam..."
  62. exec nam B4-sliding-color.nam &
  63. exit 0
  64. }
  65. ### set operations
  66. $ns at 0.1 "$ftp start"
  67. $ns at 2.35 "$ftp stop"
  68. $ns at 0.1 "$cbr start"
  69. $ns at 2.35 "$cbr stop"
  70. $ns at 3.0 "finish"
  71. ### add annotations
  72. $ns at 0.0 "$ns trace-annotate "Sliding Window with packet loss    "" 
  73. $ns run