云服务器大内网带宽的机型不少,对于内网带宽大于3Gbps的机器,使用iperf3压测时,可以多开几个进程,否则可能压不到上限。
一个iperf3进程大概能压3Gbps-4Gbps,具体开几个进程,用带宽除以3,比如是29Gbps内网带宽的S5.21XLARGE320,需要开10个iperf3进程。
下面以S5.12XLARGE96或S5.12XLARGE192为例(12Gbps内网带宽),大概需要开4个iperf3进程才可以压到上限。
iperf3 -s -p 5001 -i 2
iperf3 -s -p 5002 -i 2
iperf3 -s -p 5003 -i 2
iperf3 -s -p 5004 -i 2
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