Netcat 传文件速度测试

  
  
  
  
  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时空” 博客,谢绝转载!

你可能感兴趣的:(nc)