Re: [Ryu-devel] rest_router issue: unable to ping across two VMs connected with GRE Tunnels

2018-11-18 Thread Pynbiang Hadem
Hi, Thanks Toshihiro. I'm still unable to figure out the problem. I'm still unable to ping from h1(in VM1) to 10.0.3.3(in VM2) Any help in this regards would be highly appreciated. Thanks Hadem On Wed, Oct 24, 2018 at 2:30 PM IWAMOTO Toshihiro wrote: > On Fri, 19 Oct 2018 23:56:38 +0900, >

Re: [Ryu-devel] How to Call RyuApp directly in Python Application

2018-11-18 Thread Moh'd Reza Abbasi
I found the following script on the net. I use it to run and debug my ryu apps. You can modify the script according to your need. You need to change the "main_app" to your application name. You should also place this script in the same path as your ryu app (or you might as well specify its path

Re: [Ryu-devel] How to Call RyuApp directly in Python Application

2018-11-18 Thread Soe Ye Htet
Hi, Please let me share what I have known. In python, there is library which is called os package. That package is used to call linux command in python application. Import os In the place that you want to call ryu application, you can write os.system("ryu-manager x"). If you want to run ryu

[Ryu-devel] How to Call RyuApp directly in Python Application

2018-11-18 Thread Ha Nguyen
Hi Ryu Team, I do not want to launch Ryu application via the ryu-manager in Terminal, but rather directly within a Python script. Then I can integrate everything in one python script, instead of calling ryu-manager in Terminal, topology build in another Terminal, and so on. I am looking forward