Re: [Ryu-devel] SSL Connection with Ryu

2013-11-17 Thread YAMAMOTO Takashi
> Hi YAMAMOTO, > > I am following the same link for this. then i have no idea. the example on the page works fine for me. > > > Besides this I'm facing one more issue.I'm not able to consistently > maintain ssl connection between OVS and Ryu Controller after configuring > cert and priv keys as

Re: [Ryu-devel] SSL Connection with Ryu

2013-11-17 Thread sonia verma
Hi YAMAMOTO, I am following the same link for this. Besides this I'm facing one more issue.I'm not able to consistently maintain ssl connection between OVS and Ryu Controller after configuring cert and priv keys associated with them. I mean the configuration that was working yesterday is not wor

[Ryu-devel] [PATCH] doc: update tls example

2013-11-17 Thread YAMAMOTO Takashi
after commit 73ae9dd1 ("solve application dependency via @set_ev_cls"), ryu-manager without explicit apps merely exits. Signed-off-by: YAMAMOTO Takashi --- doc/source/tls.rst | 24 ++-- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/doc/source/tls.rst b/doc/s

Re: [Ryu-devel] SSL Connection with Ryu

2013-11-17 Thread YAMAMOTO Takashi
> Hi all, > > I have configured the private keys and certificates and have established > ssl connection using ryu controller with OVS and the switch is showing > connected true. > However I'm not able to capture packets on wireshark with ssl field. > The packets from controller are still showing t

[Ryu-devel] [PATCH 1/3] test_parser: enable serializer tests for OFPT_EXPERIMENTER

2013-11-17 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/tests/unit/ofproto/test_parser.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ryu/tests/unit/ofproto/test_parser.py b/ryu/tests/unit/ofproto/test_parser.py index c3230ee..9af2272 100644 --- a/ryu/tests/unit/ofproto/test_parser.py +++ b/ryu/tests/u

[Ryu-devel] [PATCH 3/3] of12: implment OFPT_EXPERIMENTER serializer

2013-11-17 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/ofproto/ofproto_v1_2_parser.py | 7 +++ 1 file changed, 7 insertions(+) diff --git a/ryu/ofproto/ofproto_v1_2_parser.py b/ryu/ofproto/ofproto_v1_2_parser.py index 9c1d0fe..39a4e30 100644 --- a/ryu/ofproto/ofproto_v1_2_parser.py +++ b/ryu/ofproto/ofpro

[Ryu-devel] [PATCH 2/3] of13: implment OFPT_EXPERIMENTER serializer

2013-11-17 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi --- ryu/ofproto/ofproto_v1_3_parser.py | 7 +++ 1 file changed, 7 insertions(+) diff --git a/ryu/ofproto/ofproto_v1_3_parser.py b/ryu/ofproto/ofproto_v1_3_parser.py index 4e5cc9e..2ae4a2e 100644 --- a/ryu/ofproto/ofproto_v1_3_parser.py +++ b/ryu/ofproto/ofpro

Re: [Ryu-devel] Bug? (AttributeError: 'tuple' object has no attribute 'serialize')

2013-11-17 Thread arne_goetje
Ah, thanks! Now it works. :) Best Regards! Arne Goetje (高盛華) Accton FAE Team From: Satoshi Kobayashi To: arne_goetje , Cc: "[email protected]" Date: 11/18/2013 10:49 AM Subject:Re: [Ryu-devel] Bug? (AttributeError: 'tuple' object has no attribute 'ser

Re: [Ryu-devel] [PATCH 5/5] dpset: fix a reconnect race

2013-11-17 Thread YAMAMOTO Takashi
> Hello, > > It works, thanks! > > However, when both TCP FIN & retransmission packets sent from switch were > lost, the socket for the older connection remains open on controller host. > (old connections remain ESTABLISHED in netstat.) We can wait for its > timeout, but when I tried to call self

Re: [Ryu-devel] Bug? (AttributeError: 'tuple' object has no attribute 'serialize')

2013-11-17 Thread Satoshi Kobayashi
Hi Arne, I think that this is the cause. -- 142: mpls_label=mpls_label), -- The comma of an end is not needed. It becomes a tuple. Thanks, Satoshi 2013/11/18 arne_goetje > Hi list, > > I get the following when running the attached script in ryu 3.3: > > hub: uncaugh

[Ryu-devel] tester.py cannot handle OpenFlow 1.3

2013-11-17 Thread arne_goetje
Hi List, Currently, the integrated tests in ruy/tests/integrated/ cannot work with OpenFlow 1.3. Any plans to add OF 1.3 functionality? Thanks! Best Regards! Arne Goetje (高盛華) Accton FAE Team -- DreamFactory - Open So

[Ryu-devel] Bug? (AttributeError: 'tuple' object has no attribute 'serialize')

2013-11-17 Thread arne_goetje
Hi list, I get the following when running the attached script in ryu 3.3: hub: uncaught exception: Traceback (most recent call last): File "/usr/local/lib/python2.7/dist-packages/ryu/lib/hub.py", line 48, in _launch func(*args, **kwargs) File "/usr/local/lib/python2.7/dist-packages/ryu/b

Re: [Ryu-devel] [PATCH] solve application dependency via @set_ev_cls

2013-11-17 Thread FUJITA Tomonori
On Fri, 8 Nov 2013 10:20:57 +0900 FUJITA Tomonori wrote: > Currently, ryu always starts ofp application because ryu doesn't know > applications that an user specifies needs ofp application or not. So > you can't run two ryu instances even if one of them doesn't use ofp > application because two i