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

通讯编程

开发平台:

Visual C++

  1. #! /bin/csh
  2. rm -f data* flows*
  3. rm -f multi/flows* multi/tmp* multi/dropRate* multi/data*
  4. set t1=500
  5. foreach ftype ( cbr tcp ) 
  6. echo "Doing flow type $ftype"
  7. foreach links ( 1 2 3 4 5 )
  8. echo "Doing links ${links}"
  9. ns red-pd.tcl multi netMulti Multi enable 0 links $links ftype $ftype time $t1 
  10. mv multi.netMulti.Multi.0.flows flows0.${ftype}-${links}
  11. ns red-pd.tcl multi netMulti Multi links $links ftype $ftype time $t1 
  12. mv multi.netMulti.Multi.1.flows flows1.${ftype}-${links}
  13. end
  14. multi/multi.pl flows0.${ftype}- $t1 0.${ftype}
  15. multi/multi.pl flows1.${ftype}- $t1 1.${ftype}
  16. end
  17. mv flows* data* multi
  18. cd multi
  19. gnuplot multi.gp
  20. gv multi.ps &
  21. cd ..