< I accidentally sent this to the dev mailing list before > Hey guys, I'm noticing an interesting phenomena that I can't explain. I have a flow in openvswitch that looks like that:
ovs-ofctl add-flow sw0 "table=0,priority=100,in_port=1,ip,actions=resubmit(,1),resubmit(,2),resubmit(,3)" if I send a packet and I have a drop rule in table 1: ovs-ofctl add-flow sw0 table=1,priority=0,actions=drop" the packet still goes through to table 2 and 3. BUT if I have an exit rule: ovs-ofctl add-flow sw0 table=1,priority=0,actions=exit" everything works great. I read in the man page that exit stops further actions. but if I drop the packet, how does it survive and pass to the next table? Thanks!
_______________________________________________ discuss mailing list discuss@openvswitch.org http://openvswitch.org/mailman/listinfo/discuss