Re: [Ryu-devel] Memory leak with in rya-manager when queried with ryu rya-cli -c

2017-08-20 Thread Iwase Yusuke
Hi Stefan, Sorry for the delay. On 2017年08月10日 18:00, Scheglmann, Stefan wrote: Update: Other than stated in my previous post, it seems like that even connecting with 'ryu rpc-cli --peers=bgp=127.0.0.1:50002’ to a locally running ryu-manager and then closing the session using ‘EOF’, raises t

Re: [Ryu-devel] Error while running a file

2017-08-20 Thread Attitude Killer
Hi Fujimoto I am generating proto==150 using Scapy tool(packet generator). So every time I send a packet from sender_host to receiver_host with (proto = 150 and length < 2000), it should be sent to the controller as packet_in and store in a buffer(list) for 5 seconds according to my changes in the

Re: [Ryu-devel] Error while running a file

2017-08-20 Thread Fujimoto Satoshi
Hi, Sorry, Please confirm me. Your problem is that, Packet-in comes for every packet which matches some condition(proto == 150 and total_len <= 2000), even though flow entry is added in OVS switch, right? I could not make your app work (I don't know how to send packets whose proto is 150), b

Re: [Ryu-devel] Ignoring some packet content in ryu

2017-08-20 Thread Fujimoto Satoshi
Hi, Gourav Sorry for delaying. Currently, no way is provided to ignore some layers (ethernet, ipv4, etc...) for the switch test tool. All you can do is ignoring whole packets at receiving end. By following fix, you can do it: diff --git a/ryu/tests/switch/tester.py b/ryu/tests/switch/tester.p

Re: [Ryu-devel] Error while running a file

2017-08-20 Thread Attitude Killer
Hi Thanks Fujimoto for your response. I corrected that and it is running now. I am stuck with another problem. Here is the code I am running. Everything is going good but I don't understand why there is a flow entry added in ovs switch. As, when a packet arrives it matches the if condition if pr