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 <ablu@mail.uni-paderborn.de>
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 @@
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):