Changes between Version 63 and Version 64 of GENIRacksHome/USIgniteInstageniRacks/ConfirmationTestStatus


Ignore:
Timestamp:
05/11/17 13:45:05 (7 years ago)
Author:
lnevers@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIRacksHome/USIgniteInstageniRacks/ConfirmationTestStatus

    v63 v64  
    142142
    143143== OF 1.3 Controller for IG-ST-6 ==
     144
    144145Testing used both FloodLight and Ryu Controllers.
    145146
    146 === FloodLight Controller ==
     147=== !FloodLight Controller ===
    147148
    148149The latest FloodLight checkout of the Master branch was used (commit b5be294d8484d7eab0ed840dd15c6259a3b0eaaa; Date 2017-03-07) with the following changes:
     
    162163Information found in this [https://groups.google.com/a/openflowhub.org/forum/#!topic/floodlight-dev/dM1rOzQJ0d8%5B26-50%5D FloodLight Development thread].
    163164
     165
     166=== Ryu Controller ==
     167The latest Ryu check out of the Master branch was used (commit a197d87375808c4f99b48af3852eb5d1c986a6a9; Date 2017-05-09). Used the !OpenFlow 1.3 Simple Simple Switch with the follow modification to handle the need to use Rule Table ID 100 for HP switches:
     168{{{
     169lnevers@controller:/local/ryu/ryu/app$ diff simple_switch_13.py simple_switch_13_ig.py
     17056a57
     171>         table_id = 100
     17259c60
     173<                                     priority=priority, match=match,
     174---
     175>                                     priority=priority, table_id=table_id, match=match,
     17662c63
     177<             mod = parser.OFPFlowMod(datapath=datapath, priority=priority,
     178---
     179>             mod = parser.OFPFlowMod(datapath=datapath, priority=priority, table_id=table_id,
     180}}}