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

通讯编程

开发平台:

Visual C++

  1. #manytcp_trmodel.tcl
  2. # use of manytcp traffic model
  3. set ns [new Simulator]
  4. # for now we use manytcp topology (default option - n number of 
  5. # nodes attached on both sides of the bottle-neck link)
  6. # FUTUREWORK: Other option will include defining the bottle-neck link # and endpoints (set of nodes to be connected).
  7. # EX: set topo "-bottle_link_l $n(0) -bottle_link_r $n(1) 
  8. # -client-nodes-l $n(2),$n(4),$n(6) -client-nodes-r $n(3),$n(5),$n(7)"
  9. set seed 12345
  10. set params "-print-drop-rate 1 -debug 0 -trace-filename out"
  11. set p1 "-bottle-queue-length 50 -bottle-queue-method RED"
  12. set p2 "-client-arrival-rate 120 -bottle-bw 10Mb -ns-random-seed 
  13. $seed" 
  14. set p3 "-client-mouse-chance 90 -client-mouse-packets 10" 
  15. set p4 "-client-bw 100Mb -node-number 100 -client-reverse-chance 10"
  16. set p5 "initial-client-count 0"
  17. set p6 "duration 2 graph-results 1 graph-join-queueing 0 -graph-scale 2"
  18. set model [eval new TrafficGen/ManyTCP $params $p1 $p2 $p3 $p4 $p5 $p6]
  19. puts "Starting.."
  20. $ns at 0 "$model start" 
  21. # add other traffic/flows
  22. $ns run