Re: [ovs-dev] [PATCH v2] ovn-vtep: fix arping from vtep-gw physical port

2016-09-29 Thread Darrell Ball
On Thu, Sep 29, 2016 at 7:31 PM, Ramu Ramamurthy wrote: > > Hello Ramu > > > > Can you describe your configuration for this test failure when logical > > switch > > arp responders are skipped for logical switch "router type" ports ? > > I know the existing OVN tests

Re: [ovs-dev] [PATCH v2] ovn-vtep: fix arping from vtep-gw physical port

2016-09-29 Thread Ramu Ramamurthy
> Hello Ramu > > Can you describe your configuration for this test failure when logical > switch > arp responders are skipped for logical switch "router type" ports ? > I know the existing OVN tests (both system and non-system) pass either way. > > Thanks Darrell > There is no test that failed.

Re: [ovs-dev] [PATCH v2] ovn-vtep: fix arping from vtep-gw physical port

2016-09-29 Thread Darrell Ball
On Mon, Sep 26, 2016 at 2:00 PM, Darrell Ball wrote: > > > On Mon, Sep 26, 2016 at 11:24 AM, Ramu Ramamurthy < > ramu.ramamur...@gmail.com> wrote: > >> -if (!strcmp(op->nbsp->type, "localnet")) { >> +/* Skip arp responder if the logical switch inport is not >> +

Re: [ovs-dev] [PATCH v2] ovn-vtep: fix arping from vtep-gw physical port

2016-09-26 Thread Darrell Ball
On Mon, Sep 26, 2016 at 11:24 AM, Ramu Ramamurthy wrote: > -if (!strcmp(op->nbsp->type, "localnet")) { > +/* Skip arp responder if the logical switch inport is not > + * associated with a local VIF or a l2gateway port */ > +if

Re: [ovs-dev] [PATCH v2] ovn-vtep: fix arping from vtep-gw physical port

2016-09-26 Thread Ramu Ramamurthy
-if (!strcmp(op->nbsp->type, "localnet")) { +/* Skip arp responder if the logical switch inport is not + * associated with a local VIF or a l2gateway port */ +if ((strcmp(op->nbsp->type, "")) && +(strcmp(op->nbsp->type, "l2gateway"))) {

Re: [ovs-dev] [PATCH v2] ovn-vtep: fix arping from vtep-gw physical port

2016-09-23 Thread Darrell Ball
On Thu, Sep 22, 2016 at 1:07 PM, Ramu Ramamurthy wrote: > Currently, arping from a vtep-gw physical-switch port to > a VIF IP address does not work. > > When a physical-switch-port arps for an IP address > of a VIF, that arp packet comes into the VIF hypervisor via a >

[ovs-dev] [PATCH v2] ovn-vtep: fix arping from vtep-gw physical port

2016-09-22 Thread Ramu Ramamurthy
Currently, arping from a vtep-gw physical-switch port to a VIF IP address does not work. When a physical-switch-port arps for an IP address of a VIF, that arp packet comes into the VIF hypervisor via a vxlan tunnel. That arp packet must not be responded-to by the arp responder table because,