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

通讯编程

开发平台:

Visual C++

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