On this page you find all important commands for the CLI tool iperf3. If the
command you are looking for is missing please ask our AI.
iperf3
iperf3 is a command line tool commonly used for measuring network performance by generating TCP and UDP data streams. It is the successor to iperf and iperf2.
- Developed by the Internet2 Consortium, iperf3 offers a more modern and enhanced version of the original iperf tool.
- It is available for various operating systems, including Windows, Linux, macOS, and FreeBSD.
- iperf3 supports both client and server modes, allowing users to test network performance between two machines.
- The tool provides reliable measurements of network bandwidth, throughput, packet loss, latency, and jitter.
- It utilizes a client-server architecture, with the server sending data to the client, which then measures and reports the network performance metrics.
- iperf3 allows the user to specify various parameters, including the duration of the test, amount of data transferred, and the TCP/UDP settings.
- The tool supports IPv4 and IPv6, enabling network performance testing on different types of networks.
- It can simulate real-world network conditions by adjusting parameters such as the bandwidth, delay, and packet loss rate.
- iperf3 provides extensive reporting in various formats for easy interpretation and analysis of the test results.
- It is widely used by network administrators, system engineers, and researchers to evaluate, troubleshoot, and optimize network performance.
List of commands for iperf3:
-
iperf3:tldr:0765a iperf3: Run iperf3 in multiple parallel streams.$ iperf3 -c ${server} -P ${streams}try on your machineexplain this command
-
iperf3:tldr:081e3 iperf3: Reverse direction of the test. Server sends data to the client.$ iperf3 -c ${server} -Rtry on your machineexplain this command
-
iperf3:tldr:19cda iperf3: Start bandwidth test.$ iperf3 -c ${server}try on your machineexplain this command
-
iperf3:tldr:efb73 iperf3: Run iperf3 as a server.$ iperf3 -stry on your machineexplain this command
-
iperf3:tldr:f7680 iperf3: Run an iperf3 server on a specific port.$ iperf3 -s -p ${port}try on your machineexplain this command