Re: [Ryu-devel] How to measure the link delay in RYU?

2015-03-26 Thread Flavio Castro
I did a prototype for that by modifying the lldp app. I did work as a proof of concept. One bad thing is that the measurements are not really reliable. I've also seen papers of people doing the same thing with other controller so it should be possible. Just understand that make it reliable is a g

Re: [Ryu-devel] Getting link bandwidth in Ryu

2015-03-26 Thread Sandesh Shrestha
Thank you so much for the reply. The curr_speed value is set to 1000 and the max_speed is set to 0. Is this correct. This seems to be the port speed. What I am interested in is the link bandwidth. How can I get that ? Along with this,I want to know the link status. How can I do that ? In

Re: [Ryu-devel] [PATCH] of_config: hardcoded namespace for edit_config

2015-03-26 Thread YAMAMOTO Takashi
> Ryu of_config library doesn't use namespace, compatible with ofc-server > (howewer, it obtains it with get_config), in edit_config request. > Instead of this, Ryu send request in its own > hardcoded 'urn:onf:of111:config:yang' namespace. > > Signed-off-by: Raman Budny > --- > I try to setup OVS

Re: [Ryu-devel] How to measure the link delay in RYU?

2015-03-26 Thread YAMAMOTO Takashi
hi, afaik, there's no existing ryu apps which do that. just an idea: a. controller-switch latency can be measured using echo requests. b. controller-switch-switch-controller latency can be measured using packet-out/in. (b - 2 * a) might be what you want. YAMAMOTO Takashi > Hi, > > > I at

Re: [Ryu-devel] Getting link bandwidth in Ryu

2015-03-26 Thread YAMAMOTO Takashi
hi, ofp_port has curr_speed/max_speed fields. they might be what you are looking for. see OpenFlow 1.3.4 p.49-50. YAMAMOTO Takashi > Dear All, > > How can we get the link bandwidth in Ryu app. Is there any message from the > switch that gives the link bandwidth. > > > Thanks, > Sandesh Shrest

[Ryu-devel] Getting link bandwidth in Ryu

2015-03-26 Thread Sandesh Shrestha
Dear All, How can we get the link bandwidth in Ryu app. Is there any message from the switch that gives the link bandwidth. Thanks, Sandesh Shrestha -- Dive into the World of Parallel Programming The Go Parallel Website,

[Ryu-devel] How to measure the link delay in RYU?

2015-03-26 Thread Allen
Hi, I attempt to work at QoS experiment and Monitor the network resource in RYU controller. However,I don't know how to measure the link delay in RYU. Does RYU support to measure the delay for every link ? How should I do ? thanks---

Re: [Ryu-devel] Ryu installation with openstack

2015-03-26 Thread YAMAMOTO Takashi
hi, there are two ryu-stuffs in openstack. ie. ryu-plugin and ofagent. i'll assume you meant the latter. (because the former is being deprecated) devstack is the easiest way to install. [1] you have nothing to do manually with ryu cli etc. there's no easy way to see the physical topology. (the lo

Re: [Ryu-devel] Error with Switch.py

2015-03-26 Thread YAMAMOTO Takashi
i guess you edited a wrong copy of the module. please check your python module loading path. YAMAMOTO Takashi > Hi Yamamoto, > > Thank you, yes it works now but when I edited in the original file, I > couldn't see the print statement that I have added. > > Best, > Talal > > On Mar 24, 2015, a

Re: [Ryu-devel] Error with Switch.py

2015-03-26 Thread Talal Alharbi
Hi Yamamoto, Thank you, yes it works now but when I edited in the original file, I couldn't see the print statement that I have added. Best, Talal On Mar 24, 2015, at 1:55 PM, YAMAMOTO Takashi wrote: >> Dear Ryu Expert, >> >> I have tried switch.py module and I have faced the following prob

[Ryu-devel] opnions about BGP services

2015-03-26 Thread zangjunjie508
Hi, teacher, I am very honor to write to you. Now I have some opnions about BGP service. 1. Because BGP peers connect to each other by TCP in port 179, so we think that a flow can be created that packets(update, open, notification, keepalive) matching tcp:179 shuold be sent to controlle

Re: [Ryu-devel] Change port used by REST api

2015-03-26 Thread Yusuke Iwase
Hi Clément, The similar question is already posted. Please refer to the following. - [Ryu-devel] Error[98] address already in use. http://sourceforge.net/p/ryu/mailman/message/32819250/ Thanks On 2015年03月26日 19:48, Clément Rault wrote: > Hi, > > Thanks for your answer. > > But the weird thin

Re: [Ryu-devel] Adding sockets or any other asynchronous process to our Ryu App

2015-03-26 Thread Jason Kölker
Hope you don't mind that I added the mailing list on the cc since I forgot how to mail earlier and dropped it ;) On Thu, Mar 26, 2015 at 9:35 PM, Llorente Santos Jesus wrote: > Thanks a lot for the info, it's certainly useful! I think I would give a try > to your solution, using the hub and gre

Re: [Ryu-devel] Problem : Ryu Install with devstack juno

2015-03-26 Thread fumihiko kakuma
Hi, You seem to use master branch of devstack. Can you try stable/juno branch of devstack? devstack$ git branch -r origin/HEAD -> origin/master origin/master origin/stable/icehouse origin/stable/juno<-- devstack$ On Thu, 26 Mar 2015 10:09:21 +0100 Alioune Ba wrote: > Hi, > I

[Ryu-devel] Ryu installation with openstack

2015-03-26 Thread Alioune Ba
Hi Dear All , I write to you in order to request for your help please.I am beginner with Ryu and I am trying to install it with openstack. I would like to know how what's the best way to install it with openstack: with devstack or using commands lines and could you explain to me the installation

Re: [Ryu-devel] Adding sockets or any other asynchronous process to our Ryu App

2015-03-26 Thread Jason Kölker
On Thu, Mar 26, 2015 at 11:41 AM, Llorente Santos Jesus wrote: > I couldn’t find an elegant way within Ryu to open a socket and listen to it > within my application. At the moment, I am spawning a new thread from my own > app and using select over the socket file descriptor. Is there any other > (

[Ryu-devel] Adding sockets or any other asynchronous process to our Ryu App

2015-03-26 Thread Llorente Santos Jesus
Dear all, I couldn't find an elegant way within Ryu to open a socket and listen to it within my application. At the moment, I am spawning a new thread from my own app and using select over the socket file descriptor. Is there any other (better) way of doing this? I was thinking something like

Re: [Ryu-devel] Change port used by REST api

2015-03-26 Thread Clément Rault
Hi, Thanks for your answer. But the weird thing is that I still get an error. And even if I get a confirmation that the flow are added they are not present... ubuntu@starterkit:~/ryu[03:41] (master)$ PYTHONPATH=~/ryu ~/ryu/bin/ryu-manager --verbose --wsapi-port 9090 ~/ryu/ryu/app/ofctl_rest.py l

Re: [Ryu-devel] Problem : Ryu Install with devstack juno

2015-03-26 Thread Raman Budny
Hi, as I know, ofagent project had been separated into networking-ofagent (http://git.openstack.org/cgit/stackforge/networking-ofagent/). Try to load it with Devstack enable_plugin directive. > Hi Dear all, > I request for your help please. I would like to install ryu as my sdn > controller for m

Re: [Ryu-devel] Problem : Ryu Install with devstack juno

2015-03-26 Thread Alioune Ba
Hi, I tried to reinstall ryu with devstack but I get always the same error. You can see my output in this attached file . Best Regards On 26 March 2015 at 07:46, YAMAMOTO Takashi wrote: > hi, > > your procedure looks ok. > (see > https://github.com/osrg/ryu/wiki/Configuration-OpenStack-OFAgent-