summaryrefslogtreecommitdiffstats
path: root/nfvbench
diff options
context:
space:
mode:
authorahothan <ahothan@cisco.com>2019-04-15 08:16:50 -0700
committerahothan <ahothan@cisco.com>2019-04-15 08:16:50 -0700
commit0086625705d54e53f16ba0b3f212c58779e0a2de (patch)
tree4613fb57fced8028076fedad5d9df00877ffab64 /nfvbench
parente7fdfb5c5e386bb8851b6c583c44ae61bd188627 (diff)
NFVBENCH-132 Upgrade to TRex v2.563.2.0
Change-Id: I003a143bb104aa577a9a5cefabf7c7c33e3beaf3 Signed-off-by: ahothan <ahothan@cisco.com>
Diffstat (limited to 'nfvbench')
-rw-r--r--nfvbench/traffic_server.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/nfvbench/traffic_server.py b/nfvbench/traffic_server.py
index d46a27d..91608dd 100644
--- a/nfvbench/traffic_server.py
+++ b/nfvbench/traffic_server.py
@@ -49,8 +49,12 @@ class TRexTrafficServer(TrafficServer):
mbuf_opt = "--mbuf-factor " + str(generator_config.mbuf_factor)
else:
mbuf_opt = ""
+ # --unbind-unused-ports: for NIC that have more than 2 ports such as Intel X710
+ # this will instruct trex to unbind all ports that are unused instead of
+ # erroring out with an exception (i40e only)
subprocess.Popen(['nohup', '/bin/bash', '-c',
- './t-rex-64 -i -c {} --iom 0 --no-scapy-server --close-at-end {} '
+ './t-rex-64 -i -c {} --iom 0 --no-scapy-server '
+ '--unbind-unused-ports --close-at-end {} '
'{} {} --cfg {} &> /tmp/trex.log & disown'.format(cores, sw_mode,
vlan_opt,
mbuf_opt, cfg)],