Changes between Version 14 and Version 15 of HowTo/WriteOFv3Rspecs


Ignore:
Timestamp:
09/30/11 11:36:42 (13 years ago)
Author:
nriga@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowTo/WriteOFv3Rspecs

    v14 v15  
    216216   </openflow:datapath>
    217217      }}}
     218
     219   * the matches on the packet header tags have very similar names you just need to append openflow: before them, e.g. <dl_type> is now <openflow:dl_type>. All the packet header matches are now enclosed in an <openflow:packet> tag. Not all tags support ranges any more, but they all support lists. Check the [wiki:HowTo/WriteOFv3Rspecs/Spec#Filterelements specifications]
     220
     221   {{{
     222#!xml
     223OPENFLOW v1-2
     224   <dl_type from="2048" to="2054"/>
     225   <nw_dst from="10.42.15.0" to="10.42.15.255"/>
     226
     227OPENFLOW v3
     228   <openflow:packet>
     229      <openflow:dl_type value="2048, 2049, 2050, 2051, 2052, 2053, 2054"/>
     230      <openflow:nw_dst value="10.42.15.0/24" />
     231   </openflow:packet>
     232   }}}