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

通讯编程

开发平台:

Visual C++

  1. # Contributed by Rishi Bhargava <rishi_bhargava@yahoo.com> May, 2001.
  2. # Example script for source-routing; also see ~ns/src_rtg/README.txt
  3. #
  4. #Create a simulator object
  5. set ns [new Simulator] 
  6. # enable source routing
  7. $ns src_rting 1
  8. $ns color 1 Blue
  9. $ns color 2 Red
  10. #Open the nam trace file
  11. set nf [open out.tr w]
  12. $ns trace-all $nf
  13. set f [open out.nam w]
  14. $ns namtrace-all $f
  15. #Create four nodes
  16. set n0 [$ns node]
  17. set n1 [$ns node]
  18. set n2 [$ns node]
  19. set n3 [$ns node]
  20. set n4 [$ns node]
  21. #Create links between the nodes
  22. $ns duplex-link $n0 $n2 1Mb 10ms DropTail
  23. $ns duplex-link $n1 $n2 1Mb 10ms DropTail
  24. $ns duplex-link $n3 $n2 1Mb 10ms DropTail
  25. $ns duplex-link $n2 $n4 1Mb 10ms DropTail
  26. $ns duplex-link $n4 $n3 1Mb 10ms DropTail
  27. $ns duplex-link $n1 $n3 1Mb 10ms DropTail
  28. #Create a TCP agent and attach it to node n0
  29. set cbr0 [new Agent/TCP]
  30. $ns attach-agent $n0 $cbr0
  31. $cbr0 set fid_ 0
  32. #Create a TCP agent and attach it to node n1
  33. set cbr1 [new Agent/TCP]
  34. $ns attach-agent $n3 $cbr1
  35. $cbr1 set fid_ 1
  36. $cbr0 target [$n0 set src_agent_]
  37. $cbr1 target [$n3 set src_agent_]
  38. set temp [$n0 set src_agent_]
  39. $temp install_connection [$cbr0 set fid_] 0 1 0 2 4 3 1
  40. set temp [$n3 set src_agent_]
  41. $temp install_connection [$cbr1 set fid_] 3 4 3 2 4 
  42. set null0 [new Agent/TCPSink]
  43. set null1 [new Agent/TCPSink]
  44. $ns attach-agent $n1 $null0
  45. $ns attach-agent $n4 $null1
  46. $ns connect $cbr0 $null0  
  47. $ns connect $cbr1 $null1
  48. set ftp1 [$cbr0 attach-source FTP]
  49. set ftp2 [$cbr1 attach-source FTP]
  50. $ns at 0.5 "$ftp1 start"
  51. $ns at 0.5 "$ftp2 start"
  52. $ns at 5.0 "$ftp1 stop"
  53. $ns at 10.5 "$ftp2 stop"
  54. $ns at 11.0 "$ns halt"
  55. $ns run