Re: [Ryu-devel] Openstack with RYU and VPNaaS

2014-02-13 Thread Yoshihiro Kaneko
2014-02-14 12:52 GMT+09:00 Yoshihiro Kaneko : > Hi, > > Sorry for the late reply. > > 2014-02-11 1:38 GMT+09:00 Lück, Christian > : >> Hi, >> the havana release of Openstack introduced VPNaaS. When i'm using the ryu >> plugin the VPN connection initialization fails with this message: >> >> Reques

Re: [Ryu-devel] [PATCH] of_config: add OFPortStateType class

2014-02-13 Thread FUJITA Tomonori
On Thu, 13 Feb 2014 20:02:33 +0900 (JST) [email protected] (YAMAMOTO Takashi) wrote: > looks good to me. thanks. Applied, thanks. -- Android apps run on BlackBerry 10 Introducing the new BlackBerry 10.2.1 Runtime f

Re: [Ryu-devel] Openstack with RYU and VPNaaS

2014-02-13 Thread Yoshihiro Kaneko
Hi, Sorry for the late reply. 2014-02-11 1:38 GMT+09:00 Lück, Christian : > Hi, > the havana release of Openstack introduced VPNaaS. When i'm using the ryu > plugin the VPN connection initialization fails with this message: > > Request Failed: internal server error while processing your request.

Re: [Ryu-devel] How to run a function independent of an event?

2014-02-13 Thread FUJITA Tomonori
On Thu, 13 Feb 2014 09:57:11 -0200 Eros Spalla wrote: > Hi Fujita, thanks. > > I need to open a socket between two apps in two controllers, and do that on > the controller startup. Now im using the the EventSwitchEnter to call my > function, but if no switches get in, no sockets get up. > > I w

Re: [Ryu-devel] Switch Connection Up Event

2014-02-13 Thread FUJITA Tomonori
On Thu, 13 Feb 2014 17:15:44 -0800 vinay pai wrote: > mod = parser.OFPFlowMod(datapath=datapath, priority=priority, > match = match, instructions=inst) You can specify table number as table_id argument here like. mod = parser.OFPFlowMod(datapath=datapath, table_i

Re: [Ryu-devel] Switch Connection Up Event

2014-02-13 Thread vinay pai
Hi Fujita, Few more details are: The flow programs fine in L2 mode of the switch because there is only 1 table. However we are suspecting that always table 0 goes out because of which the L3 mode of the switch is rejecting the flow. Regards, Vinay Pai B.H. On Thu, Feb 13, 2014 at 5:15 PM, vina

Re: [Ryu-devel] Switch Connection Up Event

2014-02-13 Thread vinay pai
Hi Fujita, Thanks for the response. I wanted to know if we can specify the table number on the switch side when we are trying to install the flow? The switch architecture is different compared to traditional Openflow switches. We have a L2 mode where we can install only L2 flows and L3 mode where

Re: [Ryu-devel] How to run a function independent of an event?

2014-02-13 Thread Eros Spalla
Hi Fujita, thanks. I need to open a socket between two apps in two controllers, and do that on the controller startup. Now im using the the EventSwitchEnter to call my function, but if no switches get in, no sockets get up. I would like to do: 1 - Start the controller. 2 - Start the socket. 3 -

Re: [Ryu-devel] [PATCH] of_config: add OFPortStateType class

2014-02-13 Thread YAMAMOTO Takashi
looks good to me. thanks. YAMAMOTO Takashi -- Android apps run on BlackBerry 10 Introducing the new BlackBerry 10.2.1 Runtime for Android apps. Now with support for Jelly Bean, Bluetooth, Mapview and more. Get your Andro

[Ryu-devel] [PATCH] of_config: add OFPortStateType class

2014-02-13 Thread FUJITA Tomonori
Signed-off-by: FUJITA Tomonori --- ryu/lib/of_config/generated_classes.py | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/ryu/lib/of_config/generated_classes.py b/ryu/lib/of_config/generated_classes.py index 83e4101..14038b5 100644 --- a/ryu/lib/of_config/generated_