Hi, Please make your problem more clear...
"netflow_collector" is the module and "netflow_dumper" is the Ryu application you have developed, right? For writing your own Ryu application, please confirm your application inherits app_manager.RyuApp class first. http://ryu.readthedocs.io/en/latest/writing_ryu_app.html#start-writing And, if your application will run without OpenFlow, please returns a thread object at start() method in your application, which thread will be the main thread of your application and ryu-manager will wait this thread. By the default, RyuApp.start() does not return any thread, and ryu-manager will terminate immediately without waiting. https://github.com/osrg/ryu/blob/master/ryu/base/app_manager.py#L174-L178 Thanks, Iwase On 2016年10月25日 00:50, Mar Ade wrote: > Hello i have put netflow_collector in xflow file and i am trying to use > netflow_dumper but the problem is that when i call ryu-manager with netflow > dumper , it is initiating and then it terminates without waiting netflow > packets.Any ideas?Thanks in advance,Marinos > > > > ------------------------------------------------------------------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, SlashDot.org! http://sdm.link/slashdot > > > > _______________________________________________ > Ryu-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/ryu-devel > ------------------------------------------------------------------------------ The Command Line: Reinvented for Modern Developers Did the resurgence of CLI tooling catch you by surprise? Reconnect with the command line and become more productive. Learn the new .NET and ASP.NET CLI. Get your free copy! http://sdm.link/telerik _______________________________________________ Ryu-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/ryu-devel
