Re: [ovs-discuss] Added new field in flow.h. But the xlate_actions gives mask value zero.

2015-08-03 Thread Ben Pfaff
On Tue, Aug 04, 2015 at 12:46:32AM +, jimson chacko wrote: > Hi Ben, > > Thanks for the quick response. > > I am not sure whether the flow matches. But a few observations. > > 1. There are two flows seen in ofctl dump-flows output before the > traffic starts. First one is a default rule with

Re: [ovs-discuss] Scaling ovsdb-idl's update notification

2015-08-03 Thread Ben Pfaff
If that's useful for real applications, and more practical, then I'm all for it. I haven't thought about the problem carefully; I'm just trying to point out a constraint. On Mon, Aug 03, 2015 at 07:10:23PM +, Ansari, Shad wrote: > Would it help if, for the deleted record, all fields except uu

Re: [ovs-discuss] One Issue with IGMP Snooping for OVS2.3.9

2015-08-03 Thread Flavio Leitner
On Fri, Jul 31, 2015 at 09:41:14AM +, laxmikanta.beh...@wipro.com wrote: > Hi, > > Age time reset to zero for existing host 1 ( stream from group > IP-239.225.255.100) while join request coming from host2 for different group > Ip(239.255.255.250). > Please find below screen shot. When thin

Re: [ovs-discuss] Mininet cannot run with ovs, maybe configuration problem

2015-08-03 Thread Xuemei Liu
Hi, Bob, Thanks for your response. Finally I find the problem, it's the "Open Files Limit problem". I track the error log of ovs-vswitchd process and get this error log. After following the steps in https://rtcamp.com/tutorials/linux/increase-open-files-limit/, the problem is solved. @Bob, sorry f

Re: [ovs-discuss] Mininet cannot run with ovs, maybe configuration problem

2015-08-03 Thread Xuemei Liu
Hi, Bob, Thanks for your response. Finally I find the problem, it's the "Open Files Limit problem". I track the error log of ovs-vswitchd process and get this error log. After following the steps in https://rtcamp.com/tutorials/linux/increase-open-files-limit/, the problem is solved. @Ben, sorry f

Re: [ovs-discuss] Added new field in flow.h. But the xlate_actions gives mask value zero.

2015-08-03 Thread jimson chacko
Hi Ben, Thanks for the quick response. I am not sure whether the flow matches. But a few observations. 1. There are two flows seen in ofctl dump-flows output before the traffic starts. First one is a default rule with action as "NORMAL" (hub mode ?). Second one is the new flow which I added with

Re: [ovs-discuss] Scaling ovsdb-idl's update notification

2015-08-03 Thread Ansari, Shad
Would it help if, for the deleted record, all fields except uuid, version, and indexes columns are reset to default (after regular deferred processing - unreferenced rows are deleted and dangling weak references are removed)? This ensures that the client does not access invalid references. Typic

Re: [ovs-discuss] [Kernel panic] BUG: unable to handle kernel NULL pointer dereference

2015-08-03 Thread Jesse Gross
On Wed, Jul 29, 2015 at 12:38 AM, 徐兆魁 wrote: > Running ovs-v2.3.2 on ubuntu 12.04-lts with kernel 3.13.0-55-generic, it > panics like this: > > ``` > [195686.613495] BUG: unable to handle kernel NULL pointer dereference at Pravin, I guess this was one of the local tunnel decap issues that you wer

Re: [ovs-discuss] Scaling ovsdb-idl's update notification

2015-08-03 Thread Ben Pfaff
That kind of approach might work. It's important to keep in mind, though, that the IDL isn't just a collection of unrelated records. It's a graph: any record can point to any number of other records, through columns whose types are UUIDs with refTable constraints. The IDL maintains tracks these

[ovs-discuss] Configure SSL on OVS

2015-08-03 Thread HEARNE, TIMOTHY S
Hello, My team is attempting to configure SSL using OVS using ovs-vsctl interface. I have been attempting to follow the instructions found at http://git.openvswitch.org/cgi-bin/gitweb.cgi?p=openvswitch;f=INSTALL.SSL;hb=HEAD but have not been successful. We currently have 2 mininet ubuntu 14.0

Re: [ovs-discuss] could we mirror the packages of patch port?

2015-08-03 Thread Ben Pfaff
On Mon, Aug 03, 2015 at 07:28:55AM +, Wang, Yalei wrote: > Hi all, > > Just now I tried to mirror the OVS bridge with a patch port, it just get the > egress packages, my OVS bridge version is 2.0.2 > > and I find someone got a similar problem before, > http://openvswitch.org/pipermail/discu

Re: [ovs-discuss] Added new field in flow.h. But the xlate_actions gives mask value zero.

2015-08-03 Thread Ben Pfaff
On Mon, Aug 03, 2015 at 02:29:23PM +0530, jimson chacko wrote: > Hi, > > I am using version 2.3.0 of OVS. > > I have added a new filed (eg; gtp tunnel id) and changed FLOW_WC_SEQ. > Compiled the code. All the errors given by the compiler were fixed. > > I added a flow with ofctl add-flow command

[ovs-discuss] 回复: ovs bridge dropping packages

2015-08-03 Thread ywz704064151
why drop packets depends, maybe not the fault of ovs. 发自我的小米手机 在 Cristina Palomo Regidor ,2015-4-11 上午3:27写道: Hello, I have ovs 2.1.2 and sles12. Ifconfig mybridge is showing dropped packets. Cat /sys/class/net/mybridge/statistics/rx_dropped is showing 1437

[ovs-discuss] Added new field in flow.h. But the xlate_actions gives mask value zero.

2015-08-03 Thread jimson chacko
Hi, I am using version 2.3.0 of OVS. I have added a new filed (eg; gtp tunnel id) and changed FLOW_WC_SEQ. Compiled the code. All the errors given by the compiler were fixed. I added a flow with ofctl add-flow command and retrieved the same using ofctl dump-flows. Output shows both value and mas

[ovs-discuss] could we mirror the packages of patch port?

2015-08-03 Thread Wang, Yalei
Hi all, Just now I tried to mirror the OVS bridge with a patch port, it just get the egress packages, my OVS bridge version is 2.0.2 and I find someone got a similar problem before, http://openvswitch.org/pipermail/discuss/2014-December/016079.html does this problem fixed in the lastest code?