Re: [Ryu-devel] Issue in bmp client

2015-01-08 Thread ISHIDA Wataru
Hi, Tsuboi-san I've reproduced the problem and sent a patch to fix this. Could you check it? Thanks On 2015/01/05 21:00, Toshiki Tsuboi wrote: > Hi,Team > > I’ve found the issue in bmp.py. > > In spite of receiving a update message from eBGP router, Ryu BMP client can’t > send "Route Monitor

[Ryu-devel] [PATCH 2/3] bmpstation: bug fix. stop closing fds which are in use.

2015-01-08 Thread ISHIDA Wataru
Signed-off-by: ISHIDA Wataru --- ryu/app/bmpstation.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ryu/app/bmpstation.py b/ryu/app/bmpstation.py index a96500f..2ef5c64 100644 --- a/ryu/app/bmpstation.py +++ b/ryu/app/bmpstation.py @@ -93,5 +93,3 @@ class BMPStation(app_manager.RyuApp):

[Ryu-devel] [PATCH 1/3] bgp: bug fix of bmp client

2015-01-08 Thread ISHIDA Wataru
hold a raw update_msg in ReceivedRoute to deliver unmodified update msg to bmp server. this patch also removes some redunduncy in peer.py Signed-off-by: ISHIDA Wataru --- ryu/services/protocols/bgp/bmp.py | 5 +- ryu/services/protocols/bgp/peer.py | 122 -

[Ryu-devel] [PATCH 3/3] ospf: fix wrong OSPF LSA type

2015-01-08 Thread ISHIDA Wataru
Signed-off-by: ISHIDA Wataru --- ryu/lib/packet/ospf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/lib/packet/ospf.py b/ryu/lib/packet/ospf.py index 0dfda1a..d1ee33a 100644 --- a/ryu/lib/packet/ospf.py +++ b/ryu/lib/packet/ospf.py @@ -352,7 +352,7 @@ class SummaryLSA(

Re: [Ryu-devel] How to get the topology information in ryu

2015-01-08 Thread Padma Jayasankar
Hi, Now shortestpath is working with my topology..i am able to ping b/w the hosts. But, when i am trying to make a link down, the updated topology is not getting reflected in shortestpath. According to my understanding, i have to add handlers in the app for EventLinkAdd and EventLinkDelete. Is

[Ryu-devel] [PATCH] bgp: support of understanding assigned mpls-label for prefix_add in vpnv4

2015-01-08 Thread Toshiki Tsuboi
Signed-off-by: Toshiki Tsuboi --- ryu/services/protocols/bgp/bgpspeaker.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/services/protocols/bgp/bgpspeaker.py b/ryu/services/protocols/bgp/bgpspeaker.py index 6479bf8..2f904a6 100644 --- a/ryu/services/protocols/bgp/bgpspe

Re: [Ryu-devel] doubt about @set_ev_cls

2015-01-08 Thread Yusuke Iwase
Hi Padma, On 2015年01月09日 02:13, Padma Jayasankar wrote: > Hi, > If i want to do a set of actions for more than one events like > EventLinkAdd,EventLinkDelete, how should i specify that in @set_ev_cls().. > Please clarify > > For one event, v have to use like this. > @set_ev_cls(event.EventLin

[Ryu-devel] doubt about @set_ev_cls

2015-01-08 Thread Padma Jayasankar
Hi, If i want to do a set of actions for more than one events like EventLinkAdd,EventLinkDelete, how should i specify that in @set_ev_cls().. Please clarify For one event, v have to use like this. @set_ev_cls(event.EventLinkAdd) def proc() But if i want to do the proc for EventLinkDelete too,