Netcatファイル転送速度テスト
2312 ワード
- 1.*nix
- A.nc -v -v -l -n -p 22222 >/dev/null
- B.time yes|nc -v -v -n A_ip 22222 >/dev/null
- dd if=/dev/zero bs=1M count=1000 | nc A_ip 22222
-
- A.nc -n -v -l xxxx < testfile
- B.time nc -n -vv -w2 A_IP xxxx > testfile
-
- 2.*nix
- A.nc -l -p 77777 > /dev/null
- B.pv -b -r /dev/zero | nc 192.168.1.1 77777
-
- 3.for windows
- Win:nc -n -w2 -l -p 55555 > file
- Linux:time /usr/local/bin/nc -n 192.168.1.118 55555 < file
-
- :nc ,pv
-
- :
- http://www.linuxhomenetworking.com/forums/showthread.php/18736-Use-netcat-to-test-network-speed
-
- http://www.commandlinefu.com/commands/view/7712/live-netcat-network-throughput-test
本文は「Hacking時空を歩く」ブログから、転載お断り!