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
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):
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 -
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(
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
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
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
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,