linux
iPerf
網路測速
指令式的網路速度測試工具
支援
Debian / Ubuntu Linux
sudo apt-get install iperf3
macOS Homebrew
brew install iperf3
備註:
iperf3安装配置使用踩坑记录
需要放在 C:\Windows\System32 sudo 權限
前置作業:需要 server 及 client 端
公用伺服器
iperf3 -s -p 5205
Serve 端模式 預設監聽 5201 port
lsof -i | grep iperf3
確認是否真的有開 Port
Client 端模式
輸入 Server IP 位址
伺服器在本地可輸入 localhost / 127.0.0.1
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 # server port to listen on/connect to
-f, --format [kmgtKMGT] format to report: Kbits, Mbits, Gbits, Tbits
-i, --interval # seconds between periodic throughput reports
-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 # idle timeout for receiving data (default 120000 ms)
-d, --debug[=#] emit debugging output
(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 #[KMG][/#] server's total bit rate limit (default 0 = no limit)
(optional slash and number of secs interval for averaging
total data rate. Default is 5 seconds)
--idle-timeout # restart idle server after # seconds in case it
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 # timeout for control connection setup (ms)
-b, --bitrate #[KMG][/#] target bitrate in bits/sec (0 for unlimited)
(default 1 Mbit/sec for UDP, unlimited for TCP)
(optional slash and packet count for burst mode)
--pacing-timer #[KMG] set the timing for pacing, in microseconds (default 1000)
-t, --time # time in seconds to transmit for (default 10 secs)
-n, --bytes #[KMG] number of bytes to transmit (instead of -t)
-k, --blockcount #[KMG] number of blocks (packets) to transmit (instead of -t or -n)
-l, --length #[KMG] length of buffer to read or write
(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 # number of parallel client streams to run
-R, --reverse run in reverse mode (server sends, client receives)
--bidir run in bidirectional mode.
Client and server send and receive data.
-w, --window #[KMG] set send/receive socket buffer sizes
(indirectly sets TCP window size)
-M, --set-mss # set TCP/SCTP maximum segment size (MTU - 40 bytes)
-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
for i in 1 2 4 8; do iperf3 -c 192.168.1.1 -t 30 -Z -O 3 -P $i | tail -n 3 | sed -nE "s/.* ([0-9.]+ [M|G|K]bits.sec).*/P=$i \1/p"; done
sed (stream editor) 可以分析並做篩選處理輸出資料,
參考資料:
https://dywang.csie.cyut.edu.tw/dywang/linuxProgram/linuxProgram.html
-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問題
廣域網絡 (WAN) 與局部區域網絡 (LAN)
看防火牆狀態 ubuntu / sudo ufw status
設定封包過濾規則 192.168.1.1/16
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/