SlideShare uma empresa Scribd logo
1 de 42
OpenFlow Controller




http://floodlight.openflowhub.org
About Us
Big Switch Networks


 Big Switch Networks builds and promotes Open
     Software Defined Networking Solutions



 We use and help support Floodlight and a number of
     other OpenFlow tools



 Yes, you can contact us about jobs and internships at
     careers@bigswitch.com



 ©2012 – Big Switch Networks Inc.                         2
Introduction

 SDN and OpenFlow
 Real world use cases
 Floodlight
 Demo! (if time allows)




 ©2012 – Big Switch Networks Inc.   3
Limitations in Modern Networking
An Slowly Evolving Environment


              Operating System / Firmware




                       Hardware / ASICs




           Hardware focus                   Fully distributed protocols
           Hard to innovate, update         Independent components
                  software
                                             Interoperability and design
           Vendor specific                   challenges
                  components

 ©2012 – Big Switch Networks Inc.                                           4
Introduction to SDN
Software-defined Networking
            Application



                              Application




                                             Application



                                                           Application



                                                                         Application
                                                                                       Application tier


                                   SDN Controller                                      Controller tier

                              OF Switch
                                                                         OF Switch

                                            OF Switch                                  Data plane tier
 OF Switch


                          OF Switch


      Software Defined Networking decouples data, control, and application
      planes, creating a programmable network
 ©2012 – Big Switch Networks Inc.                                                                         5
OpenFlow and SDN
A southbound SDN protocol
            Application



                              Application




                                             Application



                                                           Application



                                                                         Application
                                                                                       Northbound API

        OpenFlow-based SDN Controller

                                                                                       Southbound API -
                                                                                       OpenFlow
                              OF Switch
                                                                         OF Switch

                                            OF Switch
 OF Switch


                          OF Switch
 ©2012 – Big Switch Networks Inc.                                                                         6
Advantages of SDN

 Innovation and speed to market
      An “app store” for network programming
 Decoupled software and hardware development
      Support for multi-vendor environments
      Separate upgrade cycles, etc.
 Simplified network management / automation




 ©2012 – Big Switch Networks Inc.               7
Real World Examples
1                                                            2
    Scalable isolation      Alice     Bob       Cathy            Inserting and managing
    domains and network                                          network services such as
    slicing.                                                     load
                                    FlowVisor    Isolation       balancing, firewall, IDS/IPS
                                                   Policy        , QoS, etc.
    Example: Flowvisor
                                                                 Example: FlowScale

    Network Virtualization                                       Platform for Network Services
3                                                            4
     Flexible mobility of                                          Lower cost, high
     virtual machines                                              performance
                                                                   networks
     Example: Stanford
     WAN VM Migration                                              Example: non-
                                                                   blocking CLOS
                                                                   architectures
    Virtual Machine Management                                   CLOS Fabrics
5                                                            6
     Simplified data                                             Networks spanning
     vibility and traffic                                        public / private DC’s
     monitoring
                                                                 Example: Amazon
     Example: TBD                                                VPC


                                                                                                 8
    Data analysis / monitoring                                   Hybrid clouds
OpenFlow
Introduction to OpenFlow
Controller <-> Switch communication

 x86 style instruction
     set                                         OpenFlow-based SDN Controller

 Based on Ethernet
     Switch with:                                                TCP / SSL
      OF software client
      Hardware flow table
                                                   Non-OF
                                                                           OpenFlow Client
                                                  Control Path
 Control channel
     between switch and             Flow table
     controller                     MAC          MAC    IP        IP           TCP         TCP       Action
                                    src          dst    Src       Dst          sport       dport
                                    *        *         *         5.6.7.8   *           *           port 1




 ©2012 – Big Switch Networks Inc.                                                                           10
OpenFlow in Action



                                        Application



                                                        Application




                                                                              Application



                                                                                             Application



                                                                                                           Application
                                                             SDN Controller
                               Rule    Action         Stats           Rule    Action        Stats Rule              Action   Stats




                                      OF Switch                                                            OF Switch

                               01010
                               01010
                                                                             OF Switch


©2012 – Big Switch Networks Inc.                                                                                                     11
Why OpenFlow?
Isn’t OpenFlow the same as XXX?


 ‘XXX’ = LISP, MPLS-TE, policy routing, etc.
 Broad answer:
      OpenFlow is a very-low level abstraction/API
      Could probably implement XXX using OpenFlow
      Could not implement OpenFlow using XXX
 If XXX meets my needs, why use OpenFlow?
      More holistic network view
      Reduced complexity from feature interaction




 ©2012 – Big Switch Networks Inc.                     12
OpenFlow Standards

 OF v1.0 (most popular), Dec 2009
      Initial OpenFlow specification
      match on 12-tuple
 OF v1a.1: Extensions for WAN, late 2010
      multiple tables: dodge state space explosion
      fast failover, interface bonding
 OF v1.2 :
      IPv6 support, generalized match, vendor extensions




 ©2012 – Big Switch Networks Inc.                           13
©2012 – Big Switch Networks Inc. – Confidential and Proprietary
                                                                  Floodlight   14
Floodlight Overview




          Floodlight is a completely open,
          free, Apache-licensed Java-based
          OpenFlow controller.




©2012 – Big Switch Networks Inc.             15
Floodlight Controller
A great platform for OpenFlow




            Research and                        Easy to build, run, and
            commercial friendly                develop



                                    Toolchain


            Rich set of build and               Community of OpenFlow
            debugging tools                     experts, access to commercial
                                                upgrades, and frequent testing
 ©2012 – Big Switch Networks Inc.                                                16
Building Floodlight
Fast…an easy…

Download from Github
$ git clone git://github.com/floodlight/floodlight.git

$ sudo apt-get install build-essential default-jdk ant python-
dev

$ cd floodlight; ant

$ java –jar target/floodlight.jar


Get the VM (including
mininet)
$ wget http://floodlight.openflowhub.org/files/floodlight-
vm.zip

(login as “floodlight” user, no password)

 ©2012 – Big Switch Networks Inc.                            17
Internals
Floodlight Architecture

                              TopologyManager
                                                  Modules exporting “services”

                               LinkDiscovery      All modules in Java, support for
                                                   Jython as well
                                Forwarding
         FloodlightProvider




                                                  Main module is
                              DeviceManager
                                                   FloodlightProvider
                                                    Manages I/O to switches
                               StorageSource
                                                    Translates OF messages to
                                                     Floodlight events
                                                    Multi-threaded via Netty library (all
                                 RestServer
                                                     modules must be thread-safe)

                              StaticFlowPusher
                                                  Rich, extensible REST API
©2012 – Big Switch Networks Inc.                                                         19
Module Descriptions

                                                 Computes shortest path using Dijsktra
                           TopologyManager
                                                 Keeps switch to cluster mappings

                                                 Maintains state of links in network
                            LinkDiscovery
                                                 Sends out LLDPs


                             Forwarding          Installs flow mods for end-to-end routing
      FloodlightProvider




                                                 Handles island routing

                                                 Tracks hosts on the network
                           DeviceManager
                                                 MAC -> switch,port, MAC->IP, IP->MAC

                                                 DB style storage (queries, etc)
                            StorageSource
                                                 Modules can access all data and subscribe to changes

                                                 Implements via Restlets (restlet.org)
                              RestServer
                                                 Modules must implement RestletRoutable

                                                 Supports the insertion and removal of static flows
                           StaticFlowPusher
                                                 REST-based API


©2012 – Big Switch Networks Inc.                                                                         20
Other Tools
OpenFlow Controllers
Options Beyond Floodlight


 Beacon: beaconcontroller.net (Java)
 NOX: noxrepo.org (C++ and Python)
 Trema: trema.github.com/trema/ (Ruby and C)
 Reference controller (C)




 ©2012 – Big Switch Networks Inc.               22
Mininet
OpenFlow network simulator


 Emulate OpenFlow network in a box
 Uses Linux Containers and IP namespace
 Runs your choice of software switch
      Stanford’s reference OpenFlow switch
      OpenVSwitch
 CLI allows interactive management of emulated virtual
     hosts

 Packaged in the Floodlight VM at:
      http://floodlight.openflowhub.org/download

 ©2012 – Big Switch Networks Inc.                         23
Switch Options
Switch Ecosystem
Major vendors have upcoming products



                                            Controller Platform
                                         Southbound APIs
             Virtual Switches                                                                    Physical Switches
                                                               Available                                                                               Announced




          Stanford Reference
          Switch




 ©2012 – Big Switch Networks Inc.
                                    * Supported platforms: Pronto w/ indigo – 3240/3290, HP: 3500, 5400, 8200 (procurves), IBM 8264, NEC PF 5820 / 5240, Extreme – Summit series
Demo
Getting Involved - OpenFlowHub
A community of open source OpenFlow developers

What it is:                                Get involved:

1. A community of open source               Submit a project
       OpenFlow developers
                                            Write a blog post
2. An OpenFlow Blog (available for
       guest authors)                       http://www.openflowhub.org
3. Free hosting, tools, and marketing       Contact:
      for open source projects
                                             mike.cohen@openflowhub.org
      Wiki, forums, bug tracking tools,
        logos, etc.
 Projects:




 ©2012 – Big Switch Networks Inc.
Interested in Learning More?

 Check out the website
      http://floodlight.openflowhub.org


 Join the mailing list:
      http://groups.google.com/a/openflowhub.org/group/floodli
       ght-dev/topics
      Or just email floodlight-dev@openflowhub.org


 Get the code:
      http://floodlight.openflowhub.org/download

 ©2012 – Big Switch Networks Inc.
Presenters

                                         Mike Cohen
                                       Product Manager
                                   mike.cohen@bigswitch.com

                                        Alex Reimers
                                   Member of Technical Staff
                                      alex@bigswitch.com




©2012 – Big Switch Networks Inc.                               29
End
Operational
Considerations
Network considerations

 Why OpenFlow?
           Lots of reasons we talked about already...
           Simplest is network monitoring from a single location – packetin, flow modes, cpu
            usage, throughput, devices connected, etc.

 Control / Data networks
           Offer critical services on non-OF network (ie. Voip)
           Control / data path separation – vlans in most cases
           Deploy OF from edge to core. Gain increased visibility over time.
           Measure traffic patterns and make sure your switch hardware can support it. Some
            have limited control traffic throughput (flow set up rate, etc.).

 Security considerations
           Do you need to protect against controller DoS attacks?
           Do you want encrypted control traffic?

 Gotchas
           Physical loops into the OpenFlow network
           Wifi mesh networks


 ©2012 – Big Switch Networks Inc.                                                               32
Backup
Network Virtualization: Flowvisor
Virtualized Control Plane

                                           Customer Alice   Customer Bob     Customer Cathy


Each use case/demo
presented here runs in an
isolated slice of Stanford’s
                                                                       OpenFlow
production network.                                                    Protocol
                                               OpenFlow
                                    OpenFlow   Protocol
                                    Datapath                FlowVisor                Isolation
                                                                                       Policy


                                                               FlowVisor slices OpenFlow
                OpenFlow                       OpenFlow         networks, creating multiple
                Datapath                       Datapath        isolated and programmable
                                                                 logical networks on the
                                                                 same physical topology.
 ©2012 – Big Switch Networks Inc.                                                             34
Load balancing
FlowScale: Load balancing using Layer 2 OF switches


 Traffic load
     balancer
     using
     OpenFlow

 Implemented
     in OF ToR
     switches

 Deployed in
     IU IDS



 ©2012 – Big Switch Networks Inc.                     35
VM Management: WAN Migration




                       Moved a VM from Stanford to Japan without changing its IP.
                  VM hosted a video game server with active network connections.
©2012 – Big Switch Networks Inc.                                                    36
OpenFlow Protocol (1)


          Match Fields                    Action(s)         Stats


                                                            Packet + byte counters

                                   1.   Forward packet to zero or more ports
                                   2.   Encapsulate and forward to controller
                                   3.   Modify Fields
                                   4.   Vendor specific extensions


         Switch         VLAN            VLAN   MAC    MAC     Eth    IP    IP    IP    IP     L4      L4
         Port           ID              pcp    src    dst     type   Src   Dst   ToS   Prot   sport   dport


           + mask what fields to match
©2012 – Big Switch Networks Inc.                                                                              37
OpenFlow Protocol (2)

                       Switch      MAC     MAC     Eth    VLAN    IP Src    IP Prot   TCP     TCP     Action
                       port        src     dst     type   ID                          sport   dport
Switching              *           *       00:1f   *      *       *         *         *       *       Port6
                                           :..
Flow                   Port3       00:20   00:1f   0800   Vlan1   1.2.3.4   5.6.7.8   4       17264   Port6
switching                          ..      ..
Firewall               *           *       *       *      *       *         *         *       22      Drop

Routing                *           *       *       *      *       *         5.6.7.8   *       *       Port6

VLAN                   *           *       00:1f   *      Vlan1   *         *         *       *       Port6,p
switching                                  ..                                                         ort7,
                                                                                                      port8




©2012 – Big Switch Networks Inc.                                                                              38
Other Floodlight Highlights

                                                                   REST-      Static    2
 1                                                                 based      Flow
                                                                    App      Pusher     Java event APIs



                                               Jython App
 Active work in
                                    Java App
     defining                                                                           REST-based APIs
     standard
     “Northbound”
     APIs                                                                               Ability to push flows




                                                            Floodlight Controller
                                                                                                     3
                                                              Switch                                  Support for
                                                                                       OF Switch         integrating with
                                                                                                         non-OpenFlow
                                                                       OF Switch                         networks
                                OF Switch


                                                      OF Switch
 ©2012 – Big Switch Networks Inc.                                                                                           39
IFloodlightModule Interface

1. getModuleDependencies()
Function                                   Description

       What services does this moduleWhat services does this
getModuleDependencies()
                                       require?
                                           module require?
2. getModuleServices(), getServiceImpls()
       Services does this module provide and how?
getModuleServices()                        Services does this module
                                           provide and how?
3. init(FloodlightModuleContext context)
       Internal, before dependencies have init()’d
init(FloodlightModuleContext context)      Internal, before dependencies
                                           have init()’ed
4. startup(FloodlightModuleContext context)
       External, with dependencies initialization
startup(FloodlightModuleContext context)   External, with dependencies
                                           initialization
OpenFlow Topologies

        vswitch
        Top of rack                                 Need OpenFlow at last hop
        Agg / Core
                                                    in the network

                                                     For vms:vswitch
                                                     For physical hosts: Tor
   VM         VM                   VM    VM


   VM         VM                   VM    VM
                                                    Floodlight can manage
                                                    multiple “islands” of
   VM         VM                    Physical host   OpenFlow switches
       Physical host               VM    VM

             …                           …
         Rack 1                         Rack 2

©2012 – Big Switch Networks Inc.                                                41
Demo

Problem:

Track the last N Packet-Ins seen by the controller and
expose it via a REST API


What you will see:

1. Adding a new module
2. Creating a REST API
3. Running Floodlight


 ©2012 – Big Switch Networks Inc.                        42

Mais conteúdo relacionado

Mais procurados

Introduction to OpenFlow
Introduction to OpenFlowIntroduction to OpenFlow
Introduction to OpenFlowrjain51
 
All Things Open SDN, NFV and Open Daylight
All Things Open SDN, NFV and Open Daylight All Things Open SDN, NFV and Open Daylight
All Things Open SDN, NFV and Open Daylight Mark Hinkle
 
Tutorial on SDN data plane evolution
Tutorial on SDN data plane evolutionTutorial on SDN data plane evolution
Tutorial on SDN data plane evolutionAntonio Capone
 
Introduction To Openflow
Introduction To OpenflowIntroduction To Openflow
Introduction To OpenflowWaqas Daar
 
SDN Architecture & Ecosystem
SDN Architecture & EcosystemSDN Architecture & Ecosystem
SDN Architecture & EcosystemKingston Smiler
 
Modern Software Architecture
Modern Software Architecture Modern Software Architecture
Modern Software Architecture Ahmed Marzouk
 
API Management for Software Defined Network (SDN)
API Management for Software Defined Network (SDN)API Management for Software Defined Network (SDN)
API Management for Software Defined Network (SDN)Apigee | Google Cloud
 
OpenFlow tutorial
OpenFlow tutorialOpenFlow tutorial
OpenFlow tutorialopenflow
 
Openlab.2014 02-13.major.vi sion
Openlab.2014 02-13.major.vi sionOpenlab.2014 02-13.major.vi sion
Openlab.2014 02-13.major.vi sionCcie Light
 
SDN Fundamentals - short presentation
SDN Fundamentals -  short presentationSDN Fundamentals -  short presentation
SDN Fundamentals - short presentationAzhar Khuwaja
 
The Challenges of SDN/OpenFlow in an Operational and Large-scale Network
The Challenges of SDN/OpenFlow in an Operational and Large-scale NetworkThe Challenges of SDN/OpenFlow in an Operational and Large-scale Network
The Challenges of SDN/OpenFlow in an Operational and Large-scale NetworkOpen Networking Summits
 
opendayight loadBalancer
opendayight loadBalancer opendayight loadBalancer
opendayight loadBalancer Khubaib Mahar
 
Software defined networks and openflow protocol
Software defined networks and openflow protocolSoftware defined networks and openflow protocol
Software defined networks and openflow protocolMahesh Mohan
 
Introduction to OpenFlow, SDN and NFV
Introduction to OpenFlow, SDN and NFVIntroduction to OpenFlow, SDN and NFV
Introduction to OpenFlow, SDN and NFVKingston Smiler
 
SDN & NFV Introduction - Open Source Data Center Networking
SDN & NFV Introduction - Open Source Data Center NetworkingSDN & NFV Introduction - Open Source Data Center Networking
SDN & NFV Introduction - Open Source Data Center NetworkingThomas Graf
 
Software Defined Networking(SDN) and practical implementation_trupti
Software Defined Networking(SDN) and practical implementation_truptiSoftware Defined Networking(SDN) and practical implementation_trupti
Software Defined Networking(SDN) and practical implementation_truptitrups7778
 

Mais procurados (20)

Introduction to OpenFlow
Introduction to OpenFlowIntroduction to OpenFlow
Introduction to OpenFlow
 
OpenFlow
OpenFlowOpenFlow
OpenFlow
 
All Things Open SDN, NFV and Open Daylight
All Things Open SDN, NFV and Open Daylight All Things Open SDN, NFV and Open Daylight
All Things Open SDN, NFV and Open Daylight
 
Tutorial on SDN data plane evolution
Tutorial on SDN data plane evolutionTutorial on SDN data plane evolution
Tutorial on SDN data plane evolution
 
Introduction To Openflow
Introduction To OpenflowIntroduction To Openflow
Introduction To Openflow
 
SDN Architecture & Ecosystem
SDN Architecture & EcosystemSDN Architecture & Ecosystem
SDN Architecture & Ecosystem
 
Modern Software Architecture
Modern Software Architecture Modern Software Architecture
Modern Software Architecture
 
API Management for Software Defined Network (SDN)
API Management for Software Defined Network (SDN)API Management for Software Defined Network (SDN)
API Management for Software Defined Network (SDN)
 
SDN Project PPT
SDN Project PPTSDN Project PPT
SDN Project PPT
 
Opening Up Your Network with SDN
Opening Up Your Network with SDNOpening Up Your Network with SDN
Opening Up Your Network with SDN
 
OpenFlow tutorial
OpenFlow tutorialOpenFlow tutorial
OpenFlow tutorial
 
Openlab.2014 02-13.major.vi sion
Openlab.2014 02-13.major.vi sionOpenlab.2014 02-13.major.vi sion
Openlab.2014 02-13.major.vi sion
 
RTI Technical Road Show SPAWAR SD
RTI Technical Road Show SPAWAR SDRTI Technical Road Show SPAWAR SD
RTI Technical Road Show SPAWAR SD
 
SDN Fundamentals - short presentation
SDN Fundamentals -  short presentationSDN Fundamentals -  short presentation
SDN Fundamentals - short presentation
 
The Challenges of SDN/OpenFlow in an Operational and Large-scale Network
The Challenges of SDN/OpenFlow in an Operational and Large-scale NetworkThe Challenges of SDN/OpenFlow in an Operational and Large-scale Network
The Challenges of SDN/OpenFlow in an Operational and Large-scale Network
 
opendayight loadBalancer
opendayight loadBalancer opendayight loadBalancer
opendayight loadBalancer
 
Software defined networks and openflow protocol
Software defined networks and openflow protocolSoftware defined networks and openflow protocol
Software defined networks and openflow protocol
 
Introduction to OpenFlow, SDN and NFV
Introduction to OpenFlow, SDN and NFVIntroduction to OpenFlow, SDN and NFV
Introduction to OpenFlow, SDN and NFV
 
SDN & NFV Introduction - Open Source Data Center Networking
SDN & NFV Introduction - Open Source Data Center NetworkingSDN & NFV Introduction - Open Source Data Center Networking
SDN & NFV Introduction - Open Source Data Center Networking
 
Software Defined Networking(SDN) and practical implementation_trupti
Software Defined Networking(SDN) and practical implementation_truptiSoftware Defined Networking(SDN) and practical implementation_trupti
Software Defined Networking(SDN) and practical implementation_trupti
 

Destaque

SDN: Network Agility in the Cloud
SDN: Network Agility in the CloudSDN: Network Agility in the Cloud
SDN: Network Agility in the CloudSebastien Goasguen
 
7 Dr. Alexander Schachinger - 40 Millionen Gesundheits-Surfer in Deutschland:...
7 Dr. Alexander Schachinger - 40 Millionen Gesundheits-Surfer in Deutschland:...7 Dr. Alexander Schachinger - 40 Millionen Gesundheits-Surfer in Deutschland:...
7 Dr. Alexander Schachinger - 40 Millionen Gesundheits-Surfer in Deutschland:...WelldooPanorama
 
HHHC9301 PENGURUSAN MAKLUMAT DAN PEMBELAJARAN SEPANJANG HAYAT
HHHC9301 PENGURUSAN MAKLUMAT DAN PEMBELAJARAN SEPANJANG HAYATHHHC9301 PENGURUSAN MAKLUMAT DAN PEMBELAJARAN SEPANJANG HAYAT
HHHC9301 PENGURUSAN MAKLUMAT DAN PEMBELAJARAN SEPANJANG HAYATNazneen Alia
 
Adjust Everywhere
Adjust Everywhere Adjust Everywhere
Adjust Everywhere john_gali
 
Termometri Personalizzati
Termometri PersonalizzatiTermometri Personalizzati
Termometri PersonalizzatiAlessio Astolfi
 
Ponencia el ser maestro- Samuel González A.
Ponencia el ser maestro- Samuel González A.Ponencia el ser maestro- Samuel González A.
Ponencia el ser maestro- Samuel González A.isabelgrupoavi
 
CVupdate 13 Jan 2017 (RGH) current
CVupdate 13 Jan 2017  (RGH) currentCVupdate 13 Jan 2017  (RGH) current
CVupdate 13 Jan 2017 (RGH) currentJonathan Jackson
 
"Tissue Engineering": Competition Experience Report
"Tissue Engineering": Competition Experience Report"Tissue Engineering": Competition Experience Report
"Tissue Engineering": Competition Experience ReportFatima A
 
Mantas Control Erosion North American Green Catalogo
Mantas Control Erosion North American Green CatalogoMantas Control Erosion North American Green Catalogo
Mantas Control Erosion North American Green CatalogoEMIN Sistemas Geotecnicos
 
RestKit - From Zero to Hero
RestKit - From Zero to HeroRestKit - From Zero to Hero
RestKit - From Zero to HeroPeter Friese
 
Feliz Navidad Para Todos Mis Amigos
Feliz Navidad Para Todos Mis AmigosFeliz Navidad Para Todos Mis Amigos
Feliz Navidad Para Todos Mis Amigosmarily1
 
Introducción a la Nube de Azure con ENCAMINA
Introducción a la Nube de Azure con ENCAMINAIntroducción a la Nube de Azure con ENCAMINA
Introducción a la Nube de Azure con ENCAMINAwww.encamina.com
 

Destaque (20)

SDN: Network Agility in the Cloud
SDN: Network Agility in the CloudSDN: Network Agility in the Cloud
SDN: Network Agility in the Cloud
 
PERIODISMO
PERIODISMOPERIODISMO
PERIODISMO
 
7 Dr. Alexander Schachinger - 40 Millionen Gesundheits-Surfer in Deutschland:...
7 Dr. Alexander Schachinger - 40 Millionen Gesundheits-Surfer in Deutschland:...7 Dr. Alexander Schachinger - 40 Millionen Gesundheits-Surfer in Deutschland:...
7 Dr. Alexander Schachinger - 40 Millionen Gesundheits-Surfer in Deutschland:...
 
3 levis
3 levis3 levis
3 levis
 
HHHC9301 PENGURUSAN MAKLUMAT DAN PEMBELAJARAN SEPANJANG HAYAT
HHHC9301 PENGURUSAN MAKLUMAT DAN PEMBELAJARAN SEPANJANG HAYATHHHC9301 PENGURUSAN MAKLUMAT DAN PEMBELAJARAN SEPANJANG HAYAT
HHHC9301 PENGURUSAN MAKLUMAT DAN PEMBELAJARAN SEPANJANG HAYAT
 
Protocolo cm nov_2010
Protocolo cm nov_2010Protocolo cm nov_2010
Protocolo cm nov_2010
 
4 Ico 100623
4  Ico 1006234  Ico 100623
4 Ico 100623
 
Katalogoa2009
Katalogoa2009Katalogoa2009
Katalogoa2009
 
Adjust Everywhere
Adjust Everywhere Adjust Everywhere
Adjust Everywhere
 
Termometri Personalizzati
Termometri PersonalizzatiTermometri Personalizzati
Termometri Personalizzati
 
Ponencia el ser maestro- Samuel González A.
Ponencia el ser maestro- Samuel González A.Ponencia el ser maestro- Samuel González A.
Ponencia el ser maestro- Samuel González A.
 
CVupdate 13 Jan 2017 (RGH) current
CVupdate 13 Jan 2017  (RGH) currentCVupdate 13 Jan 2017  (RGH) current
CVupdate 13 Jan 2017 (RGH) current
 
"Tissue Engineering": Competition Experience Report
"Tissue Engineering": Competition Experience Report"Tissue Engineering": Competition Experience Report
"Tissue Engineering": Competition Experience Report
 
Mantas Control Erosion North American Green Catalogo
Mantas Control Erosion North American Green CatalogoMantas Control Erosion North American Green Catalogo
Mantas Control Erosion North American Green Catalogo
 
RestKit - From Zero to Hero
RestKit - From Zero to HeroRestKit - From Zero to Hero
RestKit - From Zero to Hero
 
Feliz Navidad Para Todos Mis Amigos
Feliz Navidad Para Todos Mis AmigosFeliz Navidad Para Todos Mis Amigos
Feliz Navidad Para Todos Mis Amigos
 
Smooth jazz
Smooth jazzSmooth jazz
Smooth jazz
 
Introducción a la Nube de Azure con ENCAMINA
Introducción a la Nube de Azure con ENCAMINAIntroducción a la Nube de Azure con ENCAMINA
Introducción a la Nube de Azure con ENCAMINA
 
Transporte aereo
Transporte aereoTransporte aereo
Transporte aereo
 
Digital utopia vs dystopia
Digital utopia vs dystopiaDigital utopia vs dystopia
Digital utopia vs dystopia
 

Semelhante a Floodlight tutorial - Clemson / Georgia Tech

Software Defined Networking
Software Defined Networking Software Defined Networking
Software Defined Networking Kamesh Pemmaraju
 
SDN and Photonics for Dynamic Cloud Connectivity
SDN and Photonics for Dynamic Cloud Connectivity SDN and Photonics for Dynamic Cloud Connectivity
SDN and Photonics for Dynamic Cloud Connectivity ADVA
 
Performance Evaluation for Software Defined Networking (SDN) Based on Adaptiv...
Performance Evaluation for Software Defined Networking (SDN) Based on Adaptiv...Performance Evaluation for Software Defined Networking (SDN) Based on Adaptiv...
Performance Evaluation for Software Defined Networking (SDN) Based on Adaptiv...University of Technology - Iraq
 
WWT Software-Defined Networking Guide
WWT Software-Defined Networking GuideWWT Software-Defined Networking Guide
WWT Software-Defined Networking GuideJoel W. King
 
SDN-enhanced Services in Enterprises and Data Centers
SDN-enhanced Services in Enterprises and Data CentersSDN-enhanced Services in Enterprises and Data Centers
SDN-enhanced Services in Enterprises and Data CentersAnees Shaikh
 
Introduction to Software-defined Networking
Introduction to Software-defined NetworkingIntroduction to Software-defined Networking
Introduction to Software-defined NetworkingAnees Shaikh
 
OpenFlow Beyond the Data Centre at IP Expo
OpenFlow Beyond the Data Centre at IP ExpoOpenFlow Beyond the Data Centre at IP Expo
OpenFlow Beyond the Data Centre at IP ExpoADVA
 
Cloud computing and Software defined networking
Cloud computing and Software defined networkingCloud computing and Software defined networking
Cloud computing and Software defined networkingsaigandham1
 
Programmable data center
Programmable data centerProgrammable data center
Programmable data centerSeema Jethani
 
Software Defined Networks
Software Defined NetworksSoftware Defined Networks
Software Defined NetworksShreeya Shah
 
PLNOG14: The benefits of "OPEN" in networking for operators - Joerg Ammon, Br...
PLNOG14: The benefits of "OPEN" in networking for operators - Joerg Ammon, Br...PLNOG14: The benefits of "OPEN" in networking for operators - Joerg Ammon, Br...
PLNOG14: The benefits of "OPEN" in networking for operators - Joerg Ammon, Br...PROIDEA
 
08 sdn system intelligence short public beijing sdn conference - 130828
08 sdn system intelligence   short public beijing sdn conference - 13082808 sdn system intelligence   short public beijing sdn conference - 130828
08 sdn system intelligence short public beijing sdn conference - 130828Mason Mei
 
From SDN to Cloud Networking
From SDN to Cloud NetworkingFrom SDN to Cloud Networking
From SDN to Cloud NetworkingJuniper Networks
 
Networking Technology Transformation to SDN and NFV
Networking Technology Transformation to SDN and NFVNetworking Technology Transformation to SDN and NFV
Networking Technology Transformation to SDN and NFVHimawan Nugroho
 
Technology Primer: Software-Defined Networking and Its Impact on Infrastructu...
Technology Primer: Software-Defined Networking and Its Impact on Infrastructu...Technology Primer: Software-Defined Networking and Its Impact on Infrastructu...
Technology Primer: Software-Defined Networking and Its Impact on Infrastructu...CA Technologies
 

Semelhante a Floodlight tutorial - Clemson / Georgia Tech (20)

Software Defined Networking
Software Defined Networking Software Defined Networking
Software Defined Networking
 
SDN and Photonics for Dynamic Cloud Connectivity
SDN and Photonics for Dynamic Cloud Connectivity SDN and Photonics for Dynamic Cloud Connectivity
SDN and Photonics for Dynamic Cloud Connectivity
 
TFI2014 Session I - State of SDN - John Giacomoni
TFI2014 Session I - State of SDN - John GiacomoniTFI2014 Session I - State of SDN - John Giacomoni
TFI2014 Session I - State of SDN - John Giacomoni
 
Performance Evaluation for Software Defined Networking (SDN) Based on Adaptiv...
Performance Evaluation for Software Defined Networking (SDN) Based on Adaptiv...Performance Evaluation for Software Defined Networking (SDN) Based on Adaptiv...
Performance Evaluation for Software Defined Networking (SDN) Based on Adaptiv...
 
WWT Software-Defined Networking Guide
WWT Software-Defined Networking GuideWWT Software-Defined Networking Guide
WWT Software-Defined Networking Guide
 
Automation of end-to-end QOS
Automation of end-to-end QOSAutomation of end-to-end QOS
Automation of end-to-end QOS
 
SDN-enhanced Services in Enterprises and Data Centers
SDN-enhanced Services in Enterprises and Data CentersSDN-enhanced Services in Enterprises and Data Centers
SDN-enhanced Services in Enterprises and Data Centers
 
Introduction to Software-defined Networking
Introduction to Software-defined NetworkingIntroduction to Software-defined Networking
Introduction to Software-defined Networking
 
OpenFlow Beyond the Data Centre at IP Expo
OpenFlow Beyond the Data Centre at IP ExpoOpenFlow Beyond the Data Centre at IP Expo
OpenFlow Beyond the Data Centre at IP Expo
 
Cloud computing and Software defined networking
Cloud computing and Software defined networkingCloud computing and Software defined networking
Cloud computing and Software defined networking
 
Sdn primer pdf
Sdn primer pdfSdn primer pdf
Sdn primer pdf
 
Programmable data center
Programmable data centerProgrammable data center
Programmable data center
 
Software Defined Networks
Software Defined NetworksSoftware Defined Networks
Software Defined Networks
 
Sdnhpkorea
SdnhpkoreaSdnhpkorea
Sdnhpkorea
 
PLNOG14: The benefits of "OPEN" in networking for operators - Joerg Ammon, Br...
PLNOG14: The benefits of "OPEN" in networking for operators - Joerg Ammon, Br...PLNOG14: The benefits of "OPEN" in networking for operators - Joerg Ammon, Br...
PLNOG14: The benefits of "OPEN" in networking for operators - Joerg Ammon, Br...
 
08 sdn system intelligence short public beijing sdn conference - 130828
08 sdn system intelligence   short public beijing sdn conference - 13082808 sdn system intelligence   short public beijing sdn conference - 130828
08 sdn system intelligence short public beijing sdn conference - 130828
 
From SDN to Cloud Networking
From SDN to Cloud NetworkingFrom SDN to Cloud Networking
From SDN to Cloud Networking
 
Networking Technology Transformation to SDN and NFV
Networking Technology Transformation to SDN and NFVNetworking Technology Transformation to SDN and NFV
Networking Technology Transformation to SDN and NFV
 
Technology Primer: Software-Defined Networking and Its Impact on Infrastructu...
Technology Primer: Software-Defined Networking and Its Impact on Infrastructu...Technology Primer: Software-Defined Networking and Its Impact on Infrastructu...
Technology Primer: Software-Defined Networking and Its Impact on Infrastructu...
 
Adoption of SDN: Progress Update
Adoption of SDN: Progress UpdateAdoption of SDN: Progress Update
Adoption of SDN: Progress Update
 

Último

The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 

Último (20)

The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 

Floodlight tutorial - Clemson / Georgia Tech

  • 2. About Us Big Switch Networks  Big Switch Networks builds and promotes Open Software Defined Networking Solutions  We use and help support Floodlight and a number of other OpenFlow tools  Yes, you can contact us about jobs and internships at careers@bigswitch.com ©2012 – Big Switch Networks Inc. 2
  • 3. Introduction  SDN and OpenFlow  Real world use cases  Floodlight  Demo! (if time allows) ©2012 – Big Switch Networks Inc. 3
  • 4. Limitations in Modern Networking An Slowly Evolving Environment Operating System / Firmware Hardware / ASICs  Hardware focus  Fully distributed protocols  Hard to innovate, update  Independent components software  Interoperability and design  Vendor specific challenges components ©2012 – Big Switch Networks Inc. 4
  • 5. Introduction to SDN Software-defined Networking Application Application Application Application Application Application tier SDN Controller Controller tier OF Switch OF Switch OF Switch Data plane tier OF Switch OF Switch Software Defined Networking decouples data, control, and application planes, creating a programmable network ©2012 – Big Switch Networks Inc. 5
  • 6. OpenFlow and SDN A southbound SDN protocol Application Application Application Application Application Northbound API OpenFlow-based SDN Controller Southbound API - OpenFlow OF Switch OF Switch OF Switch OF Switch OF Switch ©2012 – Big Switch Networks Inc. 6
  • 7. Advantages of SDN  Innovation and speed to market  An “app store” for network programming  Decoupled software and hardware development  Support for multi-vendor environments  Separate upgrade cycles, etc.  Simplified network management / automation ©2012 – Big Switch Networks Inc. 7
  • 8. Real World Examples 1 2 Scalable isolation Alice Bob Cathy Inserting and managing domains and network network services such as slicing. load FlowVisor Isolation balancing, firewall, IDS/IPS Policy , QoS, etc. Example: Flowvisor Example: FlowScale Network Virtualization Platform for Network Services 3 4 Flexible mobility of Lower cost, high virtual machines performance networks Example: Stanford WAN VM Migration Example: non- blocking CLOS architectures Virtual Machine Management CLOS Fabrics 5 6 Simplified data Networks spanning vibility and traffic public / private DC’s monitoring Example: Amazon Example: TBD VPC 8 Data analysis / monitoring Hybrid clouds
  • 10. Introduction to OpenFlow Controller <-> Switch communication  x86 style instruction set OpenFlow-based SDN Controller  Based on Ethernet Switch with: TCP / SSL  OF software client  Hardware flow table Non-OF OpenFlow Client Control Path  Control channel between switch and Flow table controller MAC MAC IP IP TCP TCP Action src dst Src Dst sport dport * * * 5.6.7.8 * * port 1 ©2012 – Big Switch Networks Inc. 10
  • 11. OpenFlow in Action Application Application Application Application Application SDN Controller Rule Action Stats Rule Action Stats Rule Action Stats OF Switch OF Switch 01010 01010 OF Switch ©2012 – Big Switch Networks Inc. 11
  • 12. Why OpenFlow? Isn’t OpenFlow the same as XXX?  ‘XXX’ = LISP, MPLS-TE, policy routing, etc.  Broad answer:  OpenFlow is a very-low level abstraction/API  Could probably implement XXX using OpenFlow  Could not implement OpenFlow using XXX  If XXX meets my needs, why use OpenFlow?  More holistic network view  Reduced complexity from feature interaction ©2012 – Big Switch Networks Inc. 12
  • 13. OpenFlow Standards  OF v1.0 (most popular), Dec 2009  Initial OpenFlow specification  match on 12-tuple  OF v1a.1: Extensions for WAN, late 2010  multiple tables: dodge state space explosion  fast failover, interface bonding  OF v1.2 :  IPv6 support, generalized match, vendor extensions ©2012 – Big Switch Networks Inc. 13
  • 14. ©2012 – Big Switch Networks Inc. – Confidential and Proprietary Floodlight 14
  • 15. Floodlight Overview Floodlight is a completely open, free, Apache-licensed Java-based OpenFlow controller. ©2012 – Big Switch Networks Inc. 15
  • 16. Floodlight Controller A great platform for OpenFlow Research and Easy to build, run, and commercial friendly  develop Toolchain Rich set of build and Community of OpenFlow debugging tools experts, access to commercial upgrades, and frequent testing ©2012 – Big Switch Networks Inc. 16
  • 17. Building Floodlight Fast…an easy… Download from Github $ git clone git://github.com/floodlight/floodlight.git $ sudo apt-get install build-essential default-jdk ant python- dev $ cd floodlight; ant $ java –jar target/floodlight.jar Get the VM (including mininet) $ wget http://floodlight.openflowhub.org/files/floodlight- vm.zip (login as “floodlight” user, no password) ©2012 – Big Switch Networks Inc. 17
  • 19. Floodlight Architecture TopologyManager  Modules exporting “services” LinkDiscovery  All modules in Java, support for Jython as well Forwarding FloodlightProvider  Main module is DeviceManager FloodlightProvider  Manages I/O to switches StorageSource  Translates OF messages to Floodlight events  Multi-threaded via Netty library (all RestServer modules must be thread-safe) StaticFlowPusher  Rich, extensible REST API ©2012 – Big Switch Networks Inc. 19
  • 20. Module Descriptions  Computes shortest path using Dijsktra TopologyManager  Keeps switch to cluster mappings  Maintains state of links in network LinkDiscovery  Sends out LLDPs Forwarding  Installs flow mods for end-to-end routing FloodlightProvider  Handles island routing  Tracks hosts on the network DeviceManager  MAC -> switch,port, MAC->IP, IP->MAC  DB style storage (queries, etc) StorageSource  Modules can access all data and subscribe to changes  Implements via Restlets (restlet.org) RestServer  Modules must implement RestletRoutable  Supports the insertion and removal of static flows StaticFlowPusher  REST-based API ©2012 – Big Switch Networks Inc. 20
  • 22. OpenFlow Controllers Options Beyond Floodlight  Beacon: beaconcontroller.net (Java)  NOX: noxrepo.org (C++ and Python)  Trema: trema.github.com/trema/ (Ruby and C)  Reference controller (C) ©2012 – Big Switch Networks Inc. 22
  • 23. Mininet OpenFlow network simulator  Emulate OpenFlow network in a box  Uses Linux Containers and IP namespace  Runs your choice of software switch  Stanford’s reference OpenFlow switch  OpenVSwitch  CLI allows interactive management of emulated virtual hosts  Packaged in the Floodlight VM at:  http://floodlight.openflowhub.org/download ©2012 – Big Switch Networks Inc. 23
  • 25. Switch Ecosystem Major vendors have upcoming products Controller Platform Southbound APIs Virtual Switches Physical Switches Available Announced Stanford Reference Switch ©2012 – Big Switch Networks Inc. * Supported platforms: Pronto w/ indigo – 3240/3290, HP: 3500, 5400, 8200 (procurves), IBM 8264, NEC PF 5820 / 5240, Extreme – Summit series
  • 26. Demo
  • 27. Getting Involved - OpenFlowHub A community of open source OpenFlow developers What it is: Get involved: 1. A community of open source  Submit a project OpenFlow developers  Write a blog post 2. An OpenFlow Blog (available for guest authors)  http://www.openflowhub.org 3. Free hosting, tools, and marketing  Contact: for open source projects mike.cohen@openflowhub.org  Wiki, forums, bug tracking tools, logos, etc. Projects: ©2012 – Big Switch Networks Inc.
  • 28. Interested in Learning More?  Check out the website  http://floodlight.openflowhub.org  Join the mailing list:  http://groups.google.com/a/openflowhub.org/group/floodli ght-dev/topics  Or just email floodlight-dev@openflowhub.org  Get the code:  http://floodlight.openflowhub.org/download ©2012 – Big Switch Networks Inc.
  • 29. Presenters Mike Cohen Product Manager mike.cohen@bigswitch.com Alex Reimers Member of Technical Staff alex@bigswitch.com ©2012 – Big Switch Networks Inc. 29
  • 30. End
  • 32. Network considerations  Why OpenFlow?  Lots of reasons we talked about already...  Simplest is network monitoring from a single location – packetin, flow modes, cpu usage, throughput, devices connected, etc.  Control / Data networks  Offer critical services on non-OF network (ie. Voip)  Control / data path separation – vlans in most cases  Deploy OF from edge to core. Gain increased visibility over time.  Measure traffic patterns and make sure your switch hardware can support it. Some have limited control traffic throughput (flow set up rate, etc.).  Security considerations  Do you need to protect against controller DoS attacks?  Do you want encrypted control traffic?  Gotchas  Physical loops into the OpenFlow network  Wifi mesh networks ©2012 – Big Switch Networks Inc. 32
  • 34. Network Virtualization: Flowvisor Virtualized Control Plane Customer Alice Customer Bob Customer Cathy Each use case/demo presented here runs in an isolated slice of Stanford’s OpenFlow production network. Protocol OpenFlow OpenFlow Protocol Datapath FlowVisor Isolation Policy FlowVisor slices OpenFlow OpenFlow OpenFlow networks, creating multiple Datapath Datapath isolated and programmable logical networks on the same physical topology. ©2012 – Big Switch Networks Inc. 34
  • 35. Load balancing FlowScale: Load balancing using Layer 2 OF switches  Traffic load balancer using OpenFlow  Implemented in OF ToR switches  Deployed in IU IDS ©2012 – Big Switch Networks Inc. 35
  • 36. VM Management: WAN Migration Moved a VM from Stanford to Japan without changing its IP. VM hosted a video game server with active network connections. ©2012 – Big Switch Networks Inc. 36
  • 37. OpenFlow Protocol (1) Match Fields Action(s) Stats Packet + byte counters 1. Forward packet to zero or more ports 2. Encapsulate and forward to controller 3. Modify Fields 4. Vendor specific extensions Switch VLAN VLAN MAC MAC Eth IP IP IP IP L4 L4 Port ID pcp src dst type Src Dst ToS Prot sport dport + mask what fields to match ©2012 – Big Switch Networks Inc. 37
  • 38. OpenFlow Protocol (2) Switch MAC MAC Eth VLAN IP Src IP Prot TCP TCP Action port src dst type ID sport dport Switching * * 00:1f * * * * * * Port6 :.. Flow Port3 00:20 00:1f 0800 Vlan1 1.2.3.4 5.6.7.8 4 17264 Port6 switching .. .. Firewall * * * * * * * * 22 Drop Routing * * * * * * 5.6.7.8 * * Port6 VLAN * * 00:1f * Vlan1 * * * * Port6,p switching .. ort7, port8 ©2012 – Big Switch Networks Inc. 38
  • 39. Other Floodlight Highlights REST- Static 2 1 based Flow App Pusher  Java event APIs Jython App  Active work in Java App defining  REST-based APIs standard “Northbound” APIs  Ability to push flows Floodlight Controller 3 Switch  Support for OF Switch integrating with non-OpenFlow OF Switch networks OF Switch OF Switch ©2012 – Big Switch Networks Inc. 39
  • 40. IFloodlightModule Interface 1. getModuleDependencies() Function Description  What services does this moduleWhat services does this getModuleDependencies() require? module require? 2. getModuleServices(), getServiceImpls()  Services does this module provide and how? getModuleServices() Services does this module provide and how? 3. init(FloodlightModuleContext context)  Internal, before dependencies have init()’d init(FloodlightModuleContext context) Internal, before dependencies have init()’ed 4. startup(FloodlightModuleContext context)  External, with dependencies initialization startup(FloodlightModuleContext context) External, with dependencies initialization
  • 41. OpenFlow Topologies vswitch Top of rack Need OpenFlow at last hop Agg / Core in the network  For vms:vswitch  For physical hosts: Tor VM VM VM VM VM VM VM VM Floodlight can manage multiple “islands” of VM VM Physical host OpenFlow switches Physical host VM VM … … Rack 1 Rack 2 ©2012 – Big Switch Networks Inc. 41
  • 42. Demo Problem: Track the last N Packet-Ins seen by the controller and expose it via a REST API What you will see: 1. Adding a new module 2. Creating a REST API 3. Running Floodlight ©2012 – Big Switch Networks Inc. 42

Notas do Editor

  1. Much of traditional networking was designed in the 1970’s. The protocols and standards have evolved and proved amazingly resilient – but they are non-ideal for the challenges of modern datacenters. First, they are based on merged hw and software solutions.Second, they are based on fully distributed protocols. This made tons of sense in the early days of the internet but in a world where a datacenter admin knows every piece of hw and how its connected, distributed protocols are less helpful.
  2. SDN separates networking into 3 tiersA data plane tier responsible for fowarding packets.A controller thatmanagesconections to each forwarding element and acts as a network os.Applications which input control logic.
  3. People often conflate SDN and openflow. They are very different. OpenFlow is a protocol for switches commnicating with a controller. Its often a piece of an sdn architecture but techically isn’t required. In fact, there is also work being done on northbound api as well.
  4. Network virtualization is one of the most interesting examples of SDN in the real world. In involves slicing a physical network into multiple logical networks and offering isolation between. In the server world, this has shown huge operational efficiency gains and it offers similar promise in networking.Network services - Example – instead of inserting and configuring a firewall, you could just tell your controller to automatically provision rulesVM mobility and management – Virtual machines have greatly increased the complexity in the network. They get spun up and down and even can be moved around while running. SDN offers the flexibility to have the network respond quickly to changes in vm state and offers a lot of operational efficiency. CLOS – SDN and Openflow offer very flexible forwarding paradigms. One of the thing is allows is the creation of relatively low cost non-blocking clos networks for high performance environments. Data analysis – OpenFlow also makes it possible, in fact easy, to get lots of real time information about a running network. The switches and controller maintain a rich set of stats but also make it possible to direct traffic to montioring devices much the way tap or span ports would.Networkvirtualiztion - huge operational benefits - puts all policy in one place. Great for audit. - also manages p and v togetherVirtual machine management - makes it eaier to tie polcies to a vm because you can track a mac trhoughout the network - IP address is stored in the vm. Can’t change it. SDN makes it easier to alter the network around this.Vlans – still require administration
  5. Lets look a little more deeply at the OpenFlow protocol. It has 3 main componentsA controller, which we’ll talk a lot more about in detail. The controller handles all the control logic for the network.A potentially encrypted control channel to a switch.An openflow client running on a switch. This handles controlling the openflowdatapath.
  6. Many people ask us why OpenFlow is used so heavily in SDN. Essentially,OpenFlow is one of the simplest lowest level abstractions available. It allows very fine grained control over forwarding and separates control and data.
  7. OpenFlow 1.0 was the initial openflow spec. Its largely what is supported today in hardware and vswitches. OpenFlow 1.1 introduced a new concept of multipe tables that could be processed sequentially. This solved some of the space explosion problems the intial spec had but introduced new problems in hw.1.2 – ipv6. Generalized match – TLV based
  8. Tools – packetstreamer ,static flow pusher, mininet,
  9. Our topology, device manager know about host attachment points and make it possible to deal with integrating openflow and non openflow networks.
  10. Our topology, device manager know about host attachment points and make it possible to deal with integrating openflow and non openflow networks.
  11. Pronto w/ indigo – 3240/3290HP: 3500, 5400, 8200 (procurves)IBM 8264NEC 5820 / 5240Pronto w/ indigoExtreme – Summit series(all based on broadcomasics)
  12. How of works with non oF?Think through control network and data path. Have a separate network for controlUse vlans to separate control and data.Switches supported today:Stanford: - HP, nec,ibm, prontoWifi – meraki, othersWhat openflow provides that non-OF provides- Visibility- Managebility – scripts running along with OF controller to monitor packetin rates, flow mods, flow table size. Cpu usage, datapath throughput. Can monitor who is connected and how many users in network. With meraki, can know what type of devices in network, throughputHow reseasrchers can benefit?Primary reason for stanford. Enable sdn-based research. Link to internet2/geni. Migration process? Strategy?Understand traffic pattern first. Current hw has limitations on throughput (esp true of hp) on the control plane side. Flow set up rate, etc. HP offers only IP matching only in hw. Deploy from edge to core. We support switchclusters. Do it floor by floor essentially. Stanford runs two networks in parallelVoip and other key services is non-OF at least. Start with non-ciritcal traffic. Security?Highlight new visibility capabilitiesDenial of service on controller, etc.Encrypted control channels – no one does this todayInteropability of openflow and wifi? - mesh networks and host mobility create tricky situations.
  13. Our topology, device manager know about host attachment points and make it possible to deal with integrating openflow and non openflow networks.