[Ryu-devel] install ryu in debian 8.0

2016-01-30 Thread mehran shetabi
hi, i want to install ryu from the source code in debian 8.0 , but i got this error: error in ryu setup command: Invalid environment marker: (python_version >= '2.7') how can i fix it? thank you, ... mehran shetabi PhD student Computer Engineerin

Re: [Ryu-devel] [PATCH] doc: remove obsolete OpenStack info

2016-01-30 Thread FUJITA Tomonori
On Sun, 31 Jan 2016 14:22:08 +0900 (JST) FUJITA Tomonori wrote: >>From 0b00bfb2748bf07ee4db0bbeb68e696664137fa2 Mon Sep 17 00:00:00 2001 > From: FUJITA Tomonori > Date: Sun, 31 Jan 2016 14:20:38 +0900 > Subject: [PATCH] doc: remove obsolete OpenStack info > > ofagent is obsolete. Ryu became the

Re: [Ryu-devel] [PATCH] Better validate parameters to constructors better in lib/packet/icmp.py

2016-01-30 Thread FUJITA Tomonori
On Sun, 31 Jan 2016 06:01:11 + Victor Orlikowski wrote: > Re-submitting, at Fujita-San's request; patch both inline and attached. > > According to RFC 4884 (which supersedes RFC 792), the Destination Unreachable > and Time Exceeded ICMP message get a new “length” field. > This length field,

[Ryu-devel] [PATCH] Better validate parameters to constructors better in lib/packet/icmp.py

2016-01-30 Thread Victor Orlikowski
Re-submitting, at Fujita-San's request; patch both inline and attached. According to RFC 4884 (which supersedes RFC 792), the Destination Unreachable and Time Exceeded ICMP message get a new “length” field. This length field, for ICMPv4, is interpreted in 32 bit units. In the constructor, we can

Re: [Ryu-devel] [PATCH] Better validate parameters to constructors better in lib/packet/icmp.py

2016-01-30 Thread Victor Orlikowski
On Jan 30, 2016, at 11:53 PM, FUJITA Tomonori wrote: > > Looks good but I can't cleanly apply this (seems it's malformed). Can > you resend? But of course; give me a few minutes to update my tree. Best, Victor -- Victor J. Orlikowski <> vjo@[cs.]duke.edu --

[Ryu-devel] [PATCH] doc: remove obsolete OpenStack info

2016-01-30 Thread FUJITA Tomonori
>From 0b00bfb2748bf07ee4db0bbeb68e696664137fa2 Mon Sep 17 00:00:00 2001 From: FUJITA Tomonori Date: Sun, 31 Jan 2016 14:20:38 +0900 Subject: [PATCH] doc: remove obsolete OpenStack info ofagent is obsolete. Ryu became the part of OVS agent. Signed-off-by: FUJITA Tomonori --- README.rst | 3 ---

Re: [Ryu-devel] [PATCH] Better validate parameters to constructors better in lib/packet/icmp.py

2016-01-30 Thread FUJITA Tomonori
On Tue, 26 Jan 2016 22:39:06 + Victor Orlikowski wrote: > According to RFC 4884 (which supersedes RFC 792), the Destination Unreachable > and Time Exceeded ICMP message get a new “length” field. > This length field, for ICMPv4, is interpreted in 32 bit units. > > In the constructor, we cann

Re: [Ryu-devel] [PATCH] Clean up syntax in services/protocols/bgp/operator/views/base.py to avoid SyntaxErrors

2016-01-30 Thread FUJITA Tomonori
On Thu, 21 Jan 2016 20:36:47 + Victor Orlikowski wrote: > When byte-compiled, base.py in the bgp protocol service generates a large > number of SyntaxErrors for me. > This patch cleans up the SyntaxErrors, while retaining the original > (intended?) semantics. > > Signed-off-by: Victor J. O

Re: [Ryu-devel] [PATCH] Reconnected event additions and cleanups

2016-01-30 Thread FUJITA Tomonori
On Wed, 27 Jan 2016 05:53:15 + Victor Orlikowski wrote: > This patch adds ports to the EventDPReconnected in dpset, and adds an > EventSwitchReconnected to the topology module. > > Signed-off-by: Victor J. Orlikowski Looks a nice new feature. Applied, thanks!

Re: [Ryu-devel] [PATCH] Yet another typo fix

2016-01-30 Thread FUJITA Tomonori
On Wed, 27 Jan 2016 05:54:18 + Victor Orlikowski wrote: > This patch merely cleans up a typo. > > Signed-off-by: Victor J. Orlikowski Applied, thanks. -- Site24x7 APM Insight: Get Deep Visibility into Application

Re: [Ryu-devel] [PATCH] Make sure the last IP in the list is the newest IP

2016-01-30 Thread FUJITA Tomonori
On Fri, 22 Jan 2016 21:29:32 +0800 卓家璘 wrote: > From 0f97d89cbd4478d29ac1b87117aa9933707af034 Mon Sep 17 00:00:00 2001 > From: Chia-Lin Cho > Date: Fri, 22 Jan 2016 21:20:58 +0800 > Subject: [PATCH] Make sure the last IP in the list is the newest IP. > > In the wireless network, when host attac

Re: [Ryu-devel] [PATCH] ImportError fix, error caused by unordered import Link

2016-01-30 Thread FUJITA Tomonori
On Tue, 26 Jan 2016 00:59:05 -0300 Ygor Amaral wrote: > Signed-off-by: Ygor Amaral > --- > ryu/tests/switch/run_mininet.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied, thanks! -- Site24x7 APM Insig

Re: [Ryu-devel] Ryu qestion

2016-01-30 Thread FUJITA Tomonori
Please use the mailing list, On Sat, 30 Jan 2016 18:28:00 + (UTC) Vahid Sadri wrote: > i'm vahid sadri and have a question about ryu app. > Simple_Switch.py is app for Mac_Learning (L2) There is an app for IP_Learning > on ryu? There is a sample application like it: https://github.com/osr

[Ryu-devel] [PATCH v2] Ensure that usage of icmp.dest_unreach and icmp.TimeExceeded in rest_router.py complies with RFC 4884

2016-01-30 Thread Victor Orlikowski
Sigh. Brown paper bag re-submit, to cover an "off-by-one." When using the icmp.dest_unreach and icmp.TimeExceeded classes, we should ensure that it is in compliance with RFC 4884. As such, the data_len parameter passed to the constructor of each should be interpreted in 32 bit units. Furthermore

Re: [Ryu-devel] [PATCH] Message cleanup in ofproto_parser

2016-01-30 Thread FUJITA Tomonori
On Tue, 26 Jan 2016 04:14:06 + Victor Orlikowski wrote: > Minor message text cleanup. > > Signed-off-by: Victor J. Orlikowski Applied, thanks. -- Site24x7 APM Insight: Get Deep Visibility into Application Performa

Re: [Ryu-devel] [PATCH] Typo fixes in lib/packet/bgp.py

2016-01-30 Thread FUJITA Tomonori
On Thu, 21 Jan 2016 20:05:28 + Victor Orlikowski wrote: > A couple of minor typo fixes. > > Signed-off-by: Victor J. Orlikowski Applied, thanks. -- Site24x7 APM Insight: Get Deep Visibility into Application Perfor

Re: [Ryu-devel] [PATCH] Typo cleanup

2016-01-30 Thread FUJITA Tomonori
On Tue, 26 Jan 2016 04:14:41 + Victor Orlikowski wrote: > Minor message text cleanup. > > Signed-off-by: Victor J. Orlikowski Applied, thanks. -- Site24x7 APM Insight: Get Deep Visibility into Application Performa

Re: [Ryu-devel] Drop Python 2.6 support

2016-01-30 Thread Victor Orlikowski
And, upon actually *reading* the link you sent, you already covered that case. ;) Sorry for spamming with re-hashed information. Best, Victor -- Victor J. Orlikowski <> vjo@[cs.]duke.edu > On Jan 30, 2016, at 9:40 AM, Victor Orlikowski wrote: > > The only semi-likely case is that folks still o

Re: [Ryu-devel] Drop Python 2.6 support

2016-01-30 Thread Victor Orlikowski
The only semi-likely case is that folks still on RHEL/CentOS 6 (for various reasons) will have to use python 2.7 from RHSCL, or upgrade to 7. Otherwise, no real impact; most other distributions have moved along from 2.6. Best, Victor -- Victor J. Orlikowski <> vjo@[cs.]duke.edu > On Jan 30, 201

[Ryu-devel] Drop Python 2.6 support

2016-01-30 Thread FUJITA Tomonori
Hi, I plan to drop python 2.6 support at this March release. The Python core team[*1] stopped supporting python 2.6. Some Python libraries started following the same path and trying to support 2.6 becomes painful... For example, most of you already noticed, oslo.config dropped 2.6 support. I tri

Re: [Ryu-devel] [PATCH] packet/bgp: Gaurd against extra data in the buffer

2016-01-30 Thread FUJITA Tomonori
On Tue, 26 Jan 2016 05:01:57 + Jason Kölker wrote: > While attempting to peer with a vendor switch, parsing its > BGPOptParamCapabilityGracefulRestart excepted due to the length of the > identifier tuples not being a multiple of 4 octets. > > It appears that this might be common as other imp

Re: [Ryu-devel] [PATCH 0/3] OVSDB stability improvements

2016-01-30 Thread FUJITA Tomonori
On Wed, 27 Jan 2016 04:20:53 + Jason Kölker wrote: > A few fixes found while troubleshooting ssl connections as well as an > attempt to gracefuly stop as specified by commit c085c0d40. > > ryu/services/protocols/ovsdb/client.py | 11 --- > ryu/services/protocols/ovsdb/manager.py |

[Ryu-devel] [PATCH] test: disable rpc unittest with large file for now

2016-01-30 Thread FUJITA Tomonori
I've pushed the following patch. Someone knows the cause? = >From 5d047524215b8ca31befb367a420ef086ff623c6 Mon Sep 17 00:00:00 2001 From: FUJITA Tomonori Date: Sat, 30 Jan 2016 22:00:19 +0900 Subject: [PATCH] test: disable rpc unittest with large file for now disable the rpc unittest with large