Netcatファイル転送速度テスト

2312 ワード


  
  
  
  
  1. 1.*nix 
  2. A.nc -v -v -l -n -p 22222 >/dev/null  
  3. B.time yes|nc -v -v -n A_ip 22222 >/dev/null  
  4. dd if=/dev/zero bs=1M count=1000 | nc A_ip 22222  
  5.  
  6. A.nc -n -v -l xxxx < testfile  
  7. B.time nc -n -vv -w2 A_IP xxxx > testfile  
  8.  
  9. 2.*nix  
  10. A.nc -l -p 77777 > /dev/null  
  11. B.pv -b -r /dev/zero | nc 192.168.1.1 77777 
  12.  
  13. 3.for windows 
  14. Win:nc -n -w2 -l -p 55555 > file 
  15. Linux:time /usr/local/bin/nc -n 192.168.1.118 55555 < file 
  16.  
  17. :nc ,pv  
  18.  
  19. : 
  20. http://www.linuxhomenetworking.com/forums/showthread.php/18736-Use-netcat-to-test-network-speed  
  21.        
  22. http://www.commandlinefu.com/commands/view/7712/live-netcat-network-throughput-test  

 
本文は「Hacking時空を歩く」ブログから、転載お断り!