From c6d9e9e619bb543da62009b30b3de8f7e5676817 Mon Sep 17 00:00:00 2001 From: schillinge Date: Wed, 20 Feb 2019 10:08:47 +0100 Subject: [PATCH] Do not tag outputs with VLANs for SFC this otherwise leads to packets being wrapped within 802.1Q packets, which do not get popped before forwarding to a service. Thus, services do not respond to ARP, PING and alike. Change-Id: I7f29b5094f9bd33661e8f2862c8656c0f9a08a6b Signed-off-by: schillinge --- src/emuvim/api/openstack/resources/port_chain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emuvim/api/openstack/resources/port_chain.py b/src/emuvim/api/openstack/resources/port_chain.py index 64e6177..1f2a367 100644 --- a/src/emuvim/api/openstack/resources/port_chain.py +++ b/src/emuvim/api/openstack/resources/port_chain.py @@ -97,7 +97,7 @@ class PortChain(object): server_egress.name, server_ingress.name, egress_port.intf_name, ingress_port.intf_name, cmd="add-flow", cookie=self.cookie, priority=10, bidirectional=False, - monitor=False + monitor=False, skip_vlan_tag=True ) def uninstall(self, compute): -- 2.17.1