Re: [Ryu-devel] Regarding traffic capturing

2017-05-14 Thread Tarun Kumar Sarkar
Hi, I don't know if I understand your requirements correctly. Once you have the packet in message in the controller you can aggregate them any way. Regards, Tarun Quoting Attitude Killer : > Hi Tarun > > Thanks for your prompt reply. > > I understand your point, I can retrieve source IP or M

[Ryu-devel] [PATCH 1/3] fix dhcp6.py bug using python3

2017-05-14 Thread 胡鼎原
--- ryu/lib/packet/dhcp6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/lib/packet/dhcp6.py b/ryu/lib/packet/dhcp6.py index b3753dc1..3f917433 100644 --- a/ryu/lib/packet/dhcp6.py +++ b/ryu/lib/packet/dhcp6.py @@ -222,7 +222,7 @@ class options(stringify.StringifyMixin):

Re: [Ryu-devel] help-- rest_vtep : ping between s1h1 and s2h1 not working

2017-05-14 Thread Iwase Yusuke
Hi Tessy, Sorry for the delay. On my environment, rest_vtep works as expected. If routes were advertised correctly, please confirm the following points; - Make sure the virtual networks are registered. e.g.) curl -X GET http://localhost:8080/vtep/networks | python -m json.tool { "10": {

Re: [Ryu-devel] Regarding traffic capturing

2017-05-14 Thread Attitude Killer
Hi Tarun Thanks for your prompt reply. I understand your point, I can retrieve source IP or MAC from the packet and match it but I want to generate packets from several hosts and send them as packet_in so that they can be aggregated. Can you please suggest any other way? Thank You

Re: [Ryu-devel] Regarding traffic capturing

2017-05-14 Thread Tarun Kumar Sarkar
Dear Sheenam, A hints: You have to set the rule in the network elements (switch or router) where the match condition would be your source host IP or MAC (for which you want all packet directed to the controller) and action would be CONTROLLER. How to add a rule in the network elements that d

[Ryu-devel] Regarding traffic capturing

2017-05-14 Thread Attitude Killer
Hi I am working on packets aggregation ryu application which will receive packet_in of every packet generated using the traffic generator like iperf, etc. I need someone's help to know the way how every packet(udp) generated from iperf will be sent as a packet_in to the controller. I want every p