= Intro to OpenFlow using OVS = Tiny URL: http://tinyurl.com/geniof == Overview: == This 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: 1. Write a controller that will '''duplicate all the traffic''' of the !OpenFlow switch out a specific port 2. ''' TCP Port Forward''' controller. Diverge all traffic destined to host A on TCP port X to TCP port Y 3. '''Proxy Controller'''. Write a controller that will diverge all traffic destined to host A, TCP port X to host B, TCP port Y In this tutorial we are going to use [http://openvswitch.org/ Open vSwitch (OVS)] as an !OpenFlow switch connected to three hosts. OVS 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. For this tutorial we are going to use the [http://osrg.github.io/ryu/ Ryu controller], this is just an example of [wiki:OpenFlow/Controllers many controllers]. [[Image(GENIExperimenter/Graphics:simple_ovs.png)]] == Prerequisites: == - A GENI account, if you don't have one [wiki:SignMeUp sign up!] - Familiarity with how to reserve GENI resources with any of the GENI Tools (GENI Experimenter Portal, Omni, Flack). If you don't know you can take any of the tutorials: * Reserving resources using Flack [wiki:GENIExperimenter/Tutorials/RunHelloGENI tutorial] * Reserving resources using Omni [wiki:GENIExperimenter/Tutorials/HelloOmni tutorial] - Familiarity with [wiki:HowTo/LoginToNodes logging in to GENI compute resources]. - Basic understanding of OpenFlow. If you are going over this tutorial at home, flip through the [attachment:IntroToOpenFlow_140123.pptx tutorial's slides] - Familiarity with Unix Command line - Familiarity with python programming language. We are going to use the [http://osrg.github.io/ryu/ Ryu controller], this is just an example of [wiki:OpenFlow/Controllers many controllers], and Ryu is written in python. == Tools: == - [http://openvswitch.org/ Open vSwitch]. OVS is already be installed on your host. Installation was completed as described [http://groups.geni.net/geni/wiki/HowTo/InstallOVSInProtoGENI here]. - [http://osrg.github.io/ryu/ Ryu controller]. Ryu controller is installed in your host as part of the sliver creation. == Where to get help: == - If you need help with GENI, email [mailto:help@geni.net] - If you have questions about !OpenFlow, OVS, Ryu you can subscribe to [https://mailman.stanford.edu/mailman/listinfo/openflow-discuss openflow-discuss] or any of the other mailing lists listed. == Resources: == - [http://www.openflow.org/ Learn more about OpenFlow] - [http://osrg.github.io/ryu/ Ryu controller] - [http://openvswitch.org/ Learn more about OVS] == Tutorial Instructions == {{{ #!html
Design/Setup
Execute
  • Part II: Execute
    • Step 2: Configure and Initialize Services
    • Step 3: Execute Experiment
Finish