Thank you very much, again.
Have a nice day.
Em 15 de out de 2017 22:25, "Iwase Yusuke"
escreveu:
> Hi Edison,
>
> According to Ryu-Book, Ryu's LACP library does not seem to support
> aggregations on switch-switch
> connections.
>
> http://osrg.github.io/ryu-book/en/html/link_aggregation.html
>
Thank you for your support Fujimoto
I wanted to send an OFPBarrierRequest because my intention was to have
a point where my Python code waits.
For example, I wanted to send messages to the switch to disable all
ports, and in the end, I send the BarrierRequest to ensure that all
ports are down bef
Currently, with ryu.app.ofctl.api.send_msg(),
a BarrierRequest will send with every messages.
So, using send_msg() with a BarrierRequest will
cause duplex transmission of BarrierRequests.
This commit enables to send a single BarrierRequest
if send_msg() is used with a BarrierRequest
by avoiding se
Hi, Carlos
I've submitted a patch which enables to send a single OFPBarrierRequest:
[PATCH] app/ofctl: Enable to send single BarrierRequest
https://sourceforge.net/p/ryu/mailman/message/36079164/
With this, you can make a waiting point as follows:
for ofp_port in ports:
if
Dears,
I'm trying to use the Ryu as a BGP Speaker in a inter AS environment. Is
there, some way for I see the Ryu RIB(Routing Information Base)? If yes,
could I do some actions in Ryu RIB like remove or edit some route?
This action could be via code ir API.
Thanks a lot for help.
---
This patch enables to support Zebra messages of FRRouting version 3.0
and introduces a flag to switch FRRouting version.
Signed-off-by: IWASE Yusuke
---
ryu/cfg.py | 1 +
ryu/flags.py| 8 ++
ryu/lib/packet/zebra.py | 164 ++