Quick Linux Tip #34:
Try: iperf3 -c 192.168.1.100
Info: iperf3 measures real TCP/UDP throughput. Run iperf3 -s on the server and iperf3 -c <SERVER_IP> on the client.
Examples:
- $ iperf3 -s # Server mode (run first)
- $ iperf3 -c server -u -b 1G # UDP test at 1 Gbps
- $ iperf3 -c server -R # Reverse mode (test download speed)
Note: Install via apt install iperf3. Ensure port 5201 is open. A non-zero Retr column indicates packet loss/congestion.
Leave a Reply