Re: [ovs-dev] output action to a bonded port

2012-03-15 Thread Alexandre Bezroutchko
Thanks everybody. I understand the bottom line is I can't create a flow to properly output to bonded ports. What I am trying to achieve is to control distribution of DHCP traffic on a bridge used by multiple untrusted VMs. I want DHCP broadcasts delivered from VM to my local DHCP server VM and

Re: [ovs-dev] output action to a bonded port

2012-03-15 Thread Ethan Jackson
> I wonder the impact using the bundle, now that I have this in production =) > > The bond is configured with SLB active-active (Yea, I know some of the > issues with this) but since, as you said, it bypasses the bond code this > should avoid the SLB problem, right ? No it will actually exacerbate

Re: [ovs-dev] output action to a bonded port

2012-03-15 Thread Luiz Ozaki
On 3/15/12 3:34 PM, Ethan Jackson wrote: No, the bundle does not output to a bond. It outputs to a group of ports analogous to an OpenFlow 1.1 group. I don't recommend using it as it doesn't go through the standard bonding code and thus may exhibit unexpected behavior. Ethan Good to know. I

Re: [ovs-dev] output action to a bonded port

2012-03-15 Thread Ethan Jackson
No, the bundle does not output to a bond. It outputs to a group of ports analogous to an OpenFlow 1.1 group. I don't recommend using it as it doesn't go through the standard bonding code and thus may exhibit unexpected behavior. Ethan On Thu, Mar 15, 2012 at 10:10, Luiz Ozaki wrote: > On 3/15/

Re: [ovs-dev] output action to a bonded port

2012-03-15 Thread Luiz Ozaki
On 3/15/12 2:05 PM, Ben Pfaff wrote: I'm pretty sure that the "bundle" action can output to a bond. Ethan? ___ dev mailing list dev@openvswitch.org http://openvswitch.org/mailman/listinfo/dev Yep, in here we use bundle to output to a bond* *ovs-ofct

Re: [ovs-dev] output action to a bonded port

2012-03-15 Thread Ben Pfaff
On Wed, Mar 14, 2012 at 07:13:43PM -0700, Justin Pettit wrote: > On Mar 14, 2012, at 3:57 PM, Alexandre Bezroutchko wrote: > > > I am trying to create a flow which to output frames to a bonded > > port. To achieve that I need to find a port number, but there > > appears to be no port numbers for a

Re: [ovs-dev] output action to a bonded port

2012-03-14 Thread Justin Pettit
On Mar 14, 2012, at 3:57 PM, Alexandre Bezroutchko wrote: > I am trying to create a flow which to output frames to a bonded port. To > achieve that I need to find a port number, but there appears to be no port > numbers for a bonded port, only for slave interfaces appear to have port > numbers.

[ovs-dev] output action to a bonded port

2012-03-14 Thread Alexandre Bezroutchko
Hi, I am trying to create a flow which to output frames to a bonded port. To achieve that I need to find a port number, but there appears to be no port numbers for a bonded port, only for slave interfaces appear to have port numbers. Is it possible at all? I'm not sure if I am writing to a c