summaryrefslogtreecommitdiffstats
path: root/nfvbench/nfvbench.py
diff options
context:
space:
mode:
authorahothan <ahothan@cisco.com>2018-05-16 00:10:36 -0700
committerahothan <ahothan@cisco.com>2018-05-16 00:10:36 -0700
commite633f286772e7667dfd7491a0a7227f9317bc0c8 (patch)
tree40231a5e1ad5ee571a035345a46ba896865ba750 /nfvbench/nfvbench.py
parent6404b7aa4391712f0421b3ee0996c59871816db1 (diff)
NFVBENCH-92 nfvbench should not look for neutron network in case of l2-loopback
Change-Id: I2fc7a46e23d7a989942eb62a4ca9afec8b992088 Signed-off-by: ahothan <ahothan@cisco.com>
Diffstat (limited to 'nfvbench/nfvbench.py')
-rw-r--r--nfvbench/nfvbench.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/nfvbench/nfvbench.py b/nfvbench/nfvbench.py
index 1cb5a9c..c5c1244 100644
--- a/nfvbench/nfvbench.py
+++ b/nfvbench/nfvbench.py
@@ -582,7 +582,9 @@ def main():
LOG.info('Disabling ARP')
config.no_arp = True
config.vlans = [int(opts.l2_loopback), int(opts.l2_loopback)]
- LOG.info('Running L2 loopback: using EXT chain and no ARP')
+ # disable any form of interface config since we loop at the switch level
+ config.no_int_config = True
+ LOG.info('Running L2 loopback: using EXT chain/no ARP')
if opts.use_sriov_middle_net:
if (not config.sriov) or (config.service_chain != ChainType.PVVP):