
iperf
List of commands for iperf:
-
iperf:tldr:8aea4 iperf: Run on server using UDP mode and set server port to listen on 5001.$ iperf -u -s -p ${5001}try on your machineexplain this command
-
iperf:tldr:94882 iperf: Run on client with 5 parallel threads.$ iperf -c ${server_address} -P ${5}try on your machineexplain this command
-
iperf:tldr:97a8c iperf: Run on client using UDP mode.$ iperf -u -c ${server_address} -p ${5001}try on your machineexplain this command
-
iperf:tldr:b0062 iperf: Run on client.$ iperf -c ${server_address}try on your machineexplain this command
-
iperf:tldr:dc60d iperf: Run on client every 2 seconds.$ iperf -c ${server_address} -i ${2}try on your machineexplain this command