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
On 25 Nov 2024, at 16:03, Mike Pattrick wrote:
Currently when parsing filters, OVS rejects wildcarding on fields. However, that was unintentional. I've made a note to fix this.
--
Reply to this email directly or view it on GitHub:
#349 (comment)
You are receiving this because you are subscribed to this thread.
Message ID: ***@***.***>
Examples:
ovs-vsctl -- set mirror mirror-01 filter='"ip,nw_src=10.0.0.0/24"' <--- does'n work (no traffic on mirror-port)
FWIW, you should have a message saying wildcards are not allowed here in the log. It is not communicated back to the ovs-vsctl process, but the error is logged.
I've tested filter feature for mirror port in OVS v3.4.0.
It seems that filter with mask doesn't work.
Examples:
ovs-vsctl -- set mirror mirror-01 filter='"ip,nw_src=10.0.0.1"' <--- works fine
ovs-vsctl -- set mirror mirror-01 filter='"ip,nw_src=10.0.0.0/24"' <--- does'n work (no traffic on mirror-port)
The text was updated successfully, but these errors were encountered: