From ae838f98fa020d0ad0aa37ab58e02456889c3375 Mon Sep 17 00:00:00 2001 From: fmenguy Date: Wed, 22 Jan 2020 16:00:48 +0100 Subject: NFVBENCH-157 Add possibility to not use the ARP static configuration for VPP loop VM Change-Id: Ifd3f183345e21c7866e9e9898c7bbda601793b2c Signed-off-by: fmenguy --- nfvbench/chain_runner.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'nfvbench/chain_runner.py') diff --git a/nfvbench/chain_runner.py b/nfvbench/chain_runner.py index 418d667..bb35426 100644 --- a/nfvbench/chain_runner.py +++ b/nfvbench/chain_runner.py @@ -105,7 +105,8 @@ class ChainRunner(object): if not self.config.no_traffic: # ARP is needed for EXT chain or VxLAN overlay unless disabled explicitly if (self.config.service_chain == ChainType.EXT or - self.config.vxlan or self.config.l3_router) and not self.config.no_arp: + self.config.vxlan or self.config.l3_router or self.config.loop_vm_arp)\ + and not self.config.no_arp: self.traffic_client.ensure_arp_successful() self.traffic_client.ensure_end_to_end() -- cgit 1.2.3-korg