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,
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
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
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
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,