> How can we use bond interface with output action > Eg - > ovs-vsctl add-bond br b0 p1 p2 bond_mode=balance-slb > ovs-ofctl -O OpenFlow13 add-flow br "actions=? "
Bonding works only in a "normal pipeline" (same as per-port vlan configuration), so the answer is "actions=NORMAL". If you want to have load balancing without using a normal pipeline, you need to implement is yourself, e.g. with creating a group and having output to that group. Best regards, Ilya Maximets. _______________________________________________ discuss mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-discuss
