> On Jan 18, 2018, at 3:27 PM, Ajit Warrier <[email protected]> wrote: > > Our OVS runs a broadcast app that sends UDP packets out on br0. Currently as > expected, these packets go out of all interfaces in br0. I would like to > force it such that these packets do NOT go out of a specific interface, but > still goes out of the other interfaces. > > I tried using open flow as below: > > /tmp/ovs-ofctl add-flow br0 dl_type=0x800,nw_proto=17,tp_dst=699,actions=drop > > What I am missing is a way to specify the egress port. Is this possible ?
The only thing that comes to mind is to enumerate the ports it should go to, and then it will be implicitly dropped to that port. --Justin _______________________________________________ discuss mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-discuss
