Changes between Initial Version and Version 1 of GENIExperimenter/Tutorials/GettingStarted_PartII_Labwiki


Ignore:
Timestamp:
05/13/15 10:28:27 (9 years ago)
Author:
divyashri.bhat@gmail.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/Tutorials/GettingStarted_PartII_Labwiki

    v1 v1  
     1= Module A:  Run your first experiment =
     2In this first module of the tutorial you will quickly learn how to design and execute a Lab exercise on a GENI testbed by using !LabWiki.
     3
     4== Introduction ==
     5The goal of this assignment is to implement the learning switch capability that is used by Ethernet switches by using a software-based OpenFlow switch. In the topology shown in the figure, this software switch is to be implemented in node “switch”. All the other nodes represent regular hosts. To realize this implementation of a learning switch, Trema based Openflow controller written in Ruby has to be designed and implemented. The correct functionality of the learning switch can be verified by creating an experiment script in which a node A pings node B – node D in !LabWiki.
     6
     7== Working ==
     8In the topology shown in the figure, the switch node will act as the learning switch, which connect nodes A-D with each other. Whenever any of these nodes ping each other for the first time, the switch does not know the destination address of the node. At this point, the switch node floods the packet to all the nodes it is connected to. When it receives a reply to the flood, this information will be used to populate its switching table. Hereafter,whenever any node wants to ping any other nodes, the switch node will fetch the information from the table. For this purpose, a script called "fdb.rb" is pre-loaded in the switch node. The script offers rudimentary database functionality that is used to maintain the switching table
     9
     10To learn about learning-switch, check out this link: [https://www.opennetworking.org/images/stories/downloads/sdn-resources/white-papers/wp-sdn-newnorm.pdf]
     11
     12To learn about the Trema controller, check out this link:[http://trema.github.io/trema/]
     13
     14[[Image(http://groups.geni.net/geni/raw-attachment/wiki/GEC20Agenda/LabWiki/ModuleA/GEC20_simple_topo.png, 40%)]]
     15
     16== Tutorial Instructions ==
     17{{{
     18#!html
     19
     20
     21<table id="Table_01" height="409" border="0" cellpadding="0" cellspacing="0">
     22        <tr>
     23                <td>
     24                        <a href="http://groups.geni.net/geni/wiki/GEC22Agenda/LabWiki/ModuleA/DesignSetup"><img src="http://groups.geni.net/geni/attachment/wiki/GENIExperimenter/Tutorials/Graphics/design.png?format=raw" width="152" height="152" alt="Design/Setup"></a>
     25               </td>
     26               <td>
     27<ul>
     28             <li><a href="http://groups.geni.net/geni/wiki/GEC22Agenda/LabWiki/ModuleA/DesignSetup">Part I: Design/Setup</a></li>
     29             <ul>
     30                 <li> 1. Obtain Resources </li>
     31             </ul></ul>
     32               </td>
     33        </tr>
     34        <tr>
     35                <td>
     36                        <a href="http://groups.geni.net/geni/wiki/GEC22Agenda/LabWiki/ModuleA/Execute"><img src="http://groups.geni.net/geni/attachment/wiki/GENIExperimenter/Tutorials/Graphics/execute.png?format=raw" width="152" height="143" alt="Execute"></a>
     37                </td>
     38                <td>
     39             <ul>
     40<li><a href="http://groups.geni.net/geni/wiki/GEC22Agenda/LabWiki/ModuleA/Execute">Part II: Execute</a></li>
     41             <ul>
     42                 <li> 2. Configure and Initialize services</li>
     43                  <li> 3. Run your experiment </li>
     44                  <li> Appendix: Hints and Explanations </li>
     45             </ul></ul>
     46                </td>
     47        </tr>
     48        <tr>
     49                <td>
     50                        <a href="http://groups.geni.net/geni/wiki/GEC22Agenda/LabWiki/ModuleA/Finish"><img src="http://groups.geni.net/geni/attachment/wiki/GENIExperimenter/Tutorials/Graphics/finish.png?format=raw" width="152" height="114" alt="Finish"></a>
     51                </td>
     52
     53                <td>
     54             <ul>
     55             <li><a href="http://groups.geni.net/geni/wiki/GEC22Agenda/LabWiki/ModuleA/Finish">Part III: Finish</a></li>
     56             <ul>
     57                 <li> 4. Release Resources </li>
     58             </ul></ul>
     59                </td>
     60
     61        </tr>
     62</table>
     63
     64}}}
     65
     66[wiki:GEC22Agenda/LabWiki Back: LabWiki Tutorial]