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

通讯编程

开发平台:

Visual C++

  1. ## wireless-mobileIP-simulation
  2. #                       o W1                 WIRED NODES
  3. #                       |
  4. #                       o W2
  5. #                      / 
  6. #                     /                       
  7. #--*--*--*--*--*--*- o     o base-stn nodes  --*-*-*-*-*-*-*-
  8. #                   HA      FA               
  9. #                       o
  10. #                  o    WL       o          WIRELESS NODE MOVING
  11. #                WL               WL    FROM HA TO FA.
  12. #
  13. #
  14. #options
  15. set opt(chan) Channel/WirelessChannel
  16. set opt(prop) Propagation/TwoRayGround
  17. set opt(netif) Phy/WirelessPhy
  18. set opt(mac) Mac/802_11
  19. set opt(ifq) Queue/DropTail/PriQueue
  20. set opt(ll) LL
  21. set opt(ant)            Antenna/OmniAntenna
  22. set opt(x) 670 ;# X & Y dimension of the topography
  23. set opt(y) 670     ;# hard wired for now...
  24. set opt(rp)             dsr    ;# rotuing protocls: dsdv/dsr
  25. set opt(ifqlen) 50 ;# max packet in ifq
  26. set opt(seed) 0.0
  27. set opt(stop) 250.0 ;# simulation time
  28. set opt(cc)             "off"
  29. set opt(tr) wireless-mip-out.tr ;# trace file
  30. set opt(cp)             ""
  31. set opt(sc)             ""
  32. set opt(ftp1-start)     100.0
  33. # =================================================================
  34. set num_wired_nodes    2
  35. set num_bs_nodes       2
  36. set num_wireless_nodes 1
  37. set opt(nn)            3         ;# total number of wireless nodes
  38. #==================================================================
  39. # Other class settings
  40. set AgentTrace ON
  41. set RouterTrace OFF
  42. set MacTrace OFF
  43. LL set mindelay_ 50us
  44. LL set delay_ 25us
  45. Agent/Null set sport_ 0
  46. Agent/Null set dport_ 0
  47. Agent/CBR set sport_ 0
  48. Agent/CBR set dport_ 0
  49. Agent/TCPSink set sport_ 0
  50. Agent/TCPSink set dport_ 0
  51. Agent/TCP set sport_ 0
  52. Agent/TCP set dport_ 0
  53. Agent/TCP set packetSize_ 1460
  54. Queue/DropTail/PriQueue set Prefer_Routing_Protocols    1
  55. # unity gain, omni-directional antennas
  56. # set up the antennas to be centered in the node and 1.5 meters above it
  57. Antenna/OmniAntenna set X_ 0
  58. Antenna/OmniAntenna set Y_ 0
  59. Antenna/OmniAntenna set Z_ 1.5
  60. Antenna/OmniAntenna set Gt_ 1.0
  61. Antenna/OmniAntenna set Gr_ 1.0
  62. # Initialize the SharedMedia interface with parameters to make
  63. # it work like the 914MHz Lucent WaveLAN DSSS radio interface
  64. Phy/WirelessPhy set CPThresh_ 10.0
  65. Phy/WirelessPhy set CSThresh_ 1.559e-11
  66. Phy/WirelessPhy set RXThresh_ 3.652e-10
  67. Phy/WirelessPhy set Rb_ 2*1e6
  68. Phy/WirelessPhy set Pt_ 0.2818
  69. Phy/WirelessPhy set freq_ 914e+6 
  70. Phy/WirelessPhy set L_ 1.0
  71. # ==================================================================
  72. #source ../lib/ns-bsnode.tcl
  73. #source ../mobility/com.tcl
  74. #source ../mobility/dsr.tcl
  75. #source ../lib/ns-mip.tcl
  76. source ../lib/ns-wireless-mip.tcl
  77. # intial setup - set addressing to hierarchical
  78. set ns [new Simulator]
  79. $ns set-address-format hierarchical
  80. # set mobileIP flag
  81. Simulator set mobile_ip_ 1
  82. set namtrace [open wireless-mip.nam w]
  83. $ns namtrace-all $namtrace
  84. set trace [open wireless-mip.tr w]
  85. $ns trace-all $trace
  86. AddrParams set domain_num_ 3
  87. lappend cluster_num 2 1 1
  88. AddrParams set cluster_num_ $cluster_num
  89. lappend eilastlevel 1 1 4 1
  90. AddrParams set nodes_num_ $eilastlevel
  91. ##debug 1
  92. ## setup the wired nodes
  93. set temp {0.0.0 0.1.0}
  94. for {set i 0} {$i < $num_wired_nodes} {incr i} {
  95.     set W($i) [$ns node [lindex $temp $i]] 
  96. }
  97. ## create common objects reqd for wireless sim.
  98. if { $opt(x) == 0 || $opt(y) == 0 } {
  99. puts "No X-Y boundary values given for wireless topologyn"
  100. }
  101. set chan        [new $opt(chan)]
  102. set prop        [new $opt(prop)]
  103. set topo [new Topography]
  104. set tracefd [open $opt(tr) w]
  105. # setup topography and propagation model
  106. $topo load_flatgrid $opt(x) $opt(y)
  107. $prop topography $topo
  108. # Create God
  109. create-god $opt(nn)
  110. ## setup ForeignAgent and HomeAgent nodes
  111. set HA [create-base-station-node 1.0.0]
  112. set FA [create-base-station-node 2.0.0]
  113. #provide some co-ord (fixed) to these base-station nodes.
  114. $HA set X_ 1.000000000000
  115. $HA set Y_ 2.000000000000
  116. $HA set Z_ 0.000000000000
  117. $FA set X_ 650.000000000000
  118. $FA set Y_ 600.000000000000
  119. $FA set Z_ 0.000000000000
  120. # create a mobilenode that would be moving between HA and FA.
  121. # note address of MH indicates its in the same domain as HA.
  122. set MH [$opt(rp)-create-mobile-node 0 1.0.2]
  123. set HAaddress [AddrParams addr2id [$HA node-addr]]
  124. [$MH set regagent_] set home_agent_ $HAaddress
  125. # movement of the MH
  126. $MH set Z_ 0.000000000000
  127. $MH set Y_ 2.000000000000
  128. $MH set X_ 2.000000000000
  129. # starts to move towards FA
  130. $ns at 100.000000000000 "$MH setdest 640.000000000000 610.000000000000 20.000000000000"
  131. # goes back to HA
  132. $ns at 200.000000000000 "$MH setdest 2.000000000000 2.000000000000 20.000000000000"
  133. if { $opt(x) == 0 || $opt(y) == 0 } {
  134. usage $argv0
  135. exit 1
  136. }
  137. if {$opt(seed) > 0} {
  138. puts "Seeding Random number generator with $opt(seed)n"
  139. ns-random $opt(seed)
  140. }
  141. #
  142. # Source the Connection and Movement scripts
  143. #
  144. if { $opt(cp) == "" } {
  145. puts "*** NOTE: no connection pattern specified."
  146.         set opt(cp) "none"
  147. } else {
  148. puts "Loading connection pattern..."
  149. source $opt(cp)
  150. }
  151. if { $opt(sc) == "" } {
  152. puts "*** NOTE: no scenario file specified."
  153.         set opt(sc) "none"
  154. } else {
  155. puts "Loading scenario file..."
  156. source $opt(sc)
  157. puts "Load complete..."
  158. }
  159. # create links between wired and BaseStation nodes
  160. $ns duplex-link $W(0) $W(1) 5Mb 2ms DropTail
  161. $ns duplex-link $W(1) $HA 5Mb 2ms DropTail
  162. $ns duplex-link $W(1) $FA 5Mb 2ms DropTail
  163. $ns duplex-link-op $W(0) $W(1) orient down
  164. $ns duplex-link-op $W(1) $HA orient left-down
  165. $ns duplex-link-op $W(1) $FA orient right-down
  166. # setup TCP connections between a wired node and the MobileHost
  167. set tcp1 [new Agent/TCP]
  168. $tcp1 set class_ 2
  169. set sink1 [new Agent/TCPSink]
  170. $ns attach-agent $W(0) $tcp1
  171. $ns attach-agent $MH $sink1
  172. $ns connect $tcp1 $sink1
  173. set ftp1 [new Application/FTP]
  174. $ftp1 attach-agent $tcp1
  175. $ns at $opt(ftp1-start) "$ftp1 start"
  176. #
  177. # Tell all the nodes when the simulation ends
  178. #
  179. for {set i 0} {$i < $num_wireless_nodes } {incr i} {
  180.     $ns_ at $opt(stop).0000010 "$node_($i) reset";
  181. }
  182. $ns_ at $opt(stop).0000010 "$HA reset";
  183. $ns_ at $opt(stop).0000010 "$FA reset";
  184. $ns_ at $opt(stop).21 "finish"
  185. $ns_ at $opt(stop).20 "puts "NS EXITING..." ; "
  186. ###$ns_ halt"
  187. proc finish {} {
  188. global ns_ trace namtrace
  189. $ns_ flush-trace
  190. close $namtrace
  191. close $trace
  192. #puts "running nam..."
  193. #exec nam out.nam &
  194.         puts "Finishing ns.."
  195. exit 0
  196. }
  197. puts $tracefd "M 0.0 nn $opt(nn) x $opt(x) y $opt(y) rp $opt(rp)"
  198. puts $tracefd "M 0.0 sc $opt(sc) cp $opt(cp) seed $opt(seed)"
  199. puts $tracefd "M 0.0 prop $opt(prop) ant $opt(ant)"
  200. puts "Starting Simulation..."
  201. $ns_ run