Hi,
> Is there anything ready that I could use?
> How complicated would be to develop a small app with Ryu where
> the OF1.3 device would connect to Ryu+App and Ryu+App
> connect to the OF1.0 app?
Please set all OpenFlow version in the class.
class SimpleSwitch(app_manager.RyuApp):
OFP_VERSIONS = [ofproto_v1_0.OFP_VERSION,
ofproto_v1_3.OFP_VERSION]
msg.datapath.ofproto have the OpenFlow version.
Please conditional branch using the OpenFlow version.
ofproto = msg.datapath.ofproto
if ofproto.OFP_VERSION == ofproto_v1_0.OFP_VERSION:
elif ofproto.OFP_VERSION == ofproto_v1_3.OFP_VERSION:
Please refer to the following for available match field.
OpenFlow1.0:
http://ryu.readthedocs.org/en/latest/ofproto_v1_0_ref.html#flow-match-structure
OpenFlow1.3:
http://ryu.readthedocs.org/en/latest/ofproto_v1_3_ref.html#flow-match-structure
Thanks,
On 2016年04月23日 07:32, Jerônimo Bezerra wrote:
> Hello All,
>
> Just wondering what would be the best approach: I have one OF1.3
> device and an OF1.0 app. This OF1.0 app only creates basic OF entries
> with in_port and dl_vlan, output and mod_dl_vlan. Is there anything
> ready that I could use? How complicated would be to develop a small app
> with Ryu where the OF1.3 device would connect to Ryu+App and Ryu+App
> connect to the OF1.0 app?
>
> I have played a little with Ryu, developing an app is very interesting
> and easy, just need some advice if it will be too complex.
>
> Thanks,
> Jab
>
>
>
>
> ------------------------------------------------------------------------------
> Find and fix application performance issues faster with Applications Manager
> Applications Manager provides deep performance insights into multiple tiers of
> your business applications. It resolves application problems quickly and
> reduces your MTTR. Get your free trial!
> https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
>
>
>
> _______________________________________________
> Ryu-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/ryu-devel
>
------------------------------------------------------------------------------
Find and fix application performance issues faster with Applications Manager
Applications Manager provides deep performance insights into multiple tiers of
your business applications. It resolves application problems quickly and
reduces your MTTR. Get your free trial!
https://ad.doubleclick.net/ddm/clk/302982198;130105516;z
_______________________________________________
Ryu-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/ryu-devel