On Sat, Jan 09, 2016 at 04:26:52PM +0000, Kenchappa, Ravindra wrote: > I am trying to add the following rule and not sure whether it is support or > not: > > ovs-ofctl add-flow br0 "table=40 actions=learn(table=1, hard_timeout=10, > NXM_OF_VLAN_TCI[0..11], NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[], > output:NXM_OF_IN_PORT[],resubmit(,1)) > > ovs-ofctl add-flow br0 "table=40 actions=learn(table=1, hard_timeout=10, > NXM_OF_VLAN_TCI[0..11], NXM_OF_ETH_DST[]=NXM_OF_ETH_SRC[], > output:NXM_OF_IN_PORT[],goto_table:50) > > Is this supported ? if not, is there a way to construct a learned flows to > have a resubmit or goto_table action??
Learned flows can't have resubmit or goto_table actions. The idea is that a table of learned flows sets fields and then whatever submits into that table acts on it. _______________________________________________ discuss mailing list [email protected] http://openvswitch.org/mailman/listinfo/discuss
