Changes between Version 39 and Version 40 of GENIExperimenter/ExperimentExample-OF-FOAM


Ignore:
Timestamp:
04/11/12 10:57:05 (12 years ago)
Author:
lnevers@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/ExperimentExample-OF-FOAM

    v39 v40  
    208208Now we have all the information needed to define the BBN OF resource request RSpec. These are lines that define the ports on habanero:
    209209{{{
    210  
     210
    211211  <openflow:group name="bbn-1750-nodes">
    212212
     
    219219 </openflow:group>
    220220
     221
    221222}}}
    222223
     
    224225
    225226{{{
     227
    226228 <openflow:group name="bbn-1750-3715">
    227229     <openflow:datapath component_id="urn:publicid:IDN+openflow:foam:foam.gpolab.bbn.com+datapath+06:d6:00:12:e2:b8:a5:d0"
     
    233235    </openflow:group>
    234236
    235 
     237}}}
     238In addition each of the groups must be allowed to share traffic:
     239{{{
     240   <openflow:match>
     241
     242      <openflow:use-group name="bbn-1750-nodes" />
     243      <openflow:use-group name="bbn-1750-3715" />
     244
     245      <openflow:packet>
     246        <openflow:dl_type value="0x800,0x806"/>
     247        <openflow:nw_dst value="10.42.11.0/24"/>
     248        <openflow:nw_src value="10.42.11.0/24"/>
     249      </openflow:packet>
     250
     251    </openflow:match>
    236252}}}
    237253
     
    259275}}}
    260276
     277In addition each of the groups must be allowed to share traffic:
     278{{{
     279   <openflow:match>
     280
     281      <openflow:use-group name="clemson-1750-3715" />
     282
     283      <openflow:packet>
     284        <openflow:dl_type value="0x800,0x806"/>
     285        <openflow:nw_dst value="10.42.11.0/24"/>
     286        <openflow:nw_src value="10.42.11.0/24"/>
     287      </openflow:packet>
     288
     289    </openflow:match>
     290
     291}}}
     292
    261293To complete the Clemson OF RSpec see ''Step 3''
    262294
     
    270302These are the lines from the Wisconsin OF Advertisement that should be used in the OF request RSpec:
    271303{{{
     304  <openflow:match>
     305
    272306    <openflow:group name="wisconsin-nodes-1750">
    273307      <openflow:datapath component_id="urn:publicid:IDN+openflow:foam:foam.wail.wisc.edu+datapath+06:d6:00:23:47:cc:44:00"
     
    285319      </openflow:datapath>
    286320    </openflow:group>
     321
     322  </openflow:match>
     323
     324}}}
     325
     326
     327In addition each of the groups must be allowed to share traffic:
     328{{{
     329    <openflow:match>
     330
     331      <openflow:use-group name="wisconsin-nodes-1750" />
     332      <openflow:use-group name="wisconsin-1750-3715" />
     333
     334      <openflow:packet>
     335        <openflow:dl_type value="0x800,0x806"/>
     336        <openflow:nw_dst value="10.42.11.0/24"/>
     337        <openflow:nw_src value="10.42.11.0/24"/>
     338      </openflow:packet>
     339
     340    </openflow:match>
    287341
    288342