diff options
author | Jeff Lane <jeffrey.lane@canonical.com> | 2016-10-13 15:46:24 -0400 |
---|---|---|
committer | Jeff Lane <jeffrey.lane@canonical.com> | 2016-10-13 15:46:24 -0400 |
commit | 51d04acb68ee9e866c9c4461a9ff7e364820d606 (patch) | |
tree | b2daec8e44b5579a228f7101af770bc462ee29bc | |
parent | ced1c5c8a681e8c24969ea2ff07a0d992fa868c1 (diff) |
Improve help text to notify users of iperf3 option LP: #1614649
-rwxr-xr-x | bin/network | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/bin/network b/bin/network index 190b68f..a4d0ed2 100755 --- a/bin/network +++ b/bin/network @@ -537,6 +537,11 @@ network test -i eth0 -t iperf --target 192.168.0.1 NOTE: The iperf test requires an iperf server running on the same network segment that the test machine is running on. +Also, you can use iperf3 rather than iperf2 by specifying the -3 or --iperf3 +option like so: + +network test -i eth0 -t iperf -3 --target 192.168.0.1 + Configuration ============= @@ -585,7 +590,9 @@ TEST_TARGET_IPERF = iperf-server.example.com choices=("iperf", "stress"), default="iperf", help=("[iperf *Default*]")) test_parser.add_argument( - '-3', '--iperf3', default=False, action="store_true") + '-3', '--iperf3', default=False, action="store_true", + help=("Tells the script to use iperf3 for testing, rather than the " + "default of iperf2")) test_parser.add_argument('--target', type=str) action.add_argument( '--datasize', type=str, |