This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
test -z "${1}" && { printf "Must specify iperf3 server address as first argument."; exit 1; } | |
test -z "${2}" && { printf "Must specify iperf3 server network namespace as second argument."; exit 1; } | |
HOST="${1}" | |
NS="${2}" | |
NUM_INSTANCES=16 | |
NUM_RUNS=10 |