aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/benchmark/scenarios/networking/pktgen_benchmark.bash
diff options
context:
space:
mode:
Diffstat (limited to 'yardstick/benchmark/scenarios/networking/pktgen_benchmark.bash')
-rw-r--r--yardstick/benchmark/scenarios/networking/pktgen_benchmark.bash8
1 files changed, 3 insertions, 5 deletions
diff --git a/yardstick/benchmark/scenarios/networking/pktgen_benchmark.bash b/yardstick/benchmark/scenarios/networking/pktgen_benchmark.bash
index f5df50f0f..4224c5abf 100644
--- a/yardstick/benchmark/scenarios/networking/pktgen_benchmark.bash
+++ b/yardstick/benchmark/scenarios/networking/pktgen_benchmark.bash
@@ -13,17 +13,15 @@ set -e
# Commandline arguments
DST_IP=$1 # destination IP address
-shift
-NUM_PORTS=$1 # number of source ports
-shift
-PKT_SIZE=$1 # packet size
+NUM_PORTS=$2 # number of source ports
+PKT_SIZE=$3 # packet size
+DURATION=$4 # test duration (seconds)
# Configuration
UDP_SRC_MIN=1000 # UDP source port min
UDP_SRC_MAX=$(( UDP_SRC_MIN + NUM_PORTS - 1 )) # UDP source port max
UDP_DST_MIN=1000 # UDP destination port min
UDP_DST_MAX=$(( UDP_DST_MIN + NUM_PORTS )) # UDP destination port max
-DURATION=20 # test duration (seconds)
# helper function to send commands to pktgen
pgset()