Re: [Ryu-devel] ImportError: No module named

2014-03-21 Thread FUJITA Tomonori
On Fri, 21 Mar 2014 17:14:52 +0100 Windhya Rankothge wrote: > Hi all, > > I have tried simple_switch.py given in ryu and I was able to run it without > any error.. > > Then I wrote a program to add flows when a switch comes up and I saved it > in the ryu/app directory. My file name is "test.py"

Re: [Ryu-devel] fonfuction about event and _CONTEXT

2014-03-21 Thread FUJITA Tomonori
Please keep the mailing list CC'ed On Fri, 21 Mar 2014 11:04:05 -0500 Dong Mo wrote: > So are the function of context and event equivalent? Are we not recommended > to use context mechanism anymore? > Can I implement the same function of link aggregation by only event system? Not equivalent but

Re: [Ryu-devel] Flow entries in RYU_QOS script for providing QoS to the flows

2014-03-21 Thread FUJITA Tomonori
On Fri, 21 Mar 2014 14:39:54 + "Arya, Renuka [BSD] - MED" wrote: > The RYU-QOS scrip, I am talking about is at : > https://github.com/hu6360567/ryu-qos > > I am using qosBTvms13.py script. I am not sure, if I understood, where to add > entries for providing QoS for a particular flow. I beli

Re: [Ryu-devel] Add flows manualy

2014-03-21 Thread Windhya Rankothge
Thanks alot for the guidance.. On Fri, Mar 21, 2014 at 7:12 AM, FUJITA Tomonori < fujita.tomon...@lab.ntt.co.jp> wrote: > On Wed, 19 Mar 2014 19:28:40 +0100 > Windhya Rankothge wrote: > > > I have been working with POX controller for sometimes and I have moved to > > Ryu very recently.. In POX

Re: [Ryu-devel] Create a flow in advance

2014-03-21 Thread Windhya Rankothge
Thanks alot for the guidance.. On Fri, Mar 21, 2014 at 7:12 AM, FUJITA Tomonori < fujita.tomon...@lab.ntt.co.jp> wrote: > Hi, > > On Thu, 20 Mar 2014 10:06:11 -0500 > Dong Mo wrote: > > > I have the same question. > > It could be that when you receive the SwitchFeature event and then > install

[Ryu-devel] ImportError: No module named

2014-03-21 Thread Windhya Rankothge
Hi all, I have tried simple_switch.py given in ryu and I was able to run it without any error.. Then I wrote a program to add flows when a switch comes up and I saved it in the ryu/app directory. My file name is "test.py".. When I try to start the ryu-manager, I get following error, u99319@ws11

[Ryu-devel] Ryu + Devstack multinode: not able access Guest VMs on Compute Node

2014-03-21 Thread arjun jayaprakash
I followed below guide to bring Ryu Multinode setup: Link:https://github.com/osrg/ryu/wiki/RYU-... Setup: Devstack Controller node is running Ryu Manger SDN and one Compute Node with Ryu Neutron Agent. Created couple of Cirros VMs on both Controller & Compute node, associated floating IP address

Re: [Ryu-devel] Flow entries in RYU_QOS script for providing QoS to the flows

2014-03-21 Thread Arya, Renuka [BSD] - MED
Hi Fujita, Thanks for replying! The RYU-QOS scrip, I am talking about is at : https://github.com/hu6360567/ryu-qos I am using qosBTvms13.py script. I am not sure, if I understood, where to add entries for providing QoS for a particular flow. I believe the following piece of code is setting up

Re: [Ryu-devel] [PATCH v5 0/5] of1.4: Increased message coverage

2014-03-21 Thread Simon Horman
2014/03/21 22:56 "FUJITA Tomonori" : > > On Wed, 19 Mar 2014 15:37:38 +0900 > Simon Horman wrote: > > > I have made a wiki page to summarise the status of OF1.4 support in Ryu > > https://github.com/horms/ryu/wiki/OpenFlow-V1.4-Coverage > > Thanks so much! We can say that Ryu fully supports OF1.4

Re: [Ryu-devel] [PATCH v5 0/5] of1.4: Increased message coverage

2014-03-21 Thread FUJITA Tomonori
On Wed, 19 Mar 2014 15:37:38 +0900 Simon Horman wrote: > I have made a wiki page to summarise the status of OF1.4 support in Ryu > https://github.com/horms/ryu/wiki/OpenFlow-V1.4-Coverage Thanks so much! We can say that Ryu fully supports OF1.4 with this series? > Simon Horman (5): > Allow me

Re: [Ryu-devel] Flow entries in RYU_QOS script for providing QoS to the flows

2014-03-21 Thread FUJITA Tomonori
On Thu, 20 Mar 2014 18:39:07 + "Arya, Renuka [BSD] - MED" wrote: > What we basically want to test next is to provide QoS for different > flows on the basis of tcp/udp ports or IP addressees or other > parameters. I understand RYU has a QoS python script for open flow > 1.3. Really? Which scr

Re: [Ryu-devel] fonfuction about event and _CONTEXT

2014-03-21 Thread FUJITA Tomonori
Hi, On Wed, 19 Mar 2014 11:56:35 -0500 Dong Mo wrote: > Event(request if sync is required) is used to pass information across > different applications, like if I start switches.py and my own app together > and I can send request to switches.py through get_switch() to get switch > info. > > Then

Re: [Ryu-devel] [PATCH] ofctl_v1_2:support whole of match fields

2014-03-21 Thread FUJITA Tomonori
On Wed, 19 Mar 2014 20:11:48 +0900 Kiyonari Harigae wrote: > Hi, > > I tried to support for whole of match field with ofctl_v1_2.(same as > ofctl_v1_3) > Also, changed table_id of get_flow_stats method from fixed 0 to OFPTT_ALL for > enable to select arbitrary table_id by client side. > > Tha