fork download
  1. #Create a simulator object
  2. set ns [new Simulator]
  3.  
  4. #Define different colors for data flows (for NAM)
  5. $ns color 1 Blue
  6. $ns color 2 Red
  7.  
  8. #Open the NAM trace file
  9. set nf [open out.nam w]
  10. $ns namtrace-all $nf
  11.  
  12. #Define a 'finish' procedure
  13. proc finish {} {
  14. global ns nf
  15. $ns flush-trace
  16. #Close the NAM trace file
  17. close $nf
  18. #Execute NAM on the trace file
  19. exec nam out.nam &
  20. exit 0
  21. }
  22.  
  23. #Create four nodes
  24. set n0 [$ns node]
  25. set n1 [$ns node]
  26. set n2 [$ns node]
  27. set n3 [$ns node]
  28.  
  29. #Create links between the nodes
  30. $ns duplex-link $n0 $n2 2Mb 10ms DropTail
  31. $ns duplex-link $n1 $n2 2Mb 10ms DropTail
  32. $ns duplex-link $n2 $n3 1.7Mb 20ms DropTail
  33.  
  34. #Set Queue Size of link (n2-n3) to 10
  35. $ns queue-limit $n2 $n3 10
  36.  
  37. #Give node position (for NAM)
  38. $ns duplex-link-op $n0 $n2 orient right-down
  39. $ns duplex-link-op $n1 $n2 orient right-up
  40. $ns duplex-link-op $n2 $n3 orient right
  41.  
  42. #Monitor the queue for link (n2-n3). (for NAM)
  43. $ns duplex-link-op $n2 $n3 queuePos 0.5
  44.  
  45.  
  46. #Setup a TCP connection
  47. set tcp [new Agent/TCP]
  48. $tcp set class_ 2
  49. $ns attach-agent $n0 $tcp
  50. set sink [new Agent/TCPSink]
  51. $ns attach-agent $n3 $sink
  52. $ns connect $tcp $sink
  53. $tcp set fid_ 1
  54.  
  55. #Setup a FTP over TCP connection
  56. set ftp [new Application/FTP]
  57. $ftp attach-agent $tcp
  58. $ftp set type_ FTP
  59.  
  60.  
  61. #Setup a UDP connection
  62. set udp [new Agent/UDP]
  63. $ns attach-agent $n1 $udp
  64. set null [new Agent/Null]
  65. $ns attach-agent $n3 $null
  66. $ns connect $udp $null
  67. $udp set fid_ 2
  68.  
  69. #Setup a CBR over UDP connection
  70. set cbr [new Application/Traffic/CBR]
  71. $cbr attach-agent $udp
  72. $cbr set type_ CBR
  73. $cbr set packet_size_ 1000
  74. $cbr set rate_ 1mb
  75. $cbr set random_ false
  76.  
  77.  
  78. #Schedule events for the CBR and FTP agents
  79. $ns at 0.1 "$cbr start"
  80. $ns at 1.0 "$ftp start"
  81. $ns at 4.0 "$ftp stop"
  82. $ns at 4.5 "$cbr stop"
  83.  
  84. #Detach tcp and sink agents (not really necessary)
  85. $ns at 4.5 "$ns detach-agent $n0 $tcp ; $ns detach-agent $n3 $sink"
  86.  
  87. #Call the finish procedure after 5 seconds of simulation time
  88. $ns at 5.0 "finish"
  89.  
  90. #Print CBR packet size and interval
  91. puts "CBR packet size = [$cbr set packet_size_]"
  92. puts "CBR interval = [$cbr set interval_]"
  93.  
  94. #Run the simulation
  95. $ns run
  96.  
  97.  
Success #stdin #stdout #stderr 0.01s 5256KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
./prog.sh: line 5: color: command not found
./prog.sh: line 6: color: command not found
./prog.sh: line 10: namtrace-all: command not found
./prog.sh: line 13: proc: command not found
./prog.sh: line 14: global: command not found
./prog.sh: line 15: flush-trace: command not found
./prog.sh: line 17: close: command not found
./prog.sh: line 19: exec: nam: not found