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

通讯编程

开发平台:

Visual C++

  1. set ns [new Simulator]
  2. $ns color 1000 blue
  3. $ns color 1001 red
  4. $ns color 1002 yellow
  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. $udp0 set fid_ 1000
  22. $ns attach-agent $n0 $udp0
  23. $udp0 set class_ 1000
  24. set cbr0 [new Application/Traffic/CBR]
  25. $cbr0 attach-agent $udp0
  26. set udp1 [new Agent/UDP]
  27. $udp1 set fid_ 1001
  28. $ns attach-agent $n3 $udp1
  29. $udp1 set class_ 1001
  30. set cbr1 [new Application/Traffic/CBR]
  31. $cbr1 attach-agent $udp1
  32. set null0 [new Agent/Null]
  33. $ns attach-agent $n3 $null0
  34. set null1 [new Agent/Null]
  35. $ns attach-agent $n1 $null1
  36. $ns connect $udp0 $null0
  37. $ns connect $udp1 $null1
  38. $ns at 1.0 "$cbr0 start"
  39. $ns at 1.1 "$cbr1 start"
  40. set tcp [new Agent/TCP]
  41. $tcp set fid_ 1002
  42. $tcp set class_ 1002
  43. set sink [new Agent/TCPSink]
  44. $ns attach-agent $n0 $tcp
  45. $ns attach-agent $n3 $sink
  46. $ns connect $tcp $sink
  47. set ftp [new Application/FTP]
  48. $ftp attach-agent $tcp
  49. $ns at 1.2 "$ftp start"
  50. $ns at 1.35 "$ns detach-agent $n0 $tcp ; $ns detach-agent $n3 $sink"
  51. puts [$cbr0 set packetSize_]
  52. puts [$cbr0 set interval_]
  53. $ns at 3.0 "finish"
  54. proc finish {} {
  55. global ns f nf
  56. $ns flush-trace
  57. close $f
  58. close $nf
  59. puts "running nam..."
  60. exec nam out.nam &
  61. exit 0
  62. }
  63. $ns run