Re: [Ryu-devel] Can we run ryu controller and GUI application in single command

2014-10-27 Thread Yi Tseng
Hi Kiran, I just tried, and my topology is correct, maybe you can run "mn -c" to clean up before you create a new topology. Takeshi 2014-10-27 13:06 GMT+08:00 Kiran Kumar : > Hi Takeshi, > Thanks for the mail. > > Yes, I did noticed that. But now my only concern is topology. > Could you tell m

Re: [Ryu-devel] Can we run ryu controller and GUI application in single command

2014-10-26 Thread Kiran Kumar
Hi Takeshi, Thanks for the mail. Yes, I did noticed that. But now my only concern is topology. Could you tell me why my liner topology appers like a mesh topology when I run with simpleswitch.py ? Or can you please point me the right source to explore it ? Thanks & Regards Kiran Rokkam On Sun, O

Re: [Ryu-devel] Can we run ryu controller and GUI application in single command

2014-10-26 Thread Yi Tseng
Hi Kiran, *./ryu/app/simple_switch_13.py *can store mac-to-port data and add flow entry to switch, when it is not running, the packet can't reach to the host because there is no flow entry in the switch and no packet-in handler (*https://github.com/osrg/ryu/blob/master/ryu/app/simple_switch_13.py#

Re: [Ryu-devel] Can we run ryu controller and GUI application in single command

2014-10-26 Thread Kiran Kumar
Hi Takeshi, Thanks for your quick reply. I'm running following command in ubuntu. *sudo mn --topo linear,4 --mac --controller remote --switch ovsk* As suggested when I run the following command, I see a complete mesh topology instead of linear in GUI.But I achieved my purpose, I can ping the host

Re: [Ryu-devel] Can we run ryu controller and GUI application in single command

2014-10-26 Thread Yi Tseng
Hi Just add your ryu application to argument PYTHONPATH=. ./bin/ryu-manager --observe-links ./ryu/app/gui_topology/gui_topology.py ./ryu/app/simple_switch_13.py Best regards. Takeshi 2014-10-27 9:02 GMT+08:00 Kiran Kumar : > Hi Team, > I'm new to RYU controller. > > I'm trying to run gui_topo

[Ryu-devel] Can we run ryu controller and GUI application in single command

2014-10-26 Thread Kiran Kumar
Hi Team, I'm new to RYU controller. I'm trying to run gui_topology app and ryu controller at the same. To start topology diagram PYTHONPATH=. ./bin/ryu run --observe-links ryu/app/gui_topology/gui_topology.py To start ryu controller PYTHONPATH=. ./bin/ryu-manager ryu/app/simple_switch_13.py