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

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (C) 1999 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: Polly Huang <huang@isi.edu>
  18. # Version Date: $Date: 1999/04/20 22:34:28 $
  19. #
  20. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/ex/dumbbell.tcl,v 1.1 1999/04/20 22:34:28 polly Exp $ (USC/ISI)
  21. #
  22. # Dumbell topology
  23. # Used by web-traffic.tcl
  24. # Simple 12-node dumbbell topology
  25. #        8    7       2    3
  26. #            |       | / 
  27. #        9 -- 1 ----- 0 -- 4
  28. #           / |       | 
  29. #        10   11      6    5   
  30. proc create_topology {} {
  31. global ns n num_node
  32. set num_node 12
  33. for {set i 0} {$i < $num_node} {incr i} {
  34. set n($i) [$ns node]
  35. }
  36. $ns set src_ [list 2 3 4 5 6]
  37. $ns set dst_ [list 7 8 9 10 11]
  38. # EDGES (from-node to-node length a b):
  39. $ns duplex-link $n(0) $n(1) 1.5Mb 40ms DropTail
  40. $ns duplex-link $n(0) $n(2) 10Mb 20ms DropTail
  41. $ns duplex-link $n(0) $n(3) 10Mb 20ms DropTail
  42. $ns duplex-link $n(0) $n(4) 10Mb 20ms DropTail
  43. $ns duplex-link $n(0) $n(5) 10Mb 20ms DropTail
  44. $ns duplex-link $n(0) $n(6) 10Mb 20ms DropTail
  45. $ns duplex-link $n(1) $n(7) 10Mb 20ms DropTail
  46. $ns duplex-link $n(1) $n(8) 10Mb 20ms DropTail
  47. $ns duplex-link $n(1) $n(9) 10Mb 20ms DropTail
  48. $ns duplex-link $n(1) $n(10) 10Mb 20ms DropTail
  49. $ns duplex-link $n(1) $n(11) 10Mb 20ms DropTail
  50. $ns duplex-link-op $n(0) $n(1) orient left
  51. $ns duplex-link-op $n(0) $n(2) orient up
  52. $ns duplex-link-op $n(0) $n(3) orient right-up
  53. $ns duplex-link-op $n(0) $n(4) orient right
  54. $ns duplex-link-op $n(0) $n(5) orient right-down
  55. $ns duplex-link-op $n(0) $n(6) orient down
  56. $ns duplex-link-op $n(1) $n(7) orient up
  57. $ns duplex-link-op $n(1) $n(8) orient left-up
  58. $ns duplex-link-op $n(1) $n(9) orient left 
  59. $ns duplex-link-op $n(1) $n(10) orient left-down
  60. $ns duplex-link-op $n(1) $n(11) orient down
  61. }
  62. # end of create_topology