iperf 測試網路效能

2021-09-27 04:59:42 字數 1183 閱讀 7702

iperf -c  ip  -u -m -t 60 -i 10 -b 1000m 

client connecting to 10.37.57.104, udp port 5001

sending 1470 byte datagrams, ipg target: 11.22 us (kalman adjust)

udp buffer size:  208 kbyte (default)

[  3] local 10.39.23.47 port 39241 connected with 10.37.57.104 port 5001

[ id] interval       transfer     bandwidth

[  3]  0.0-10.0 sec  1.22 gbytes  1.05 gbits/sec

[  3] 10.0-20.0 sec  1.22 gbytes  1.05 gbits/sec

[  3] 20.0-30.0 sec  1.22 gbytes  1.05 gbits/sec

[  3] 30.0-40.0 sec  1.22 gbytes  1.05 gbits/sec

[  3] 40.0-50.0 sec  1.22 gbytes  1.05 gbits/sec

[  3] 50.0-60.0 sec  1.22 gbytes  1.05 gbits/sec

[  3] warning: did not receive ack of last datagram after 10 tries.

[  3]  0.0-60.0 sec  7.32 gbytes  1.05 gbits/sec

[  3] sent 5349878 datagrams

iperf 用法

-c 以客戶端模式執行,並制定服務端的位址

-b 指定客戶端通過udp 協議傳送資訊的頻寬

-d 同時進行雙向傳輸測試

-n 指定傳輸的位元組數

-r 單獨進行雙向傳輸測試

-t 指定iperf測試的時間,預設10s 

-i 設定每次報告之間的時間間隔,單位為秒。

tcp 測試

iperf -c host -i 1 -w 1m  #hosts為ip 位址

udp 測試

iperf -u -c 10.2.1.2 -b 100m  -i 1  -w 1m  -t 60

iperf網路效能測試

ubuntu安裝iperf的方式為 sudo apt get install iperf centos的安裝方式為 sudo yum install iperf iperf的使用需要有乙個服務端,有乙個客戶端。在服務端執行 iperf s p 12345 i 1 m s 服務端 p 監聽埠12345...

使用iperf測試網路效能

最近在測試區域網下http服務效能,伺服器用的是萬兆網絡卡,但是吞吐量到達100m s就上不去了,懷疑和網路環境有關係,然後上網搜尋發現了乙個很好用的網路效能測試工具iperf,下面的引數可以用來測試網路頻寬。客戶端 iperf3 c 127.0.0.1 伺服器ip p 4 t 30 i 2 p 5...

網路效能測試工具 Iperf

iperf 是乙個網路效能測試工具。iperf可以測試tcp和udp頻寬質量。iperf可以測量最大tcp頻寬,具有多種引數和udp特性。iperf可以報告頻寬,延遲抖動和資料報丟失。iperf使用方法與引數說明 引數說明 s 以server模式啟動,eg iperf s c host以client...