On Fri, 6 Mar 2015 04:21:48 +0000 Ramesh Devarajan <ramesh.devara...@radisys.com> wrote:
> I am bit confused on the usage of experimenter match fields in Ryu. > Lets take the example of 'tcp_flags'. > Now how do I use this in my match field. > My test switch supports plain openflow version 1.3, without any extensions. > How do I use the experimenter match fields to encode (i.e use in flow mod > messages) and decode (i.e decode in table features). > Some sample code examples would be of great help. > I am using the new Ryu 3.19 controller. You can build OFPMatch like standard match fields: OFPMatch(in_port=1, tun_ipv4_dst="1.1.1.1") You can see what "tun_ipv4_dst" is and what fields you can use: https://github.com/osrg/ryu/blob/master/ryu/ofproto/ofproto_v1_3.py#L1190 ------------------------------------------------------------------------------ Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now. http://goparallel.sourceforge.net/ _______________________________________________ Ryu-devel mailing list Ryu-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ryu-devel