I am trying to match flow in openflow-compatible switch (openflow 1.5) by using ryu framework.
As far as I know, openflow version 1.5 supports 'tcp_flags' match conditions, and Ryu also does.
So, when I am trying to code like:
match = parser.OFPMatch(
tcp_flags=0x000
)
nothing happens in flow table, while I am expecting to occur a new flow entry.
Ingress packet contains empty value for tcp flags.
Does anyone knows, how to code such kind of condition in a ryu?
Thanks.