iperf測試帶寬
官方網站:
跨平臺多線程的帶寬測試工具
一.安裝
yum -y install gcc gcc-c++
tar -xvf iperf-3.0.11-source.tar.gz -C /usr/local/src
cd /usr/local/src/iperf-3.0.11-source
./configure && make -j4 && make install
二.測試
192.168.192.103(
服務端)
在點對點測試中,服務端即被測試帶寬的主機
經常使用選項:
-s, --server
run in server mode
-D, --daemon
run the server as a daemon
-c, --client
run in client mode, connecting to
-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
-J, --json
output in JSON format
輸入
iperf3 -c 192.168.192.103 -p12345 -i 1 後以server模式運行進入監聽狀態,也能夠經過-D參數做爲daemon後臺運行
192.168.192.31(
客戶端)
以client模式運行,鏈接到指定的服務器及端口後就開始了測試
iperf3 -c 192.168.192.103 -p12345 -i 1 -t 10
說明:由於測的是虛擬機內網,因此看到帶寬爲3.11Gb/s,實際工做請以屢次測試結果爲參考