对于内网带宽大于3Gbps的机器,使用iperf3压测时,可以多开几个进程,否则可能压不到上限(对带宽要求最高的是)
 南窗  分类:IT技术  人气:113  回帖:0  发布于1年前 收藏

云服务器大内网带宽的机型不少,对于内网带宽大于3Gbps的机器,使用iperf3压测时,可以多开几个进程,否则可能压不到上限。

一个iperf3进程大概能压3Gbps-4Gbps,具体开几个进程,用带宽除以3,比如是29Gbps内网带宽的S5.21XLARGE320,需要开10个iperf3进程。

下面以S5.12XLARGE96或S5.12XLARGE192为例(12Gbps内网带宽),大概需要开4个iperf3进程才可以压到上限。

S端:开4个窗口分别执行1句命令(几个进程就开几个窗口,注意端口随变)

iperf3 -s -p 5001 -i 2
iperf3 -s -p 5002 -i 2
iperf3 -s -p 5003 -i 2
iperf3 -s -p 5004 -i 2

C端:准备5个文件(几个进程就准备几个.vbs,注意路径、IP、端口随变)

vbs-c.bat

wscript.exe /nologo C:\Users\Administrator\Downloads\iperf3\vbs-c1.vbs
wscript.exe /nologo C:\Users\Administrator\Downloads\iperf3\vbs-c2.vbs
wscript.exe /nologo C:\Users\Administrator\Downloads\iperf3\vbs-c3.vbs
wscript.exe /nologo C:\Users\Administrator\Downloads\iperf3\vbs-c4.vbs

vbs-c1.vbs

CreateObject("WScript.Shell").Run "iperf3 -c 172.21.67.247 -P 8 -t 60 -i 2 -p 5001 -w 1M",0

vbs-c2.vbs

CreateObject("WScript.Shell").Run "iperf3 -c 172.21.67.247 -P 8 -t 60 -i 2 -p 5002 -w 1M",0

vbs-c3.vbs

CreateObject("WScript.Shell").Run "iperf3 -c 172.21.67.247 -P 8 -t 60 -i 2 -p 5003 -w 1M",0

vbs-c4.vbs

CreateObject("WScript.Shell").Run "iperf3 -c 172.21.67.247 -P 8 -t 60 -i 2 -p 5004 -w 1M",0

讨论这个帖子(0)垃圾回帖将一律封号处理……