Re: [Ryu-devel] How instantiate BGPSpeaker

2018-07-08 Thread Yusuke Iwase
Hi Marcio, Yes, with “bgp/application.py”, BGPSpeaker will be running until you explicitly stopping it. Thanks, Iwase 2018/07/09 0:09、Marcio Vinicius de Queiroz Santos のメール: > Iwase, > > Thanks. It worked and bgp was instantiated. I have a dumb question but I'm > beginner in Python and Ryu

Re: [Ryu-devel] How instantiate BGPSpeaker

2018-07-08 Thread Marcio Vinicius de Queiroz Santos
Iwase, Thanks. It worked and bgp was instantiated. I have a dumb question but I'm beginner in Python and Ryu framework. Now, is only implement my logic and use BGPSpeaker methods according my needs that the bgp will be running continuously? 2018-07-08 5:48 GMT+00:00 Yusuke Iwase : > Hi Marcio, >

Re: [Ryu-devel] How instantiate BGPSpeaker

2018-07-07 Thread Yusuke Iwase
Hi Marcio, Does the following help you? http://ryu.readthedocs.io/en/latest/app/bgp_application.html This document describes how to instantiate simple BGP application with a configuration file, and how to integrate this app with your Ryu app. Thanks, Iwase 2018/07/06 23:10、Marcio Vinicius de

[Ryu-devel] How instantiate BGPSpeaker

2018-07-06 Thread Marcio Vinicius de Queiroz Santos
Dear, I have a question that I think is simple to you. How could I instantiate a BGPSpeaker in Ryu that run continously? I want to use the BGPSpeaker class to instantiate a traditional BGP process. passing, as argument, its router_id, neighbors and etc... Could you help me? I used the example in