Changes between Version 10 and Version 11 of GENIExperimenter/Tutorials/OpenFlowOVS


Ignore:
Timestamp:
06/22/13 20:07:07 (11 years ago)
Author:
nriga@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/Tutorials/OpenFlowOVS

    v10 v11  
    22
    33== Overview: ==
    4 This is a simple OpenFlow tutorial that will guide you through the writing of simple OpenFlow controllers to showcase some of the OpenFlow capabilities.
     4This is a simple OpenFlow tutorial that will guide you through the writing of simple OpenFlow controllers to showcase some of the OpenFlow capabilities. We are going to write three different controllers:
     5  1. Write a controller that will '''duplicate all the traffic''' of the OpenFlow switch out a specific port
     6  2. ''' TCP Port Forward''' controller. Diverge all traffic destined to host A on TCP port X to TCP port Y
     7  3. '''Proxy Controller'''. Write a controller that will diverge all traffic destined to host A, TCP port X to host B, TCP port Y
     8
    59In this tutorial we are going to use [http://www.openswitch.org OVS] as an OpenFlow switch connected to three hosts.
    610OVS is a software switch running on a compute resource. The other three hosts can only communicate through the OVS switch. Although the controller for the switch can run anywhere in the internet, we are going to run it on the same host as the OVS switch to minimize the required resources.