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

通讯编程

开发平台:

Visual C++

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