On Tue, May 02, 2017 at 12:53:55PM +0000, Venugopal Reddy K wrote: > My ovs version is 2.6.1. Trying to use IGMP match in one of the flow. But, it > fails when used like below: > > ovs-ofctl add-flow br-int "table=22 priority=8, igmp, actions=CONTROLLER" > ovs-ofctl: field igmp missing value > > > And it is successful when used with nw_proto/ip_proto match as shown below: > ovs-ofctl add-flow br-int "table=22 priority=8, ip,nw_proto=2, > actions=CONTROLLER" > > > ovs-ofctl dump-flows br-int table=22 > NXST_FLOW reply (xid=0x4): > cookie=0x0, duration=3.846s, table=22, n_packets=0, n_bytes=0, idle_age=3, > priority=8,igmp actions=CONTROLLER:65535 > > > Would like to know if there is any specific reason or it is a bug.
OVS has no specific support for matching on IGMP, so you're doing it the right way. It's not a bug because there's no such feature. _______________________________________________ discuss mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-discuss
