[ovs-discuss] OFPET_FLOW_MOD_FAILED

2016-11-03 Thread Ajinkya D Kadam
HI All, I am doing a simple experiment to add a default table miss flow entry to a hardware OpenFlow Switch. Below are the details of the tools I am using Controller : RYU OpenFlow Switch : FortiCore 3700E OF_version : 1.3 I am using the example code (example_switch_13.py) available in

[ovs-discuss] port mirroring on veth peer device

2016-11-03 Thread Hui Xiang
Hi guys, Does port mirroring works on veth device which is connected on another linux bridge? I have setup below mirror: # sudo ovs-vsctl -- set Bridge br-int mirrors=@m -- --id=@qvod870e7d0-21 get Port qvod870e7d0-21 -- --id=@qvoa57385cb-1b get Port qvoa57385cb-1b -- --id=@m create

Re: [ovs-discuss] port mirroring on veth peer device

2016-11-03 Thread Ben Pfaff
On Thu, Nov 03, 2016 at 05:24:38PM +0800, Hui Xiang wrote: > Does port mirroring works on veth device which is connected on another > linux bridge? It should. veth devices aren't special to Open vSwitch. You didn't mention what version of OVS you're using. There have been bug fixes in

Re: [ovs-discuss] port mirroring on veth peer device

2016-11-03 Thread Hui Xiang
Thanks Ben. I am using ovs_version: "2.5.0" , searched below same question/deployment but have not found the answer. [ovs-discuss] port mirroring on openvswitch http://openvswitch.org/pipermail/discuss/2013-October/011413.html [ovs-discuss] problem in mirroring interfaces' traffic (just egress

[ovs-discuss] building DPDK support for OVS

2016-11-03 Thread Shivaram Mysore
Hello, The current model that I know for building DPDK enabled OVS is to just git clone the OVS tree and build + install everything. This involves installing all kinds of tool chain packages required for machines. Currently, major Linux distributions support package installation of OVS. I was

Re: [ovs-discuss] port mirroring on veth peer device

2016-11-03 Thread Ben Pfaff
There's at least one mirroring bug fix in 2.5.1, for this commit: From: Ben Pfaff Date: Thu, 15 Sep 2016 11:43:46 -0700 Subject: [PATCH] ofproto-dpif-xlate: Fix treatment of mirrors across patch port. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8

[ovs-discuss] Duplicate multicast packets

2016-11-03 Thread O'Reilly, Darragh
Hi, I'm running OVS 2.5.0 @be3f39c94, and I see duplicate multicast packets in the following scenario. # ovs-vsctl add-br br0 # ovs-vsctl add-port br0 bond1 # ovs-vsctl set Bridge br0 mcast_snooping_enable=true # ovs-vsctl set Bridge br0

Re: [ovs-discuss] building DPDK support for OVS

2016-11-03 Thread Joel Wirāmu Pauling
IIRC there are several out of head changes to the dpdk tree, including out of kernel changes. Work has been on-going to get all the bits included in HEAD for ovs and Kernel but it's not yet complete. Hence the existence of the separate tree. On 3 November 2016 at 13:14, Shivaram Mysore

Re: [ovs-discuss] [openstack-dev] [ovn] [[l3-agent] connectivity to external network

2016-11-03 Thread Russell Bryant
On Thu, Nov 3, 2016 at 3:31 PM, Murali R wrote: > The scope of question is using neutron L3 services with OVN. The problem > is when a router created, there is no implicit internal interface created > between the router instance and the external bridge. > ​To be honest,

Re: [ovs-discuss] port mirroring on veth peer device

2016-11-03 Thread Hui Xiang
Thanks Ben, I'll try it. On Fri, Nov 4, 2016 at 1:39 AM, Ben Pfaff wrote: > There's at least one mirroring bug fix in 2.5.1, for this commit: > > From: Ben Pfaff > Date: Thu, 15 Sep 2016 11:43:46 -0700 > Subject: [PATCH] ofproto-dpif-xlate: Fix treatment of mirrors