Skip to content

Instantly share code, notes, and snippets.

@ashrithr
Created September 30, 2013 22:54
Show Gist options
  • Select an option

  • Save ashrithr/6771490 to your computer and use it in GitHub Desktop.

Select an option

Save ashrithr/6771490 to your computer and use it in GitHub Desktop.
iperf usage

Start server on one machine using:

iperf -s -i 1
  • -i specifies the interval at which the output is specified
  • -s specified to start server

Start client on another machine using:

iperf -c <ip_address_of_server> -i 1 -t 60
  • -c specifies to start client instance
  • -t time for which to run the test for
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment