[Ryu-devel] [PATCH 2/2] rest_qos: fix error of additional a qos rule with "priority"

2014-12-07 Thread Minoru TAKAHASHI
Currently, rest_qos is impossible to set the "priority" of QoS rule on a switch. Also, "priority" is should be described in the same depth as "match" and "actions". This patch fixes these problems. Now, rest_qos is possible to set the "priority" with the following curl command. e.g.) $ curl -X

[Ryu-devel] [PATCH 0/2] rest_qos improvement

2014-12-07 Thread Minoru TAKAHASHI
following patches improve rest_qos. Minoru TAKAHASHI (2): rest_qos: fix a comment rest_qos: fix error of additional a qos rule with "priority" ryu/app/rest_qos.py | 18 +- 1 file changed, 13 insertions(+), 5 deletions(-) -- 1.9.1 --

[Ryu-devel] [PATCH 1/2] rest_qos: fix a comment

2014-12-07 Thread Minoru TAKAHASHI
Signed-off-by: Minoru TAKAHASHI --- ryu/app/rest_qos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/app/rest_qos.py b/ryu/app/rest_qos.py index 537639f..c7a3b13 100644 --- a/ryu/app/rest_qos.py +++ b/ryu/app/rest_qos.py @@ -100,7 +100,7 @@ from ryu.ofproto import inet

Re: [Ryu-devel] Modifying Flows based on link bandwidth

2014-12-07 Thread FUJITA Tomonori
On Tue, 2 Dec 2014 21:08:14 -0800 Sakib Shaikh wrote: > I am using RYU to do SDN for routing traffic to links with better bandwidth > in a multipath topology. > > I have a mininet topology such that there are 4 switches and 4 hosts (h1, > h2, h3, h4, s1, s2, s3, s4). > > The links are setup suc

Re: [Ryu-devel] [Ryu-dev] How to deploy OSPF in ryu controller?

2014-12-07 Thread FUJITA Tomonori
On Fri, 5 Dec 2014 17:54:45 +0800 Binayak Kar wrote: > I am using ryu controller for my experiment. > In the initial stage I am running the topology by using simple_forwarding > and stp protocols. > > I want to use OSPF for routing in the ryu controller. > Can any one help me to figure out how t

Re: [Ryu-devel] [PATCH] bgp: support new handler in case of changing BGP session

2014-12-07 Thread FUJITA Tomonori
On Sat, 6 Dec 2014 02:46:33 +0900 Toshiki Tsuboi wrote: > When BGP session goes up/down, BGPSpeaker can detect changing the session. > > Signed-off-by: Toshiki Tsuboi > --- > doc/source/library_bgp_speaker.rst | 6 +- > ryu/services/protocols/bgp/bgpspeaker.py | 36 > ++