On Tue, Jul 21, 2015 at 09:50:47PM +0530, Abhishek Verma wrote: > I am adding the following rules: > > ovs-ofctl add-flow SWITCH priority=500,arp,nw_dst= > 100.0.0.0/24,actions=normal > ovs-ofctl add-flow SWITCH priority=501,arp,nw_dst= > 200.99.0.0/16,actions=normal > ovs-ofctl add-flow SWITCH priority=502,arp,actions=drop > > My understanding is that with these rules i will be able to recieve ARP > requests and replies for all hosts falling in subnets 100.0.0.0/24 and > 200.99.0.0/16. Every other ARP message will be dropped. > > Is my understanding correct?
You have the priorities backward: this set of flows will drop all ARPs. _______________________________________________ discuss mailing list [email protected] http://openvswitch.org/mailman/listinfo/discuss
