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

通讯编程

开发平台:

Visual C++

  1. # case1.tcl
  2. set val(chan)           Channel/Sat                 ;#Channel Type
  3. set val(netif)          Phy/Sat            ;# network interface type
  4. set val(mac)            Mac/Sat                 ;# MAC type
  5. set val(ifq)            Queue/DropTail  ;# interface queue type
  6. #set val(ifq)            Queue/XCP
  7. set val(ll)             LL/Sat/HDLC                    ;# link layer type
  8. #set val(ll)              LL/Sat
  9. set val(err)            MarkovErrorModel
  10. #set val(err)            ComplexMarkovErrorModel
  11. #set val(err)             UniformErrorProc
  12. set val(bw_up)          10Mb
  13. set val(bw_down)        10Mb
  14. set val(x) 250
  15. set val(y) 250
  16. set durlistA        "11.2 4.0"      ;# unblocked and blocked state duration avg value
  17. set durlistB        "27.0 12.0 0.4 0.4"  ;# for complexmarkoverror model
  18. set BW 10; # in Mb/s
  19. set delay 254; # in ms
  20. # Set the queue length (in packets)
  21. #set qlen [expr round([expr ($BW / 8.0) * $delay * 2])]; # set buffer to pipe size
  22. # set sat link bandwidth and delay
  23. Mac set bandwidth_ 10Mb
  24. LL set delay_ 125ms
  25. set val(bdp) [expr 10000/8.0 * 125/100]
  26. LL/Sat/HDLC set window_size_ $val(bdp) 
  27. LL/Sat/HDLC set timeout_ 0.26
  28. LL/Sat/HDLC set max_timeouts_ 0
  29. # set selective repeat on; its GoBackN by default
  30. LL/Sat/HDLC set selRepeat_ 1
  31. set qlen $val(bdp)
  32. puts "queue len = $qlen"
  33. set val(ifqlen) $qlen
  34. proc start_time {} {return 0; }
  35. # proc start_time {} {return [expr ([eval ns-random] / 2147483647.0) * 0.1]}
  36. proc UniformErrorProc {} {
  37. global val
  38. set errObj [new ErrorModel]
  39. $errObj unit bit
  40. #$errObj FECstrength $val(FECstrength) 
  41. #$errObj datapktsize 512
  42. #$errObj cntrlpktsize 80
  43. return $errObj
  44. }
  45. proc MarkovErrorModel {} {
  46. global durlistA
  47. puts [lindex $durlistA 0]
  48. puts [lindex $durlistA 1]
  49. set errmodel [new ErrorModel/TwoStateMarkov $durlistA time]
  50. #$errmodel drop-target [new Agent/Null]
  51. return $errmodel
  52. }
  53. proc ComplexMarkovErrorModel {} {
  54. global durlistB
  55. set errmodel [new ErrorModel/ComplexTwoStateMarkov $durlistB time]
  56. $errmodel drop-target [new Agent/Null] 
  57. return $errmodel
  58. }
  59. proc stop {} {
  60.     global ns_ tracefd
  61.     $ns_ flush-trace
  62.     close $tracefd
  63. }
  64. proc setup {tcptype queuetype sources qlen duration file seed c_sources delay rate ecn} {
  65. global val traces ns_ tracefd
  66. # Initialize Global Variables
  67. ns-random $seed
  68. set ns_ [new Simulator]
  69. set tracefd     [open case1.tr w]
  70. $ns_ trace-all $tracefd
  71. $ns_ eventtrace-all
  72. $ns_ rtproto Static
  73. # Create sat n(0)
  74. # configure node, please note the change below.
  75. $ns_ node-config -satNodeType geo 
  76.     -llType $val(ll) 
  77.     -ifqType $val(ifq) 
  78.     -ifqLen $val(ifqlen) 
  79.     -macType $val(mac) 
  80.     -phyType $val(netif) 
  81.     -channelType $val(chan) 
  82.     -downlinkBW $val(bw_down) 
  83.     -wiredRouting ON
  84. set n(0) [$ns_ node]
  85. $n(0) set-position -95
  86. $ns_ node-config -satNodeType terminal
  87. set n(100) [$ns_ node]
  88. $n(100) set-position 42.3 -71.1; # Boston
  89. $n(100) add-gsl geo $val(ll) $val(ifq) $val(ifqlen) $val(mac) $val(bw_up) 
  90.     $val(netif) [$n(0) set downlink_] [$n(0) set uplink_]
  91. $n(100) interface-errormodel [$val(err)]
  92. $ns_ unset satNodeType_
  93. # create regular routers
  94. set n(99) [$ns_ node]    ;#....node 2
  95. # determine the actual queutype and save the one asked for 
  96. # assign queueing parameters -- simulate random drop with RED
  97. if { [string match RandomDrop* $queuetype ] } then {
  98. set queuetype [join 
  99.    [concat "RED" 
  100. [string range $queuetype [string length "RandomDrop"] end ]]
  101.    "" ]
  102. Queue/$queuetype set thresh_ [expr 2* $qlen]
  103. Queue/$queuetype set maxthresh_ [expr 2* $qlen]
  104. # added for ECN comparison
  105. Queue/$queuetype set setbit_ $ecn
  106. } elseif { [string match RED* $queuetype ] } then {
  107. #added by nirav
  108. Queue/$queuetype set bytes_ false
  109. Queue/$queuetype set queue_in_bytes_ false
  110. # Queue/$queuetype set q_weight_ = -1
  111. # Queue/$queuetype set max_p = 1
  112. Queue/$queuetype set gentle_ true
  113. #added by nirav
  114. #Queue/$queuetype set thresh_ [expr $qlen * 0.5]
  115. #Queue/$queuetype set maxthresh_ [expr $qlen * 0.75]
  116. Queue/$queuetype set thresh_ 0
  117. Queue/$queuetype set maxthresh_ 0
  118. # added for ECN comparison
  119. Queue/$queuetype set setbit_ $ecn
  120. }
  121. $ns_ duplex-link $n(99) $n(100) 10Mb 50ms $queuetype
  122. # UDP
  123. # set udp [new Agent/UDP]
  124.   # $ns_ attach-agent $n(100) $udp
  125. #   set cbr [new Application/Traffic/CBR]
  126. #   $cbr set packetSize_ 512
  127. #   #$cbr set interval_ 3.75ms
  128. #   $cbr set rate_ 50Kb
  129. #   #$cbr set maxpkts_ 2000
  130. #   $cbr attach-agent $udp
  131. #   set null [new Agent/Null]
  132. #   $ns_ attach-agent $n(101) $null
  133. #   $ns_ connect $udp $null
  134. #   $ns_ at 0.1 "$cbr start"
  135. Agent/$tcptype set window_ $val(bdp)
  136. #  # TCP
  137.   set tcp [$ns_ create-connection $tcptype $n(99) TCPSink/Sack1 $n(0) 0]
  138.   set ftp [new Application/FTP]
  139.   $ftp attach-agent $tcp
  140.   $ns_ at 0.0 "$ftp start"
  141. # tracing for sat links
  142. $ns_ trace-all-satlinks $tracefd
  143. # setup routing
  144. set satrouteobject_ [new SatRouteObject]
  145. $satrouteobject_ compute_routes
  146. # trace for tcp parameters
  147. $tcp trace cwnd_
  148. $tcp trace t_seqno_
  149. $tcp attach [open "$file.tcp_trace.1" "w"]
  150. # trace queue
  151. #$ns_ trace-queue $n(0) $n(101) [open "$file.queue1" w]
  152. # Stop the sim at $duration
  153. puts "duration = $durationn"
  154. $ns_ at $duration "stop"
  155. $ns_ at $duration "puts "NS EXITING..." ; $ns_ halt"
  156. # start up.
  157. puts "Starting Simulation..."
  158. $ns_ run
  159. }
  160. # traces are the set of info to be put out
  161. set traces [ list "TCP" "queue" ]
  162. # this boring code sets the given parameters from teh command line in order or
  163. # assigns defaults if they're not given.
  164. if { [llength $argv]>0} then { set sources [lindex $argv 0]}
  165. else {set sources 1}
  166. if { [llength $argv]>1} then { set duration [lindex $argv 1]}
  167. else {set duration 50}
  168. if { [llength $argv]>2} then { set file [lindex $argv 2]}
  169. else {set file "case1"}
  170. if { [llength $argv]>3} then { set qlen [lindex $argv 3]}
  171. else {set qlen 50 }
  172. if { [llength $argv]>4} then { set tcptype [lindex $argv 4]}
  173. else {set tcptype "TCP/Newreno"}
  174. if { [llength $argv]>5} then { set queuetype [lindex $argv 5]}
  175. else {set queuetype "RED"}
  176. if { [llength $argv]>6} then { set seed [lindex $argv 6]}
  177. else {set seed 0}
  178. if { [llength $argv]>7} then { set c_sources [lindex $argv 7]}
  179. else {set  c_sources 0}
  180. if { [llength $argv]>8} then { set delay [lindex $argv 8]}
  181. else {set delay "10ms"}
  182. if { [llength $argv]>9} then { set rate [lindex $argv 9]}
  183. else {set rate "100k"}
  184. if { [llength $argv]>10} then { set ecn [lindex $argv 10]}
  185. else {set ecn 1 }
  186. # Start the sim
  187. puts "sources=$sources, duration=$duration, file=$file, qlen=$qlen, tcptype=$tcptype, queuetype=$queuetype, seec=$seed, c_sources=$c_sources"
  188. setup $tcptype $queuetype $sources $qlen $duration $file $seed $c_sources $delay $rate $ecn