Re: [Ryu-devel] Fwd: Ryu Manager question I'm about to post the mailing list

2013-03-26 Thread Isaku Yamahata
On Tue, Mar 26, 2013 at 11:06:40PM -0700, Yue Chen wrote: > Hi, > > I ran into a crash when integrating a Pica8 switch with Ryu Manager running on > the following devstack image from https://github.com/osrg/ryu/wiki/ > RYU-OpenStack-Folsom-environment-VM-image-file-HOWTO > > The Pica8 switch was

Re: [Ryu-devel] REST API for topology module

2013-03-26 Thread Nikhil
Thanks a lot. Discovery module is designed to work with only OF1.0. When can we expect OF1.2 or OF1.3 support? Best Regards, Nikhil On Wed, Mar 27, 2013 at 6:55 AM, YAMADA Hideki wrote: > Hi, > > > (2013/03/26 20:00), Nikhil wrote: > >> Hi , >> >> Thanks for the reply. Could you tell me whether

[Ryu-devel] Fwd: Ryu Manager question I'm about to post the mailing list

2013-03-26 Thread Yue Chen
Hi, I ran into a crash when integrating a Pica8 switch with Ryu Manager running on the following devstack image from https://github.com/osrg/ryu/wiki/RYU-OpenStack-Folsom-environment-VM-image-file-HOWTO The Pica8 switch was running in Open vSwitch mode, with version 1.6.1 software. 192.168.0.

Re: [Ryu-devel] Issues with Ryu Learning app

2013-03-26 Thread Shivaram Mysore
Hello Yamahata-san, Thanks. This fix works. We will update our code to reflect the same. Thanks /Shivaram On Tue, Mar 26, 2013 at 7:10 PM, Isaku Yamahata wrote: > ryu.controller.dispatcher is deleted. > > I have a very rough look at it. > Deleting line 122-128 of l2_switch_v1_3.py would make

Re: [Ryu-devel] Issues with Ryu Learning app

2013-03-26 Thread Isaku Yamahata
ryu.controller.dispatcher is deleted. I have a very rough look at it. Deleting line 122-128 of l2_switch_v1_3.py would make it work again. thanks, On Tue, Mar 26, 2013 at 02:17:24PM -0700, Shivaram Mysore wrote: > Hello, > > The Ryu learning switch app that we had written > https://github.com/F

Re: [Ryu-devel] REST API for topology module

2013-03-26 Thread YAMADA Hideki
Hi, (2013/03/26 20:00), Nikhil wrote: > Hi , > > Thanks for the reply. Could you tell me whether topology/switches.py file > can be run as an app ryu-manager. any test method or whats the go? > You can receive topology events from the module. A sample receiver app is ryu/topology/dumper.py. To ru

[Ryu-devel] Issues with Ryu Learning app

2013-03-26 Thread Shivaram Mysore
Hello, The Ryu learning switch app that we had written https://github.com/FlowForwarding/LINC-Switch/tree/master/scripts/ryu was working and now it is not. What has changed? ip-10-0-1-215:/usr/local/src/ryu # *pip install dispatcher* Downloading/unpacking dispatcher Downloading dispatcher-1

Re: [Ryu-devel] [PATCH 1/3] nx_match: add MFField parser

2013-03-26 Thread OHMURA Kei
2013/3/26 Can Zhang : > Hello, > > Your patch 1/3 failed in nx_match.py. Below is the .rej file: Thanks for your trying. Applying the patch succeeded at my environment. Please try it again or give me more information. > --- > > diff a/ryu/ofproto/nx_match.py b/ryu/ofproto/nx_match.py(reje

Re: [Ryu-devel] [PATCH 1/3] nx_match: add MFField parser

2013-03-26 Thread Can Zhang
Hello, Your patch 1/3 failed in nx_match.py. Below is the .rej file: --- diff a/ryu/ofproto/nx_match.py b/ryu/ofproto/nx_match.py(rejected hunks) @@ -503,11 +586,20 @@ class MFIPDSCP(MFField): @_register_make -@..., ofproto_v1_0.NXM_NX_TUN_ID_W]) +@_set_nxm_headers([ofproto_v1_0.NXM_

Re: [Ryu-devel] REST API for topology module

2013-03-26 Thread Nikhil
Hi , Thanks for the reply. Could you tell me whether topology/switches.py file can be run as an app ryu-manager. any test method or whats the go? Best Regards, Nikhil On Tue, Mar 26, 2013 at 3:27 PM, YAMADA Hideki wrote: > Hi, > > Topology module has not REST API yet. > I will post REST API pa

Re: [Ryu-devel] REST API for topology module

2013-03-26 Thread YAMADA Hideki
Hi, Topology module has not REST API yet. I will post REST API patch in this week. (2013/03/26 18:38), Nikhil wrote: > Hello, > > > Does topology module added to ryu controller recently has REST API? If yes, > Please provide me details of the same. > > > Best Regards, > Nikhil > > > > ---

[Ryu-devel] REST API for topology module

2013-03-26 Thread Nikhil
Hello, Does topology module added to ryu controller recently has REST API? If yes, Please provide me details of the same. Best Regards, Nikhil -- Own the Future-Intel® Level Up Game Demo Contest 2013 Rise to greatness i

[Ryu-devel] [PATCH] add VLAN_ID setting means

2013-03-26 Thread 竹下昇
This patch contains the following update for ofctl_v1_2 library. adding a means which sets up VLAN_ID. (I think that I will use this by a firewall Ryu application.) Signed-off-by: TAKESHITA Noboru --- ryu/lib/ofctl_v1_2.py |3 +++ 1 file changed, 3 insertions(+) diff --git a/ryu/lib/ofct

[Ryu-devel] [PATCH 2/3] ofproto_v1_0: add nx_stats constants

2013-03-26 Thread OHMURA Kei
Signed-off-by: OHMURA Kei --- ryu/ofproto/ofproto_v1_0.py | 21 + 1 file changed, 21 insertions(+) diff --git a/ryu/ofproto/ofproto_v1_0.py b/ryu/ofproto/ofproto_v1_0.py index 685cc71..ca6e384 100644 --- a/ryu/ofproto/ofproto_v1_0.py +++ b/ryu/ofproto/ofproto_v1_0.py @@ -59

[Ryu-devel] [PATCH 3/3] ofproto_v1_0_parser: add nx_flow_stats_{request, reply}

2013-03-26 Thread OHMURA Kei
Signed-off-by: OHMURA Kei --- ryu/ofproto/ofproto_v1_0_parser.py | 174 +++- 1 file changed, 172 insertions(+), 2 deletions(-) diff --git a/ryu/ofproto/ofproto_v1_0_parser.py b/ryu/ofproto/ofproto_v1_0_parser.py index 8a141bd..e7a02b5 100644 --- a/ryu/ofproto/of

[Ryu-devel] [PATCH 1/3] nx_match: add MFField parser

2013-03-26 Thread OHMURA Kei
Signed-off-by: OHMURA Kei --- ryu/ofproto/nx_match.py | 128 +++ 1 file changed, 118 insertions(+), 10 deletions(-) diff --git a/ryu/ofproto/nx_match.py b/ryu/ofproto/nx_match.py index 63d35ec..715129c 100644 --- a/ryu/ofproto/nx_match.py +++ b/ryu/of

Re: [Ryu-devel] Fwd: how to find ports' ipv6 address with nx_match?

2013-03-26 Thread OHMURA Kei
2013/3/21 jian lee : > Thanks for your help! > I have being looking for NXST_FLOW and nx_flow_stats_request which you > mentioned last time all the day,and only find them in open vswitch's > nicira-ext.h,but in ryu I found nothing.And you know if you want to find a Hi, I've implemented nx_flow_sta