iperf3 安裝/執行/參數 學習筆記
linux
iPerf
網路測速
指令式的網路速度測試工具
支援
- IPv4 . IPv6
- 常見的 TCP、UDP 傳輸協定
- Windows / Mac OS X / Linux / 手機平台
官方網站/參數使用文件:
下載位置:
Debian / Ubuntu Linux
sudo apt-get install iperf3
macOS Homebrew
brew install iperf3
Window
https://iperf.fr/iperf-download.php
備註:
iperf3安装配置使用踩坑记录
需要放在 C:\Windows\System32 sudo 權限
參數設定
前置作業:需要 server 及 client 端
公用伺服器
Server 端
iperf3 -s
iperf3 -s -p 5205
Serve 端模式 預設監聽 5201 port

lsof -i | grep iperf3
確認是否真的有開 Port

Client 端
iperf3 -c [Server IP]
Client 端模式
輸入 Server IP 位址
伺服器在本地可輸入 localhost / 127.0.0.1
iperf3 -c localhost -i 2 -t 30 –logfile output.log
- -i 輸出數據間隔時間
- -t 監控數據持續時間
- -w 測試傳輪檔案大小
- -p 更換預設Port號
- –logfile 輸出數據結果
- -J file.log 指定JSON格式
- -R 反轉,下載測速
iperf3 使用語法總覽
iperf命令 中文說明
https://a42033.gitbooks.io/system/content/system/network/iperf.html
iperf -help
Usage: iperf3 [-s|-c host] [options]
iperf3 [-h|--help] [-v|--version]
Server or Client:
-p, --port
-f, --format [kmgtKMGT] format to report: Kbits, Mbits, Gbits, Tbits
-i, --interval
-I, --pidfile file write PID file
-F, --file name xmit/recv the specified file
-B, --bind <host> bind to the interface associated with the address <host>
-V, --verbose more detailed output
-J, --json output in JSON format
--logfile f send output to a log file
--forceflush force flushing output at every interval
--timestamps<=format> emit a timestamp at the start of each output line
(optional "=" and format string as per strftime(3))
--rcv-timeout
-d, --debug[=
(optional optional "=" and debug level: 1-4. Default is 4 - all messages)
-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
-1, --one-off handle one client connection then exit
--server-bitrate-limit
(optional slash and number of secs interval for averaging
total data rate. Default is 5 seconds)
--idle-timeout
got stuck (default - no timeout)
--rsa-private-key-path path to the RSA private key used to decrypt
authentication credentials
--authorized-users-path path to the configuration file containing user
credentials
--time-skew-threshold time skew threshold (in seconds) between the server
and client during the authentication process
Client specific:
-c, --client <host>[%<dev>] run in client mode, connecting to <host>
(option <dev> equivalent to `--bind-dev <dev>`)
-u, --udp use UDP rather than TCP
--connect-timeout
-b, --bitrate
(default 1 Mbit/sec for UDP, unlimited for TCP)
(optional slash and packet count for burst mode)
--pacing-timer
-t, --time
-n, --bytes
-k, --blockcount
-l, --length
(default 128 KB for TCP, dynamic or 1460 for UDP)
--cport <port> bind to a specific client port (TCP and UDP, default: ephemeral port)
-P, --parallel
-R, --reverse run in reverse mode (server sends, client receives)
--bidir run in bidirectional mode.
Client and server send and receive data.
-w, --window
(indirectly sets TCP window size)
-M, --set-mss
-N, --no-delay set TCP/SCTP no delay, disabling Nagles Algorithm
-4, --version4 only use IPv4
-6, --version6 only use IPv6
-S, --tos N set the IP type of service, 0-255.
The usual prefixes for octal and hex can be used,
i.e. 52, 064 and 0x34 all specify the same value.
--dscp N or --dscp val set the IP dscp value, either 0-63 or symbolic.
Numeric values can be specified in decimal,
octal and hex (see --tos above).
-Z, --zerocopy use a 'zero copy' method of sending data
-O, --omit N perform pre-test for N seconds and omit the pre-test statistics
-T, --title str prefix every output line with this string
--extra-data str data string to include in client and server JSON
--get-server-output get results from server
--udp-counters-64bit use 64-bit counters in UDP test packets
--repeating-payload use repeating pattern in payload, instead of
randomized payload (like in iperf2)
--dont-fragment set IPv4 Dont Fragment flag
--username username for authentication
--rsa-public-key-path path to the RSA public key used to encrypt
authentication credentials
[KMG] indicates options that support a K/M/G suffix for kilo-, mega-, or giga-
iperf3 homepage at: https://software.es.net/iperf/
Report bugs to: https://github.com/esnet/iperf
參考資料:
解釋原理/緣由:
Window:
純指令教學:
Linux
MacOS
實際案例
Ysuper Liang:WinSCP 檔案傳輸速度異常,確認網速是否正常
https://hackmd.io/@-HgNk7Y5R_G72ULgE21oOA/BJDhzCaLs
linux iperf3 -c 211.73.xx.xx -i 3 -t 30 -P 4
進階使用
sed (stream editor) 可以分析並做篩選處理輸出資料,
參考資料:
https://dywang.csie.cyut.edu.tw/dywang/linuxProgram/linuxProgram.html
進階學習
https://access.redhat.com/documentation/zh-cn/red_hat_enterprise_linux/8/html/monitoring_and_managing_system_status_and_performance/tuning-tcp-connections-for-high-throughput_tuning-the-network-performance
-Z
zerocopy:實現零複製方法,而不使用write ()系統調用。只有在您要模擬具有零複製的應用程序或在單一流量上達到40 Gbps時,才需要此選項。
Zero Copy 詳細說明:
https://hackmd.io/@hpc-ai/HPCNotes/%2FHjAXXQSWRB-3jJm7GyEjAA%3Fview#Zero-Copy
https://www.cnblogs.com/chengd/p/7572066.html
-O
忽略前幾秒冷啟動時間
備註筆記
第十二章、學習 Shell Scripts
https://linux.vbird.org/linux_basic/centos7/0340bashshell-scripts.php#for
https://shengyu7697.github.io/shell-script-for/
https://medium.com/程式裡有蟲/mac-os-設定環境變數-2351da88523f
Linux 命令手册、详解、学习
https://wangchujiang.com/linux-command/
除錯判斷:
區網/還是FW問題
Linux 查看端口占用情况
lsof -i:portn_umber 查看佔用 port
netstat -ntlp //查看目前所有 tcp port
nmap localhost
用 nmap 檢查本機與遠端電腦上開啟的 Port
Netcat(Linux nc 指令)網路管理者工具實用範例
什麼是 WAN?| WAN 與 LAN
廣域網路 (WAN) 是任何延伸至大型地理區域的網路,通常會連接多個區域網路 (LAN)。
https://www.cloudflare.com/zh-tw/learning/network-layer/what-is-a-wan/