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

通讯编程

开发平台:

Visual C++

  1. # The topology replicates the one used by Nirav in his paper
  2. # no loss added  
  3. #
  4. set val(chan)           Channel/Sat                 ;#Channel Type
  5. set val(netif)          Phy/Sat            ;# network interface type
  6. set val(mac)            Mac/Sat                 ;# MAC type
  7. set val(ifq)            Queue/DropTail  ;# interface queue type
  8. #set val(ifq)            Queue/XCP
  9. set val(ll)             LL/Sat                    ;# link layer type
  10. set val(err)            MarkovErrorModel
  11. #set val(err)            ComplexMarkovErrorModel
  12. #set val(err)             UniformErrorProc
  13. set val(bw_up)          10Mb
  14. set val(bw_down)        10Mb
  15. set val(x) 250
  16. set val(y) 250
  17. #Experimrnting with shorted values
  18. #set durlistA     "11.2 0.25"
  19. set durlistA        "11.2 4.0"      ;# unblocked and blocked state duration avg value
  20. set durlistB        "27.0 12.0 0.4 0.4"  ;# for complexmarkoverror model
  21. # set BW 10; # in Mb/s
  22. # set delay 254; # in ms
  23. # # Set the queue length (in packets)
  24. # set qlen [expr round([expr ($BW / 8.0) * $delay * 2])]; # set buffer to pipe size
  25. # puts "queue len = $qlen"
  26. # set val(ifqlen) $qlen
  27. # set sat link bandwidth and delay
  28. LL set bandwidth_ 10Mb
  29. LL set delay_ 125ms
  30. set val(bdp) [expr 10000 * 125]
  31. #LL/Sat/HDLC set window_size_ $val(bdp) 
  32. # set selective repeat on; its GoBackN by default
  33. #LL/HDLC set selRepeat_ 1
  34. set qlen $val(bdp)
  35. puts "queue len = $qlen"
  36. set val(ifqlen) $qlen
  37. proc start_time {} {return 0; }
  38. # proc start_time {} {return [expr ([eval ns-random] / 2147483647.0) * 0.1]}
  39. proc UniformErrorProc {} {
  40. global val
  41. set errObj [new ErrorModel]
  42. $errObj unit bit
  43. #$errObj FECstrength $val(FECstrength) 
  44. #$errObj datapktsize 512
  45. #$errObj cntrlpktsize 80
  46. return $errObj
  47. }
  48. proc MarkovErrorModel {} {
  49. global durlistA newrng_
  50. puts [lindex $durlistA 0]
  51. puts [lindex $durlistA 1]
  52. #set errmodel [new ErrorModel/TwoStateMarkov $durlistA time]
  53. set rv0 [new RandomVariable/Exponential]
  54. set rv1 [new RandomVariable/Exponential]
  55. $rv0 use-rng $newrng_
  56. $rv1 use-rng $newrng_
  57. $rv0 set avg_ [lindex $durlistA 0]
  58. $rv1 set avg_ [lindex $durlistA 1]
  59. set errmodel [new ErrorModel/TwoState $rv0 $rv1 time]
  60. #$errmodel drop-target [new Agent/Null]
  61. return $errmodel
  62. }
  63. proc ComplexMarkovErrorModel {} {
  64. global durlistB newrng_
  65. set errmodel [new ErrorModel/ComplexTwoStateMarkov $durlistB time $newrng_]
  66. $errmodel drop-target [new Agent/Null] 
  67. return $errmodel
  68. }
  69. proc stop {} {
  70.     global ns_ tracefd
  71.     $ns_ flush-trace
  72.     close $tracefd
  73. }
  74. proc setup {tcptype queuetype sources qlen duration file seed c_sources delay rate ecn} {
  75. global val traces ns_ tracefd newrng_
  76. # Initialize Global Variables
  77. #ns-random $seed
  78. set ns_ [new Simulator]
  79. set newrng_ [new RNG]
  80. $newrng_ seed $seed
  81. set tracefd     [open no-arq.tr w]
  82. $ns_ trace-all $tracefd
  83. $ns_ eventtrace-all
  84. $ns_ rtproto Static
  85. # Create sat n(0)
  86. # configure node, please note the change below.
  87. $ns_ node-config -satNodeType geo 
  88.     -llType $val(ll) 
  89.     -ifqType $val(ifq) 
  90.     -ifqLen $val(ifqlen) 
  91.     -macType $val(mac) 
  92.     -phyType $val(netif) 
  93.     -channelType $val(chan) 
  94.     -downlinkBW $val(bw_down) 
  95.     -wiredRouting ON
  96. set n(0) [$ns_ node]
  97. $n(0) set-position -95
  98. $ns_ node-config -satNodeType terminal
  99. set n(100) [$ns_ node]
  100. $n(100) set-position 37.9 -122.3; # Berkeley
  101. set n(101) [$ns_ node]
  102. $n(101) set-position 42.3 -71.1; # Boston
  103. # Add GSLs to geo satellites
  104. $n(100) add-gsl geo $val(ll) $val(ifq) $val(ifqlen) $val(mac) $val(bw_up) 
  105.     $val(netif) [$n(0) set downlink_] [$n(0) set uplink_]
  106. $n(101) add-gsl geo $val(ll) $val(ifq) $val(ifqlen) $val(mac) $val(bw_up) 
  107.     $val(netif) [$n(0) set downlink_] [$n(0) set uplink_]
  108. $n(101) interface-errormodel [$val(err)]
  109. $ns_ unset satNodeType_
  110. # create regular routers
  111. set n(99) [$ns_ node]    ;#....node 3
  112. set n(102) [$ns_ node]   ;#....node 4
  113. # determine the actual queutype and save the one asked for 
  114.     # assign queueing parameters -- simulate random drop with RED
  115. if { [string match RandomDrop* $queuetype ] } then {
  116. set queuetype [join 
  117.    [concat "RED" 
  118. [string range $queuetype [string length "RandomDrop"] end ]]
  119.    "" ]
  120. Queue/$queuetype set thresh_ [expr 2* $qlen]
  121. Queue/$queuetype set maxthresh_ [expr 2* $qlen]
  122. # added for ECN comparison
  123. Queue/$queuetype set setbit_ $ecn
  124. } elseif { [string match RED* $queuetype ] } then {
  125. #added by nirav
  126. Queue/$queuetype set bytes_ false
  127. Queue/$queuetype set queue_in_bytes_ false
  128. # Queue/$queuetype set q_weight_ = -1
  129. # Queue/$queuetype set max_p = 1
  130. Queue/$queuetype set gentle_ true
  131. #added by nirav
  132. #Queue/$queuetype set thresh_ [expr $qlen * 0.5]
  133. #Queue/$queuetype set maxthresh_ [expr $qlen * 0.75]
  134. Queue/$queuetype set thresh_ 0
  135. Queue/$queuetype set maxthresh_ 0
  136. # added for ECN comparison
  137. Queue/$queuetype set setbit_ $ecn
  138. }
  139. $ns_ duplex-link $n(99) $n(100) 10Mb 1ms $queuetype
  140. $ns_ duplex-link $n(101) $n(102) 10Mb 1ms $queuetype
  141. # Just to shut ns up about the uninitialized cwnd_frac_variable.
  142. Agent/TCP set cwnd_frac_ 100;
  143. # window needs to be big for long bw delays - it's a max value for cwnd_
  144. # initially set at 20 packets.
  145. #Agent/TCP/Reno set window_ 2000;
  146. Agent/$tcptype set window_ $val(bdp)
  147. # create nodes for sources and c_sources
  148. puts "sources = $sources"
  149. puts "c_sources = $c_sources"
  150. for { set i 1 } {$i <= [expr 2* [expr $sources+$c_sources]]} {incr i} {
  151. set n($i) [$ns_ node]
  152. }
  153. # connect sources and sinks to routers at 100 Mb/s
  154. for {set i 1} {$i<=$sources} {incr i} {
  155. $ns_ duplex-link $n($i) $n(99) 100Mb 1ms $queuetype
  156. $ns_ duplex-link $n(102) $n([expr $i+$sources+$c_sources]) 100Mb 1ms $queuetype
  157. }
  158. # connect cross traffic sources and sinks
  159. for {set i [expr $sources+1]} {$i<= [expr $c_sources+$sources]} {incr i} {
  160. $ns_ duplex-link $n($i) $n(99) 10Mb 2ms $queuetype
  161. $ns_ duplex-link $n(100) $n([expr $i+$sources+$c_sources]) 10Mb 2ms $queuetype
  162. }
  163. # Setup traffic flow between nodes
  164. # Create source and sink Agents and connect them
  165. for {set i 1} {$i<= [expr $sources+$c_sources]} {incr i} {
  166. # Create the sender agent
  167. set T($i) [new Agent/$tcptype]
  168. # If Ecn is on set it in the sender
  169. if { $ecn } { $T($i) set ecn_ 1 }
  170. set hstcpflag 0
  171. if {$hstcpflag==1} {
  172. puts "creating high-speed connection"
  173. set tcp($i) [$ns_ create-highspeed-connection TCP/Reno $n($i) TCPSink $n([expr $i+$c_sources+$sources]) $i]
  174. if { $ecn } { $tcp($i) set ecn_ 1 }
  175. } else {
  176. puts "cerating normal $T($i) connection"
  177. set tcp($i) [$ns_ create-connection $tcptype $n($i) TCPSink $n([expr $i+$c_sources+$sources]) $i]
  178. if { $ecn } { $tcp($i) set ecn_ 1 }
  179. }
  180. if {$hstcpflag==1} {
  181. [set tcp($i)] set windowOption_ 8
  182. [set tcp($i)] set low_window_ 12.5
  183. [set tcp($i)] set high_window_ 12500
  184. [set tcp($i)] set high_p_ 0.0000096
  185. [set tcp($i)] set high_decrease_ 0.1
  186. puts "windowOption = [$tcp($i) set windowOption_]"
  187. puts "low_window = [$tcp($i) set low_window_]"
  188. puts "high_window = [$tcp($i) set high_window_]"
  189. puts "high_p_ = [$tcp($i) set high_p_]"
  190. puts "high_decrease = [$tcp($i) set high_decrease_]"
  191. }
  192. set F($i) [new Application/FTP]
  193. $F($i) attach-agent $tcp($i)
  194. $ns_ at [expr [start_time]+[expr ($i-1)*2]] "$F($i) start"
  195. }
  196. # tracing for sat links
  197. $ns_ trace-all-satlinks $tracefd
  198. # If TCP is in the $traces variable, ask the TCP aganets to trace their
  199. # cwnd_ & seqno_ variable to a file of teh form $file.tcp_trace.source_number
  200. if { [lsearch $traces "TCP"] != -1 } {
  201. for {set i 1} {$i<= [expr $sources+$c_sources]} {incr i} {
  202. $tcp($i) trace cwnd_
  203. $tcp($i) trace t_seqno_
  204. $tcp($i) attach [open "$file.tcp_trace.$i" "w"]
  205. }
  206. }
  207. # set queue size to pipe size
  208. $ns_ queue-limit $n(99) $n(100) $val(ifqlen)
  209. $ns_ queue-limit $n(101) $n(102) $val(ifqlen)
  210. # If $traces includes "queue" use the trace-quere facility to put the queue
  211.     # trace out into $file.queue1.  See the docs for the format.
  212. if { [lsearch $traces "queue"] != -1 } {
  213. $ns_ trace-queue $n(99) $n(100) [open "$file.queue1" "w"]
  214. }
  215. # setup routing
  216. set satrouteobject_ [new SatRouteObject]
  217. $satrouteobject_ compute_routes
  218. # Stop the sim at $duration
  219. puts "duration = $durationn"
  220. $ns_ at $duration "stop"
  221. $ns_ at $duration "puts "NS EXITING..." ; $ns_ halt"
  222. # start up.
  223. puts "Starting Simulation..."
  224. $ns_ run
  225. }
  226. # traces are the set of info to be put out
  227. set traces [ list "TCP" "queue" ]
  228. # this boring code sets the given parameters from teh command line in order or
  229. # assigns defaults if they're not given.
  230. if { [llength $argv]>0} then { set sources [lindex $argv 0]}
  231. else {set sources 1}
  232. if { [llength $argv]>1} then { set duration [lindex $argv 1]}
  233. else {set duration 100}
  234. if { [llength $argv]>2} then { set file [lindex $argv 2]}
  235. else {set file "no-arq"}
  236. if { [llength $argv]>3} then { set qlen [lindex $argv 3]}
  237. else {set qlen 50 }
  238. if { [llength $argv]>4} then { set tcptype [lindex $argv 4]}
  239. else {set tcptype "TCP/Reno"}
  240. if { [llength $argv]>5} then { set queuetype [lindex $argv 5]}
  241. else {set queuetype "RED"}
  242. if { [llength $argv]>6} then { set seed [lindex $argv 6]}
  243. else {set seed 0}
  244. if { [llength $argv]>7} then { set c_sources [lindex $argv 7]}
  245. else {set  c_sources 0}
  246. if { [llength $argv]>8} then { set delay [lindex $argv 8]}
  247. else {set delay "10ms"}
  248. if { [llength $argv]>9} then { set rate [lindex $argv 9]}
  249. else {set rate "100k"}
  250. if { [llength $argv]>10} then { set ecn [lindex $argv 10]}
  251. else {set ecn 1 }
  252. # Start the sim
  253. puts "sources=$sources, duration=$duration, file=$file, qlen=$qlen, tcptype=$tcptype, queuetype=$queuetype, seec=$seed, c_sources=$c_sources"
  254. setup $tcptype $queuetype $sources $qlen $duration $file $seed $c_sources $delay $rate $ecn