iPerf 是一款网络性能测试和网络检测工具。iPerf可以测试最大TCP和UDP带宽性能,具有多种参数和UDP特性,可以根据需要调整,可以报告带宽、延迟抖动和数据包丢失,一般来说内网采用iperf工具测试网络速度、性能用的比较多,多用于VPN...等这类内部网络检测。
iPerf命令安装使用方法:(以iperf3为例子)
对于windows版的iPerf,直接将解压出来的iperf.exe和cygwin1.dll复制到%systemroot%目录即可(也就是:C:\Windows\System32目录)
可以手动将这里两个文件复制粘贴到C:\Windows\System32,这样cmd可以直接打开iperf3,还不用加.exe后缀,也不用定位解压路径。
备注:若是没有解压到:C:\Windows\System32,而是解压至其他盘,则需要按照以下步骤先定位至iPerf 位于电脑上的真实路径才能操作。
打开cmd进入后,从c盘切入到d盘,再定位至iperf解压目录,执行。
C:\Users\USER>D: D:\>cd D:\iperf-3.1.3-win64\iperf-3.1.3-win64 D:\iperf-3.1.3-win64\iperf-3.1.3-win64>iperf3.exe -s
按照上述打开一个cmd,键入下面代码使其作为server
再按照上述的步骤打开一个cmd,键入下面代码使其作为client
D:\iperf-3.1.3-win64\iperf-3.1.3-win64>iperf3.exe -c 127.0.0.1
查看第一个创建的-s服务端
在命令提示符中输入iperf命令即可运行iPerf,使用命令:iPerf3 –help可以查看iperf的帮助
C:\Users\Administrator>iperf3 -help Usage: iperf [-s|-c host] [options] iperf [-h|--help] [-v|--version] Server or Client: -p, --port # server port to listen on/connect to -f, --format [kmgKMG] format to report: Kbits, Mbits, KBytes, MBytes -i, --interval # seconds between periodic bandwidth reports -F, --file name xmit/recv the specified file -B, --bind <host> bind to a specific interface -V, --verbose more detailed output -J, --json output in JSON format --logfile f send output to a log file -d, --debug emit debugging output -v, --version show version information and quit -h, --help show this message and quit Server specific: -s, --server run in server mode -D, --daemon run the server as a daemon -I, --pidfile file write PID file -1, --one-off handle one client connection then exit Client specific: -c, --client <host> run in client mode, connecting to <host> -u, --udp use UDP rather than TCP -b, --bandwidth #[KMG][/#] target bandwidth in bits/sec (0 for unlimited) (default 1 Mbit/sec for UDP, unlimited for TCP) (optional slash and packet count for burst mode) -t, --time # time in seconds to transmit for (default 10 secs) -n, --bytes #[KMG] number of bytes to transmit (instead of -t) -k, --blockcount #[KMG] number of blocks (packets) to transmit (instead of - t or -n) -l, --len #[KMG] length of buffer to read or write (default 128 KB for TCP, 8 KB for UDP) --cport <port> bind to a specific client port (TCP and UDP, default : ephemeral port) -P, --parallel # number of parallel client streams to run -R, --reverse run in reverse mode (server sends, client receives) -w, --window #[KMG] set window size / socket buffer size -M, --set-mss # set TCP/SCTP maximum segment size (MTU - 40 bytes) -N, --no-delay set TCP/SCTP no delay, disabling Nagle's Algorithm -4, --version4 only use IPv4 -6, --version6 only use IPv6 -S, --tos N set the IP 'type of service' -Z, --zerocopy use a 'zero copy' method of sending data -O, --omit N omit the first n seconds -T, --title str prefix every output line with this string --get-server-output get results from server --udp-counters-64bit use 64-bit counters in UDP test packets [KMG] indicates options that support a K/M/G suffix for kilo-, mega-, or giga- iperf3 homepage at: http://software.es.net/iperf/ Report bugs to: https://github.com/esnet/iperf
服务端启动(参数都一样):
iperf3 -s
(如果是linux系统直接下载好iperf3软件即可,如果是在Windows系统 需要在cmd命令行里先进入iperf3.exe程序所在的目录下)
客户端启动:
iperf3 -c 服务端ip -p 监听的端口号 -b 带宽 -i 时间间隔(单位秒) -t 持续时间(单位秒) -R(反向传输) -u(采用udp模式)
例:
iperf3 -u -c 192.168.9.3 -i 1 -t 60 -b 100M
以udp模式向客户端192.168.9.3发送100M带宽的数据,持续60秒,每秒发送一次报告。
温馨提示:iperf 3.1.3适用 Windows Vista x86/64bits to Windows 11 x86/64bits……系统版本