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

通讯编程

开发平台:

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. # updated to use -multicast on by Lloyd Wood
  19. set ns [new Simulator -multicast on]
  20. set n0 [$ns node]
  21. set n1 [$ns node]
  22. $ns color 0 blue
  23. $ns color 1 red
  24. $ns color 2 white
  25. set f [open out.tr w]
  26. $ns trace-all $f
  27. set nf [open out.nam w]
  28. $ns namtrace-all $nf
  29. $ns duplex-link $n0 $n1 1.5Mb 10ms DropTail
  30. $ns queue-limit $n0 $n1 2
  31. $ns duplex-link-op $n0 $n1 orient right
  32. $ns duplex-link-op $n0 $n1 queuePos 0.5
  33. set udp0 [new Agent/UDP]
  34. $ns attach-agent $n0 $udp0
  35. set cbr0 [new Application/Traffic/CBR]
  36. $cbr0 set interval_ 1ms
  37. $cbr0 attach-agent $udp0
  38. set null1 [new Agent/Null]
  39. $ns attach-agent $n1 $null1
  40. $ns connect $udp0 $null1
  41. $ns rtproto DV ;# or use Session
  42. $ns rtmodel Deterministic {} $n0
  43. [$ns link $n0 $n1] trace-dynamics $ns stdout
  44. proc finish {} {
  45. global ns f nf
  46. $ns flush-trace
  47. close $f
  48. close $nf
  49. #XXX
  50. puts "running nam..."
  51. exec nam -f dynamic-nam.conf out.nam &
  52. exit 0
  53. }
  54. $ns at 1.0 "$cbr0 start"
  55. $ns at 8.0 "finish"
  56. puts [$cbr0 set packetSize_]
  57. puts [$cbr0 set interval_]
  58. $ns run