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

通讯编程

开发平台:

Visual C++

  1. set ns [new Simulator]
  2. $ns color 0 blue
  3. $ns color 1 red
  4. $ns color 2 white
  5. set n0 [$ns node]
  6. set n1 [$ns node]
  7. set n2 [$ns node]
  8. set n3 [$ns node]
  9. set f [open out.tr w]
  10. $ns trace-all $f
  11. set nf [open out.nam w]
  12. $ns namtrace-all $nf
  13. $ns duplex-link $n0 $n2 5Mb 2ms DropTail
  14. $ns duplex-link $n1 $n2 5Mb 2ms DropTail
  15. $ns duplex-link $n2 $n3 1.5Mb 10ms DropTail
  16. $ns duplex-link-op $n0 $n2 orient right-up
  17. $ns duplex-link-op $n1 $n2 orient right-down
  18. $ns duplex-link-op $n2 $n3 orient right
  19. $ns duplex-link-op $n2 $n3 queuePos 0.5
  20. set udp0 [new Agent/UDP]
  21. $ns attach-agent $n0 $udp0
  22. set cbr0 [new Application/Traffic/CBR]
  23. $cbr0 attach-agent $udp0
  24. set udp1 [new Agent/UDP]
  25. $ns attach-agent $n3 $udp1
  26. $udp1 set class_ 1
  27. set cbr1 [new Application/Traffic/CBR]
  28. $cbr1 attach-agent $udp1
  29. set null0 [new Agent/Null]
  30. $ns attach-agent $n3 $null0
  31. set null1 [new Agent/Null]
  32. $ns attach-agent $n1 $null1
  33. $ns connect $udp0 $null0
  34. $ns connect $udp1 $null1
  35. $ns at 1.0 "$cbr0 start"
  36. $ns at 1.1 "$cbr1 start"
  37. set tcp [new Agent/TCP]
  38. $tcp set class_ 2
  39. set sink [new Agent/TCPSink]
  40. $ns attach-agent $n0 $tcp
  41. $ns attach-agent $n3 $sink
  42. $ns connect $tcp $sink
  43. set ftp [new Application/FTP]
  44. $ftp attach-agent $tcp
  45. $ns at 1.2 "$ftp start"
  46. $ns at 1.35 "$ns detach-agent $n0 $tcp ; $ns detach-agent $n3 $sink"
  47. puts [$cbr0 set packetSize_]
  48. puts [$cbr0 set interval_]
  49. $ns at 3.0 "finish"
  50. proc finish {} {
  51. global ns f nf
  52. $ns flush-trace
  53. close $f
  54. close $nf
  55. puts "running nam..."
  56. exec nam out.nam &
  57. exit 0
  58. }
  59. $ns run