Re: [Ryu-devel] ryu-manager can't load app from file which has same name as installed module

2017-03-23 Thread Iwase Yusuke
Hi Brad, Thank you for your reporting! Yes, as you said, ryu.utils.import_module() prefers to loading a Python module than file paths. In order to solve this problem, we need to change the priority (Python module or file path), I guess. You mean "file path should be preferred", right? Thanks,

[Ryu-devel] [PATCH 1/2] bgp/peer: Fix invalid NEXT_HOP in UPDATE message

2017-03-23 Thread Satoshi Fujimoto
Currently, when BGPSpeaker advertises IPv4/6 unicast routes via an iBGP connection, if the Nexthop in the route is omitted, BGP Speaker advertises the Nexthop with the unspecified address. This route can be evaluated as invalid by the receiving router. This patch fixes it by making BGPSpeaker to ad

[Ryu-devel] [PATCH 2/2] bgp/info_base: Refactor has_nexthop() method

2017-03-23 Thread Satoshi Fujimoto
Signed-off-by: Satoshi Fujimoto --- ryu/services/protocols/bgp/info_base/base.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ryu/services/protocols/bgp/info_base/base.py b/ryu/services/protocols/bgp/info_base/base.py index fbf3bc6..68196df 100644 --- a/ryu/services/prot

[Ryu-devel] RYU integration with Tshark

2017-03-23 Thread Kunal Goswami
Hi everyone, I'm currently working with RYU for developing an intrusion detection system. I wanted to use "pyshark" module from python to keep a check on the packet statistics. Does that need me to develop a library module? like the one in "snortlib.py" ? Or there is a different

Re: [Ryu-devel] Distributed controller based on Ryu

2017-03-23 Thread FUJITA Tomonori
On Tue, 21 Mar 2017 11:26:16 +0100 Tao Li wrote: > I am trying to develop a distributed controller for my research work > and it would be good to refer to other existing > implementations. Although there are several papers claiming they > have implemented a distributed control plane based on Ryu,