Re: [Ryu-devel] [PATCH] doc/source/step_by_step.rst: add item to setup quantum db

2012-04-30 Thread Isaku Yamahata
Oops. This one is a bit wrong. I'll send the corrected one. On Tue, May 01, 2012 at 01:49:00PM +0900, Isaku Yamahata wrote: > The step to create quantum db was missing. > > Signed-off-by: Isaku Yamahata > --- > doc/source/step_by_step.rst | 21 + > 1 files changed, 21 inse

[Ryu-devel] [PATCH] doc/source/step_by_step.rst: add item to setup quantum db

2012-04-30 Thread Isaku Yamahata
The step to create quantum db was missing. Signed-off-by: Isaku Yamahata --- doc/source/step_by_step.rst | 21 + 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/doc/source/step_by_step.rst b/doc/source/step_by_step.rst index 9e85fb3..3305cc9 100644 --- a/doc

[Ryu-devel] [PATCH] doc/source/step_by_step.rst: add item to setup quantum db

2012-04-30 Thread Isaku Yamahata
The step to create quantum db was missing. Signed-off-by: Isaku Yamahata --- doc/source/step_by_step.rst | 21 + 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/doc/source/step_by_step.rst b/doc/source/step_by_step.rst index 9e85fb3..00a0230 100644 --- a/doc

Re: [Ryu-devel] Running quantum-server Error

2012-04-30 Thread Salman Malik
Thanks for the suggestions. Now every part of plugin is working fine but I am unable to launch VM properly. I mean there seems to be some problem with the networking part: specifically the launched instance sends DHCP discover messages but is unable to lease any IP address. I have started a thr

Re: [Ryu-devel] Running quantum-server Error

2012-04-30 Thread Isaku Yamahata
On Mon, Apr 30, 2012 at 12:37:35PM -0500, Salman Malik wrote: > Hi Yamahata, > > I have just found out using 'mysqlshow' that there is no database as > 'ryu_quantum'. I am following the steps to enable ryu and it doesn't explain > how to create such a database (May be it is populated implicitly in

Re: [Ryu-devel] Running quantum-server Error

2012-04-30 Thread Isaku Yamahata
On Mon, Apr 30, 2012 at 01:12:16PM -0500, Salman Malik wrote: > Ok, I solved this problem by replacing ryu_quantum in the suggested line by > ovs_quantum, because there was already an ovs_quantum db there that has > networks.tenant_id column. You can create by using mysql. Hmm the following look

Re: [Ryu-devel] [PATCH v2 00/32] gre tunnel app

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:42 +0900 Isaku Yamahata wrote: > This patch series implements an ryu application which support gre tunneling. > > The first part (1-6) is simpley trivial bug fix, refactoring. > The second part (7-15) is for openflow parser/serializer imporvement. > The thirt part (16-3

Re: [Ryu-devel] [PATCH v2 14/32] app: use symbol instead of 32678 for default priority

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:56 +0900 Isaku Yamahata wrote: > Signed-off-by: Isaku Yamahata > --- > ryu/app/cbench.py |4 ++-- > ryu/app/simple_isolation.py | 11 +++ > ryu/app/simple_switch.py|3 ++- > 3 files changed, 11 insertions(+), 7 deletions(-) Applied. --

Re: [Ryu-devel] [PATCH v2 13/32] ofproto/ofproto_v1_0_parser: flowmod default parameter

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:55 +0900 Isaku Yamahata wrote: > Signed-off-by: Isaku Yamahata > --- > ryu/ofproto/ofproto_v1_0_parser.py | 19 ++- > 1 files changed, 14 insertions(+), 5 deletions(-) Applied.

Re: [Ryu-devel] [PATCH v2 12/32] ofproto/ofproto_v1_0_parser: make FlowMod allow meaningful default parameter

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:54 +0900 Isaku Yamahata wrote: > Cc: Simon Horman > Signed-off-by: Isaku Yamahata > --- > ryu/ofproto/ofproto_v1_0_parser.py | 15 ++- > 1 files changed, 10 insertions(+), 5 deletions(-) Applied.

Re: [Ryu-devel] [PATCH v2 11/32] controller, ofproto_v1_0: avoid format for argument

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:53 +0900 Isaku Yamahata wrote: > format is defined in builtin, so it should be avoid for argument. > use flow_format instead. > > Cc: Simon Horman > Signed-off-by: Isaku Yamahata > --- > ryu/controller/controller.py | 12 ++-- > ryu/ofproto/ofproto_v1

Re: [Ryu-devel] [PATCH v2 08/32] ofproto/ofproto_v1_0_parser: improve NXTRequest initializer

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:50 +0900 Isaku Yamahata wrote: > initialize subtype by base class, NXTRequest, instead of subclass. > > Cc: Simon Horman > Signed-off-by: Isaku Yamahata > --- > ryu/ofproto/ofproto_v1_0_parser.py | 10 +- > 1 files changed, 5 insertions(+), 5 deletions(-)

Re: [Ryu-devel] [PATCH v2 09/32] ofproto/ofproto_v1_0_parser: serializer for nxt_flow_mod_table_id

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:51 +0900 Isaku Yamahata wrote: > Signed-off-by: Isaku Yamahata > --- > ryu/ofproto/ofproto_v1_0_parser.py | 12 > 1 files changed, 12 insertions(+), 0 deletions(-) Applied. --

Re: [Ryu-devel] [PATCH v2 01/32] app/simple_isolation: unbreak nx patch

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:43 +0900 Isaku Yamahata wrote: > Signed-off-by: Isaku Yamahata > --- > ryu/app/simple_isolation.py |3 ++- > 1 files changed, 2 insertions(+), 1 deletions(-) Applied. -- Live Security Vir

Re: [Ryu-devel] [PATCH v2 10/32] ofproto/ofproto_v1_0_parser: serializer for NXActionResbumit

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:52 +0900 Isaku Yamahata wrote: > Signed-off-by: Isaku Yamahata > --- > ryu/ofproto/ofproto_v1_0_parser.py | 27 +++ > 1 files changed, 27 insertions(+), 0 deletions(-) Applied.

Re: [Ryu-devel] [PATCH v2 04/32] app/wsapi: make WSPathComponent inherit object

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:46 +0900 Isaku Yamahata wrote: > Later we create subclass of WSPathComponent so that make super() work. > app/wsapi: super().__init__() > > Signed-off-by: Isaku Yamahata > --- > ryu/app/wsapi.py |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) Applied.

Re: [Ryu-devel] [PATCH v2 07/32] ofproto/ofproto_v1_0: more constants for nx

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:49 +0900 Isaku Yamahata wrote: > Signed-off-by: Isaku Yamahata > --- > ryu/ofproto/ofproto_v1_0.py | 12 > 1 files changed, 12 insertions(+), 0 deletions(-) Applied. -- Live Se

Re: [Ryu-devel] [PATCH v2 02/32] add missing super().__init__()

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:44 +0900 Isaku Yamahata wrote: > - app/event_dumper > - controller/dispatcher > - controller/mac_to_network > - controller/mac_to_port > - app/simple_switch > > Signed-off-by: Isaku Yamahata > --- > ryu/app/event_dumper.py |1 + > ryu/app/simple_switch.py

Re: [Ryu-devel] [PATCH v2 03/32] app/wsapi/WSPathArbitraryString: wrong indent

2012-04-30 Thread FUJITA Tomonori
On Wed, 4 Apr 2012 18:37:45 +0900 Isaku Yamahata wrote: > WSPathArbitraryString.__str__ method should be instance method. > > Signed-off-by: Isaku Yamahata > --- > ryu/app/wsapi.py |4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) Applied. -

Re: [Ryu-devel] Running quantum-server Error

2012-04-30 Thread Salman Malik
Ok, I solved this problem by replacing ryu_quantum in the suggested line by ovs_quantum, because there was already an ovs_quantum db there that has networks.tenant_id column. After having done so, I was able to run the quantum server and ryu agent. But due to some reason I had to restart the a

Re: [Ryu-devel] Running quantum-server Error

2012-04-30 Thread Salman Malik
Hi Yamahata, I have just found out using 'mysqlshow' that there is no database as 'ryu_quantum'. I am following the steps to enable ryu and it doesn't explain how to create such a database (May be it is populated implicitly in some step). Anyway, I have the ryu-manager running but don't know h