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

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (C) 1997 by USC/ISI
  3. # All rights reserved.                                            
  4. #                                                                
  5. # Redistribution and use in source and binary forms are permitted
  6. # provided that the above copyright notice and this paragraph are
  7. # duplicated in all such forms and that any documentation, advertising
  8. # materials, and other materials related to such distribution and use
  9. # acknowledge that the software was developed by the University of
  10. # Southern California, Information Sciences Institute.  The name of the
  11. # University may not be used to endorse or promote products derived from
  12. # this software without specific prior written permission.
  13. # THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED
  14. # WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  15. # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16. #
  17. # Maintainer: Kannan Varadhan <kannan@isi.edu>
  18. #
  19. #
  20. # Simple example of an equal cost multi-path routing through
  21. # two equal cost routes.
  22. #
  23. #
  24. # $n0       $n3
  25. #         /   
  26. #        /     
  27. #      $n2       $n4
  28. #     /        /
  29. #    /        /
  30. # $n1       $n5
  31. #
  32. # The default in ns is to not use equal cost routes.  Therefore, we must first
  33. # ensure that each Node can use multiple Paths when they are available.
  34. #
  35. # The routing protocol that must be run is specified as arguments to the 
  36. # run command, rather than being specified separately.
  37. #
  38. # updated to use -multicast on by Lloyd Wood
  39. set ns [new Simulator -multicast on]
  40. Node set multiPath_ 1
  41. set n0 [$ns node]
  42. set n1 [$ns node]
  43. set n2 [$ns node]
  44. set n3 [$ns node]
  45. set n4 [$ns node]
  46. set n5 [$ns node]
  47. $n0 shape "circle"
  48. $n1 shape "circle"
  49. $n2 shape "other"
  50. $n3 shape "other"
  51. $n4 shape "box"
  52. $n5 shape "other"
  53. set f [open out.tr w]
  54. $ns trace-all $f
  55. set nf [open out.nam w]
  56. $ns namtrace-all $nf
  57. $ns color 0 blue
  58. $ns color 1 red
  59. $ns color 2 white
  60. $ns duplex-link $n0 $n2 10Mb 2ms DropTail
  61. $ns duplex-link $n1 $n2 10Mb 2ms DropTail
  62. $ns duplex-link-op $n0 $n2 orient right-down
  63. $ns duplex-link-op $n1 $n2 orient right-up
  64. $ns duplex-link $n2 $n3 1.5Mb 10ms DropTail
  65. $ns duplex-link $n3 $n4 1.5Mb 10ms DropTail
  66. $ns queue-limit $n2 $n3 5
  67. $ns duplex-link-op $n2 $n3 orient right-up
  68. $ns duplex-link-op $n3 $n4 orient right-down
  69. $ns duplex-link-op $n2 $n3 queuePos 0
  70. $ns duplex-link $n2 $n5 1.5Mb 10ms DropTail
  71. $ns duplex-link $n5 $n4 1.5Mb 10ms DropTail
  72. $ns queue-limit $n2 $n5 5
  73. $ns duplex-link-op $n2 $n5 orient right-down
  74. $ns duplex-link-op $n5 $n4 orient right-up
  75. $ns duplex-link-op $n2 $n5 queuePos 0
  76. #$ns rtproto DV
  77. set mproto DM
  78. set mrthandle [$ns mrtproto $mproto {}]
  79. proc build-tcp { n0 n1 startTime } {
  80.     global ns
  81.     set tcp [new Agent/TCP]
  82.     $ns attach-agent $n0 $tcp
  83.     set snk [new Agent/TCPSink]
  84.     $ns attach-agent $n1 $snk
  85.     $ns connect $tcp $snk
  86.     set ftp [new Application/FTP]
  87.     $ftp attach-agent $tcp
  88.     $ns at $startTime "$ftp start"
  89.     return $tcp
  90. }
  91. [build-tcp $n0 $n4 0.7] set class_ 0
  92. [build-tcp $n1 $n4 0.9] set class_ 1
  93. proc finish {} {
  94. global argv0
  95. global ns f nf
  96. $ns flush-trace
  97. close $f
  98. close $nf
  99. if [string match {*.tcl} $argv0] {
  100. set prog [string range $argv0 0 [expr [string length $argv0] - 5]]
  101. } else {
  102. set prog $argv0
  103. }
  104. #XXX
  105. puts "running nam..."
  106. exec nam out.nam &
  107. exit 0
  108. }
  109. $ns at 8.0 "finish"
  110. $ns run