Skip to content

Instantly share code, notes, and snippets.

@Morozov-5F
Created October 18, 2016 21:23
Show Gist options
  • Save Morozov-5F/eb5547522671075627993dc8ca9d0856 to your computer and use it in GitHub Desktop.
Save Morozov-5F/eb5547522671075627993dc8ca9d0856 to your computer and use it in GitHub Desktop.
Commands for testing in iperf
Test: UDP
Client:
iperf -c 192.168.{pair}.{client} -B 192.168.{pair}.{server} -f m -n {size}M -u -b1000M -i 10 | tee {report_name}
Server
iperf -s -B 192.168.{pair}.{server} -n {size}M -u -i 10 | tee {report_name}
Test: TCP
Client:
iperf -c 192.168.{pair}.{client} -B 192.168.{pair}.{server} -f m -n {size}M -i 10 | tee {report_name}
Server
iperf -s -B 192.168.{pair}.{server} -f m -n {size}M -i 10 | tee {report_name}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment