Re: [Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2016-01-18 Thread HITESH PATEL
Hi Team, I have develop Vxlan tunnel application with help of rest_router ryu application which is able to handle tunnel traffic. I want to implement application such that it can handle tunnel as well as normal traffic means i can ping to google.com from vm connected to VTEP. please help me to do

Re: [Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2016-01-11 Thread HITESH PATEL
Hi Team, i want to implement VxLAN tunnel between two VTEP using OVS which should able to handle Normal as well as VxLAN Tunnel traffic for VM connected to VTEP. AT this point i have implemeted tunnel between two VTEP and able to handle VxLAN tunnel packet between VM connected to VTEP. I want tha

Re: [Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2016-01-07 Thread Yusuke Iwase
Hi, rest_router.py maintains the rules in itself for each siwtch, and returns them through REST API. But if DPSET (unregister) event received, rest_router.py will assume a switch are disconnected from Ryu and will discard the rules for that switch. Because rest_router.py observes DPSET events in

Re: [Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2016-01-04 Thread HITESH PATEL
Hi Iwase, only switch with name router is connected to controller and due to DPSET event after connection reset all rule are vanish from router. So can you please suggest how to handle DPSET event for register and unregister router to application. Thanks, Hitesh On Mon, Jan 4, 2016 at 1:10 PM,

Re: [Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2016-01-03 Thread Yusuke Iwase
Hi, On 2015年12月30日 02:23, HITESH PATEL wrote: > Hi Team, > > i want to run ryu rest_router application with real network with controller > running at remote machine.my topology is as below > > Inline image 1 > > i have set up rules as per rest_router application but not working.There is > als

Re: [Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2015-12-29 Thread HITESH PATEL
Hi Team, i want to run ryu rest_router application with real network with controller running at remote machine.my topology is as below [image: Inline image 1] i have set up rules as per rest_router application but not working.There is also DPSET event for disconnect occurs and all flow vanish fr

Re: [Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2015-12-25 Thread HITESH PATEL
Hi Team, Merry Christmas to all Team member. I want to create RYU application for following topology which should able to create VxLAN tunnel between two VTEP. i have knowledge of how to develop RYU SDN application and i have go through Rest_firewall and Rest_router application. Please suggest m

Re: [Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2015-12-24 Thread Yusuke Iwase
Hi, What does "de-capsulate VxLAN tunnel packet" mean? Analysing packets like the packet library or a kind of the OpenFlow action like "pop tag actions"? http://osrg.github.io/ryu-book/en/html/packet_lib.html If it means analysing packets, currently, the packet library of Ryu does not support

Re: [Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2015-12-23 Thread HITESH PATEL
Hi Team, Thanks for reply. I have created VxLAN tunnel using Ovs-vsctl and Ovs-ofctl command but i want to implement that using RYU Application. My problem is that i don't know how to de-capsulate VxLAN tunnel packet, Please anyone suggest me for VxLAN tunnel packet decapsulation. Thanks, Hitesh

Re: [Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2015-12-23 Thread Yusuke Iwase
Hi, How about using the Tunnel ID match field? Though the settings of the VxLAN is depending on your switch, Ryu can specify the VxLAN logical port as the Tunnel ID field in match. For more details of the Tunnel ID match field, please refer to the "7.2.3.9 Pipeline Match Fields" in OpenFlow Spec

Re: [Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2015-12-23 Thread HITESH PATEL
Hi Team Can any suggest how to de-capsulate VxLAN tunnel packet in RYU Application. Thanks, Hitesh Patel On Sat, Dec 12, 2015 at 12:06 PM, HITESH PATEL <14mec...@nirmauni.ac.in> wrote: > Hi Team, > > I have some basic idea of how to develop RYU application for Learning > switch,rest Router but

[Ryu-devel] How to Develop RYU Application for VxLAN tunnel implement

2015-12-11 Thread HITESH PATEL
Hi Team, I have some basic idea of how to develop RYU application for Learning switch,rest Router but i don't know how to write VxLAN tunnel application in RYU. please provide some hint for VxLAN tunnel implement using RYU. Thanks, Hitesh Patel ---