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

通讯编程

开发平台:

Visual C++

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