You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the current state, OVN can not handle fragmented traffic for ACLs
in the userspace datapath (DPDK). Just like in the case of LB
(commit 20a96b9), the kernel DP will try to reassemble the fragments
during CT lookup, however userspace won't reassemble them.
This patch allows OVN to handle fragmented traffic by defining a
translation table on southbound that leverages OpenFlow connection
tracking capabilities. When a stateful flow is created on NB, we add
a hint in the flow. This hint will be read in SB and if the
connection tracking is set to be used, SB will use the alternative
translation table that will use the connection tracking information.
This approach should not change the current behavior and it's only
enabled if acl_ct_translation is set:
ovn-nbctl set NB_Global . options:acl_ct_translation=true
Reported-at: https://issues.redhat.com/browse/FDP-1992
Signed-off-by: Erlon R. Cruz <erlon@canonical.com>
Acked-by: Dumitru Ceara <dceara@redhat.com>
Signed-off-by: Ales Musil <amusil@redhat.com>
0 commit comments