Re: [Ryu-devel] Patch for Typos and Incorrect Values in OpenFlow Header files

2014-09-12 Thread FUJITA Tomonori
On Tue, 9 Sep 2014 09:27:15 -0700 Sriram wrote: > From daa2ab2f6e1e7e52232bae2803167ae2673e18f2 Mon Sep 17 00:00:00 2001 > From: Sriram Natarajan > Date: Mon, 8 Sep 2014 23:46:31 -0700 > Subject: [PATCH] Fix-Incorrect-Enum-Names-and-Values OpenFlow 1.3 and 1.4 > header files > > --- > ryu/ofp

Re: [Ryu-devel] [PATCH] bgp: local preference support

2014-09-12 Thread FUJITA Tomonori
On Wed, 10 Sep 2014 17:28:05 +0900 Hiroshi Yokoi wrote: > add local preference support in bgp. > It is possible to apply local preference to specific paths by using > AttributeMap. > > Unfortunately this patch supports only IPv4 path and I'm going to start > writing patches > for other route f

Re: [Ryu-devel] how to use sflow

2014-09-12 Thread FUJITA Tomonori
On Tue, 9 Sep 2014 10:10:13 -0500 Adrian Lara wrote: > Hi folks! I'm new to Ryu and I'm working on elephant flow detection. What's > the best way to start using sflow? I saw this driver: > http://comments.gmane.org/gmane.network.ryu.devel/3651 but I get the error > attached. > > If there's an ea

Re: [Ryu-devel] [PATCH 1/2] ryu.cfg: Fix a comment

2014-09-12 Thread FUJITA Tomonori
On Thu, 11 Sep 2014 13:55:25 +0900 YAMAMOTO Takashi wrote: > Signed-off-by: YAMAMOTO Takashi > --- > ryu/cfg.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied both, thanks. -- Want excitement? Manuall

Re: [Ryu-devel] [PATCH] ofctl_v1_0: correct flow modify message

2014-09-12 Thread FUJITA Tomonori
On Thu, 11 Sep 2014 14:49:19 +0900 Minoru TAKAHASHI wrote: > following fields is not set at mod_flow_stats command: > > * out_port, buffer_id > > this patch fixes this problem. > > Signed-off-by: Minoru TAKAHASHI > --- > ryu/lib/ofctl_v1_0.py | 6 +- > 1 file changed, 5 insertions(+),

Re: [Ryu-devel] [PATCH] ofp_pktinfilter: add 'logging' option

2014-09-12 Thread FUJITA Tomonori
On Wed, 10 Sep 2014 16:23:36 +0900 Satoshi Kobayashi wrote: > When packet_in_filter discards a packet, it is always logging. However, > it may be felt noisy. > > Signed-off-by: Satoshi Kobayashi > --- > ryu/lib/ofp_pktinfilter.py | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) Ap

Re: [Ryu-devel] [PATCH 1/3] sw test tool: support specifying the port number

2014-09-12 Thread FUJITA Tomonori
On Fri, 12 Sep 2014 17:32:28 +0900 Minoru TAKAHASHI wrote: > You can specify the port number in the options when sw test tool is started. > The example is as follows: > > ryu-manager --test-switch-target_recv_port 4 (default:1) > --test-switch-target_send_port_1 5 (default:2) >

[Ryu-devel] [PATCH 3/3] sw test tool: add unit test

2014-09-12 Thread Minoru TAKAHASHI
Signed-off-by: Minoru TAKAHASHI --- ryu/tests/switch/__init__.py | 0 ryu/tests/unit/app/test_tester.py | 464 ++ 2 files changed, 464 insertions(+) create mode 100644 ryu/tests/switch/__init__.py create mode 100644 ryu/tests/unit/app/test_tester.py d

[Ryu-devel] [PATCH 1/3] sw test tool: support specifying the port number

2014-09-12 Thread Minoru TAKAHASHI
You can specify the port number in the options when sw test tool is started. The example is as follows: ryu-manager --test-switch-target_recv_port 4 (default:1) --test-switch-target_send_port_1 5 (default:2) --test-switch-target_send_port_2 6 (default:3)

[Ryu-devel] [PATCH 2/3] sw test tool: add a comment about specifying the port number support

2014-09-12 Thread Minoru TAKAHASHI
Signed-off-by: Minoru TAKAHASHI --- ryu/tests/switch/tester.py | 12 1 file changed, 12 insertions(+) diff --git a/ryu/tests/switch/tester.py b/ryu/tests/switch/tester.py index 6508bec..1f14b89 100644 --- a/ryu/tests/switch/tester.py +++ b/ryu/tests/switch/tester.py @@ -74,6 +74,18