virtual-classifier.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: 2000/09/14 18:19:26 $
  19. #
  20. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/ex/virtual-classifier.tcl,v 1.8 2000/09/14 18:19:26 haoboy Exp $ (USC/ISI)
  21. #
  22. # An example script using virtual classifier
  23. #
  24. set ns [new Simulator]
  25. Node enable-module VC
  26. $ns color 0 blue
  27. $ns color 1 red
  28. $ns color 2 white
  29. set n0 [$ns node]
  30. set n1 [$ns node]
  31. set n2 [$ns node]
  32. set n3 [$ns node]
  33. set f [open out.tr w]
  34. $ns trace-all $f
  35. set nf [open out.nam w]
  36. $ns namtrace-all $nf
  37. $ns duplex-link $n0 $n2 5Mb 2ms DropTail
  38. $ns duplex-link $n1 $n2 5Mb 2ms DropTail
  39. $ns duplex-link $n2 $n3 1.5Mb 10ms DropTail
  40. $ns duplex-link-op $n0 $n2 orient right-up
  41. $ns duplex-link-op $n1 $n2 orient right-down
  42. $ns duplex-link-op $n2 $n3 orient right
  43. $ns duplex-link-op $n2 $n3 queuePos 0.5
  44. set udp0 [new Agent/UDP]
  45. $ns attach-agent $n0 $udp0
  46. set cbr0 [new Application/Traffic/CBR]
  47. $cbr0 attach-agent $udp0
  48. set udp1 [new Agent/UDP]
  49. $ns attach-agent $n3 $udp1
  50. $udp1 set class_ 1
  51. set cbr1 [new Application/Traffic/CBR]
  52. $cbr1 attach-agent $udp1
  53. set null0 [new Agent/Null]
  54. $ns attach-agent $n3 $null0
  55. set null1 [new Agent/Null]
  56. $ns attach-agent $n1 $null1
  57. $ns connect $udp0 $null0
  58. $ns connect $udp1 $null1
  59. $ns at 1.0 "$cbr0 start"
  60. $ns at 1.1 "$cbr1 start"
  61. set tcp [new Agent/TCP]
  62. $tcp set class_ 2
  63. set sink [new Agent/TCPSink]
  64. $ns attach-agent $n0 $tcp
  65. $ns attach-agent $n3 $sink
  66. $ns connect $tcp $sink
  67. set ftp [new Application/FTP]
  68. $ftp attach-agent $tcp
  69. $ns at 1.2 "$ftp start"
  70. $ns at 1.35 "$ns detach-agent $n0 $tcp ; $ns detach-agent $n3 $sink"
  71. puts [$cbr0 set packetSize_]
  72. puts [$cbr0 set interval_]
  73. $ns at 3.0 "finish"
  74. proc finish {} {
  75. global ns f nf
  76. $ns flush-trace
  77. close $f
  78. close $nf
  79. puts "running nam..."
  80. exec nam out.nam &
  81. exit 0
  82. }
  83. $ns run