From e633f286772e7667dfd7491a0a7227f9317bc0c8 Mon Sep 17 00:00:00 2001 From: ahothan Date: Wed, 16 May 2018 00:10:36 -0700 Subject: NFVBENCH-92 nfvbench should not look for neutron network in case of l2-loopback Change-Id: I2fc7a46e23d7a989942eb62a4ca9afec8b992088 Signed-off-by: ahothan --- nfvbench/nfvbench.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'nfvbench/nfvbench.py') 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): -- cgit 1.2.3-korg