SlideShare a Scribd company logo
OpenFlow
S. Kingston Smiler
kingstonsmiler@gmail.com
Course Objective
Need for OpenFlow
The OpenFlow® Protocol message structures, features etc
Open Flow life of a Packet
Different Tables in OpenFlow
Packet Capture of different Openflow Packets
Hands-on
Problems
3
 Closed Systems with no or very minimal abstractions
in the network design.
 Hardware centric – usage of custom ASICs with
Vendor Specific Software.
 Difficult to perform real world experiments on large
scale production networks.
 No standard abstractions towards north bound and
south bound interfaces, even though we have
standard abstractions in the east / west bound
interface with peer routers / switches.
Need for OpenFlow
 Facilitate Innovation in Network
 Layered architecture with Standard Open Interfaces
 Independent innovation at each layer
 More accessibility since software can be easily developed by
more vendors
 Speed-to-market – no hardware fabrication cycles
 More flexibility with programmability and ease of customization
and integration with other software applications
 Fast upgrades
 Program a network vs Configure a network
4
OpenFlow
 OpenFlow is a protocol which enables programmability of the
forwarding plane
 OpenFlow is like an x86 instruction set for the network nodes.
 Provides open interface to “black box” networking node (ie.
Routers, L2/L3 switch) to enable visibility and openness in
network
 Separation of control plane and data plane.
 The datapath of an OpenFlow Switch consists of a Flow Table, and an
action associated with each flow entry
 The control path consists of a controller which programs the flow entry
in the flow table
SDN and Open Flow
OpenFlow
General Myth
 SDN is Open Flow
Reality
 OpenFlow is an open API that provides a standard
interface for programming the data plane switches
7
OpenFlow Specification History
OpenFlow Specification History
Traditional Switch Forwarding
10Source: Adopted from ONF11 presentation by Martin Casado
OpenFlow Switch Forwarding
11Source: Adopted from ONF11 presentation by Martin Casado
Open Flow Illustration
Source: Adopted from ONF11 presentation by Martin Casado
Components of OpenFlow
13
* Figure From OpenFlow Switch Specification
OpenFlow Packet Flow
14
Controller
OpenFlow Switch
Flow
Table
Secure
Channel
PC
hw
sw
OpenFlow Switch specification
Components of OpenFlow Network
15
* Figure From OpenFlow Switch Specification
OpenFlow Controller
 Manages one or more switch via OpenFlow channels.
 Uses OpenFlow protocol to communicate with a OpenFlow
aware switch.
 Acts similar to control plane of traditional switch.
 Provides a network wide abstraction for the applications on
north bound.
 Responsible for programming various tables in the OpenFlow
Switch.
 Single switch can be managed by more than one controller for
load balancing or redundancy purpose. In this case the
controller can take any one of the following roles.
 Master.
 Slave.
 Equal.
16
OpenFlow Controller
 OpenSource
 OpenDayLight
 Floodlight
 RYU
 NOX/POX
 ONOS
 Commercial Controllers
 Cisco APIC
 VMware NSX Controller
 HP VAN SDN Controller
 NEC ProgrammableFlow PF6800 Controller
 Nuage Networks Virtualized Services Controller
(VSC)
17
OpenFlow Channel
 Used to exchange OpenFlow message between switch and
controller.
 Switch can establish single or multiple connections to same or
different controllers (auxiliary connections).
 A controller configures and manages the switch, receives
events from the switch, and send packets out the switch via
this interface
 The SC connection is a TLS/TCP connection. Switch and
controller mutually authenticate by exchanging certificates
signed by a site-specific private key
18
OpenFlow Messages
 Three Message Types
 Controller to Switch
 Asynchronous Message
 Asymmetric Message
 Controller to Switch
 Feature Request
 Configuration
 Modify State
 Packet Out etc.
 Asynchronous
 Packet-in
 Flow Removed
 Port Status
 Error etc.
 ASymmetric
 Hello
 Echo
 Experimenter etc
19
Initial Connection Setup
20
OpenFlow – Hello ( From Switch to Controller)
OpenFlow – Hello ( From Controller to Switch)
OpenFlow – Feature Request (From Controller to Switch)
OpenFlow – Feature Reply (From Switch to Controller)
OpenFlow – Role Request (From Controller to Switch)
OpenFlow – Role Reply (From Switch to Controller)
OpenFlow – Packet IN (From Switch to Controller)
OpenFlow – Flow Config (From Switch to Controller)
OpenFlow Switch
 Types of the switches:
 Open-flow only
 Open-flow hybrid
29
 Major Components
 Ports
 Flow Table
 Group Table
 Meter Table
OpenFlow Ports
 Network interfaces for passing packets between Openflow
Processing and the rest of the Network.
 Types of Ports:
 Physical Ports
• Switch defined ports
• Eg. Physical ports map one to one Ethernet interfaces
 Logical Ports
• Switch defined ports that don’t correspond to a hardware interface
of switch
• Logical ports include “Tunnel-ID”.
 Reserved Ports
• Defined by OpenFlow Spec
• Specifies generic forwarding actions such as sending to the
controller, flooding and forwarding using non-openflow methods
30
Pipeline Processing
31
* Figure From OpenFlow Switch Specification
Flow Table Components
32
* Figure From OpenFlow Switch Specification
Flow Entry
33
* Figure From OpenFlow Switch Specification
Openflow Table Instructions
 Instructions are executed when a packet matches entry.
 Instruction result can
 Change the packet
 Action set
 Pipeline processing etc.
 Sample Instruction Types
 Meter ID - Direct a packet to the meter id.
 Apply-Actions - Apply a specific action immediately
 Clear-Actions - Clear all the actions in the action set
 Write-Actions - Add a new action into the existing action set
 Write-Metadata - Write the masked meta data value
 Goto-Table - Indicate the next table in the processing pipeline
34
Action Set & Action List
 Action Set
 Action set is associated with each packet. FE modify the action set using
write-action/ clear-action
 Actions in the action-set will be executed when pipeline is stopped
 Action set contains maximum of one action of each type. If multiple actions
of the same type need to be added then use “Apply-Actions”
 Action List
 “Apply-action” , “packet-out” messages include action list
 Execute an action immediately
 Actions are executed sequentially in the order they have been specified
 If action list contains an output action, a copy of the packet is forwarded in
its current state to the desired port
 Action-set shouldn’t be changed because of action-list
35
Action
 Action
 What to do with the packet when match criteria matches with the packet
 Some of the Action Type
• Output - Fwd a pkt to the specified open flow port (physical/ logical/reserved)
• Set Queue - Determines which queue should be used for scheduling and forwarding packet
• Drop - Packets which doesn’t have output action should be dropped
• Group - Process the packet through specified group
• Push-Tag/ Pop-Tag - Insert VLAN, MPLS, PBB tage
• Set-Field - Rewriting a field in the packet header
• Change TTL - Decrement TTL
• Copy TTL inwards – apply copy inward actions to the packet
• Push MPLS – apply MPLS tag push action to the packet
• Push PBB – apply PBB tag push action to the packet
36
Flow Entry (Contd…)
 Each Flow Entry contains an
optional Idle and Hard Timeout
field.
 Switch removes entry and
sends flow removed message
to controller when,
 No packets have matched
within the Idle Timeout
 The flow was inserted more
than the Hard Timeout.
 The timeouts are optional
37
Flow Entry Timeouts
Flow Entry (Contd…)
38
Reactive Flows Proactive Flows
First packet of flow is sent to controller
for processing
Controller pre-populates flow table in
switch.
Controller evaluates packet and sends
Flow message to switch insert a flow
table entry for the packet
Zero set-up time for new flows
Subsequent packets (in flow) match
the entry until idle or hard timeout
Switch in Proactive forwarding ‘only’
would default to action=drop
Loss of connectivity between switch
and controller limit utility of switch
Loss of connection between switch and
controller does not disrupt network
traffic
Instruction Execution in Flow Table
39
* Figure From OpenFlow Switch Specification
Group Table
 Additional method for forwarding to a group of entries.
 Comprises of Group ID, Group Type, Counters, Action buckets (each
action bucket contains a set of actions to be executed)
 Group Types:
 All
• Execute all buckets in a group
• Used mainly for multicast and broadcast – fwd a pkt on all the ports
 Select
• Execute one bucket in a Group ( Eg. ECMP packets)
• Implemented for load sharing and redundancy
 Indirect
• Execute one defined bucket in this Group
• Supports only a single bucket ( Eg. 40K routes are pointing to same next hop)
 Fast failover
• Execute the first live bucket
• Eg. There is a primary path and secondary path – pass the traffic on primary path
and if it fails use the secondary one
40
Group Table
41
Instruction Execution in Group Table
42
* Figure From OpenFlow Switch Specification
Meter Table
 Consists of meter entries and defining per-flow meters.
 Per-flow meters enable OF to implement QoS operations (rate-
limiting)
 Components of Meter table:
 Meter ID, Meter Band, Counters
 Meters measures the rate of packets assigned to it and enable
controlling the rate of those packets
 Meters are attached directly to flow entries
 Meter band: unordered list of meter bands, where each meter band
specifies the rate of the band and the way to process packet
 Components of Meter band:
 Band Type, Rate, Counters, Type specific arguments
 Band Type : defined how to process a packet (drop/ dscp remark)
43
Meter Table
44
* Figure From OpenFlow Switch Specification
Packet Flow in OpenFlow Switch
45
* Figure From OpenFlow Switch Specification
OpenFlow Features Vs Specification
LAB Exercise
Course Objective
How to run ODL Contoller
How to run ODL features and getting UI
How to run Mininet
Topology detection of mininet Network
Packet Capture of different Openflow Packets
Ping and test the Network
How to start OpenDayLight Controller
 Run the given VM in Virtual Box
 Goto distribution-karaf-0.4.4-Beryllium-SR4/
 cd distribution-karaf-0.4.4-Beryllium-SR4/
 Run ./bin/karaf
 Install the basic required karaf features/bundles for the lab
exercise
 feature:install odl-restconf-all odl-l2switch-switch odl-mdsal-
apidocs odl-dlux-all
 feature:install odl-restconf-noauth odl-netconf-connector-all
 Go to browser and open the page
http://10.0.2.15:8181/index.html
 Login with admin, admin
OpenDaylight Controller UI
MININET & OpenVSwitch (OVS)
Mininet
 Mininet creates a realistic OpenFlow network, running real
kernel, switch and application code, on a single machine (VM,
cloud or native), in seconds, with a single command
 sudo mn --topo linear,3 --mac --controller=remote,ip=10.0.2.15,port=6633 -
-switch ovs,protocols=OpenFlow13
 sudo ovs-ofctl -O OpenFlow13 dump-flows s2
 sudo ovs-vsctl show
Mininet - Installation
 Option 1: Mininet VM Installation -
http://mininet.org/download/#option-1-mininet-vm-
installation-easy-recommended
 Option 2: Native Installation from Source -
http://mininet.org/download/#option-2-native-installation-
from-source
 Option 3: Installation from Packages -
http://mininet.org/download/#option-3-installation-from-
packages
 Option 4: Upgrading an existing Mininet Installation -
http://mininet.org/download/#option-4-upgrading-an-
existing-mininet-installation
Mininet – Some show commands
Mininet – Some show commands
Mininet – Some show commands
Mininet – Some show commands
Thank you
Backup Slides
How to check VT-x enabled in Windows 8?
60
How to check VT-x enabled in Windows 7?
61
 Install the Microsoft® Hardware-Assisted Virtualization
Detection Tool from https://www.microsoft.com/en-
us/download/details.aspx?id=592
 Run it and see whether you get this output

More Related Content

What's hot

Ch 02 --- sdn and openflow architecture
Ch 02 --- sdn and openflow architectureCh 02 --- sdn and openflow architecture
Ch 02 --- sdn and openflow architecture
Yoram Orzach
 
Introduction to SDN: Software Defined Networking
Introduction to SDN: Software Defined NetworkingIntroduction to SDN: Software Defined Networking
Introduction to SDN: Software Defined Networking
Ankita Mahajan
 
Introduction to Network Function Virtualization (NFV)
Introduction to Network Function Virtualization (NFV)Introduction to Network Function Virtualization (NFV)
Introduction to Network Function Virtualization (NFV)
rjain51
 
SDN, OpenFlow, NFV, and Virtual Network
SDN, OpenFlow, NFV, and Virtual NetworkSDN, OpenFlow, NFV, and Virtual Network
SDN, OpenFlow, NFV, and Virtual Network
Tim4PreStartup
 
Introduction to Software Defined Networking (SDN)
Introduction to Software Defined Networking (SDN)Introduction to Software Defined Networking (SDN)
Introduction to Software Defined Networking (SDN)
rjain51
 
Network virtualization
Network virtualizationNetwork virtualization
Network virtualization
Damian Parniewicz
 
Why sdn
Why sdnWhy sdn
Why sdn
lz1dsb
 
Software Defined networking (SDN)
Software Defined networking (SDN)Software Defined networking (SDN)
Software Defined networking (SDN)
Milson Munakami
 
SDN 101: Software Defined Networking Course - Sameh Zaghloul/IBM - 2014
SDN 101: Software Defined Networking Course - Sameh Zaghloul/IBM - 2014SDN 101: Software Defined Networking Course - Sameh Zaghloul/IBM - 2014
SDN 101: Software Defined Networking Course - Sameh Zaghloul/IBM - 2014
SAMeh Zaghloul
 
Network architecture
Network architectureNetwork architecture
Network architecture
csk selva
 
Software defined networking(sdn) vahid sadri
Software defined networking(sdn) vahid sadriSoftware defined networking(sdn) vahid sadri
Software defined networking(sdn) vahid sadri
Vahid Sadri
 
Ccna rse chp7 Access Control List (ACL)
Ccna rse chp7 Access Control List (ACL)Ccna rse chp7 Access Control List (ACL)
Ccna rse chp7 Access Control List (ACL)
newbie2019
 
Introduction to OpenDaylight & Application Development
Introduction to OpenDaylight & Application DevelopmentIntroduction to OpenDaylight & Application Development
Introduction to OpenDaylight & Application Development
Michelle Holley
 
Cisco Router Basic Configuration
Cisco Router Basic ConfigurationCisco Router Basic Configuration
Cisco Router Basic ConfigurationProf. Erwin Globio
 
SDN Presentation
SDN PresentationSDN Presentation
SDN Presentation
Abderrahmane TEKFI
 
Software defined networks and openflow protocol
Software defined networks and openflow protocolSoftware defined networks and openflow protocol
Software defined networks and openflow protocol
Mahesh Mohan
 
Sdn presentation
Sdn presentation Sdn presentation
Sdn presentation
Frikha Nour
 
Software Defined Network (SDN)
Software Defined Network (SDN)Software Defined Network (SDN)
Software Defined Network (SDN)
Ahmed Ayman
 

What's hot (20)

Ch 02 --- sdn and openflow architecture
Ch 02 --- sdn and openflow architectureCh 02 --- sdn and openflow architecture
Ch 02 --- sdn and openflow architecture
 
Introduction to SDN: Software Defined Networking
Introduction to SDN: Software Defined NetworkingIntroduction to SDN: Software Defined Networking
Introduction to SDN: Software Defined Networking
 
Introduction to Network Function Virtualization (NFV)
Introduction to Network Function Virtualization (NFV)Introduction to Network Function Virtualization (NFV)
Introduction to Network Function Virtualization (NFV)
 
SDN, OpenFlow, NFV, and Virtual Network
SDN, OpenFlow, NFV, and Virtual NetworkSDN, OpenFlow, NFV, and Virtual Network
SDN, OpenFlow, NFV, and Virtual Network
 
Introduction to Software Defined Networking (SDN)
Introduction to Software Defined Networking (SDN)Introduction to Software Defined Networking (SDN)
Introduction to Software Defined Networking (SDN)
 
Network virtualization
Network virtualizationNetwork virtualization
Network virtualization
 
Why sdn
Why sdnWhy sdn
Why sdn
 
Software Defined networking (SDN)
Software Defined networking (SDN)Software Defined networking (SDN)
Software Defined networking (SDN)
 
SDN 101: Software Defined Networking Course - Sameh Zaghloul/IBM - 2014
SDN 101: Software Defined Networking Course - Sameh Zaghloul/IBM - 2014SDN 101: Software Defined Networking Course - Sameh Zaghloul/IBM - 2014
SDN 101: Software Defined Networking Course - Sameh Zaghloul/IBM - 2014
 
Network architecture
Network architectureNetwork architecture
Network architecture
 
Software defined networking(sdn) vahid sadri
Software defined networking(sdn) vahid sadriSoftware defined networking(sdn) vahid sadri
Software defined networking(sdn) vahid sadri
 
Ccna rse chp7 Access Control List (ACL)
Ccna rse chp7 Access Control List (ACL)Ccna rse chp7 Access Control List (ACL)
Ccna rse chp7 Access Control List (ACL)
 
Vlan
Vlan Vlan
Vlan
 
Introduction to OpenDaylight & Application Development
Introduction to OpenDaylight & Application DevelopmentIntroduction to OpenDaylight & Application Development
Introduction to OpenDaylight & Application Development
 
SD WAN
SD WANSD WAN
SD WAN
 
Cisco Router Basic Configuration
Cisco Router Basic ConfigurationCisco Router Basic Configuration
Cisco Router Basic Configuration
 
SDN Presentation
SDN PresentationSDN Presentation
SDN Presentation
 
Software defined networks and openflow protocol
Software defined networks and openflow protocolSoftware defined networks and openflow protocol
Software defined networks and openflow protocol
 
Sdn presentation
Sdn presentation Sdn presentation
Sdn presentation
 
Software Defined Network (SDN)
Software Defined Network (SDN)Software Defined Network (SDN)
Software Defined Network (SDN)
 

Viewers also liked

Scale Up with Lock-Free Algorithms @ JavaOne
Scale Up with Lock-Free Algorithms @ JavaOneScale Up with Lock-Free Algorithms @ JavaOne
Scale Up with Lock-Free Algorithms @ JavaOne
Roman Elizarov
 
Docker Networking
Docker NetworkingDocker Networking
Docker Networking
Kingston Smiler
 
Graduating To Go - A Jumpstart into the Go Programming Language
Graduating To Go - A Jumpstart into the Go Programming LanguageGraduating To Go - A Jumpstart into the Go Programming Language
Graduating To Go - A Jumpstart into the Go Programming Language
Kaylyn Gibilterra
 
Walk through an enterprise Linux migration
Walk through an enterprise Linux migrationWalk through an enterprise Linux migration
Walk through an enterprise Linux migration
Rogue Wave Software
 
[若渴計畫] Challenges and Solutions of Window Remote Shellcode
[若渴計畫] Challenges and Solutions of Window Remote Shellcode[若渴計畫] Challenges and Solutions of Window Remote Shellcode
[若渴計畫] Challenges and Solutions of Window Remote Shellcode
Aj MaChInE
 
In-Memory Computing Essentials for Architects and Engineers
In-Memory Computing Essentials for Architects and EngineersIn-Memory Computing Essentials for Architects and Engineers
In-Memory Computing Essentials for Architects and Engineers
Denis Magda
 
What in the World is Going on at The Linux Foundation?
What in the World is Going on at The Linux Foundation?What in the World is Going on at The Linux Foundation?
What in the World is Going on at The Linux Foundation?
Black Duck by Synopsys
 
numPYNQ @ NGCLE@e-Novia 15.11.2017
numPYNQ @ NGCLE@e-Novia 15.11.2017numPYNQ @ NGCLE@e-Novia 15.11.2017
numPYNQ @ NGCLE@e-Novia 15.11.2017
NECST Lab @ Politecnico di Milano
 
Linux Security APIs and the Chromium Sandbox (SwedenCpp Meetup 2017)
Linux Security APIs and the Chromium Sandbox (SwedenCpp Meetup 2017)Linux Security APIs and the Chromium Sandbox (SwedenCpp Meetup 2017)
Linux Security APIs and the Chromium Sandbox (SwedenCpp Meetup 2017)
Patricia Aas
 
Advanced memory allocation
Advanced memory allocationAdvanced memory allocation
Advanced memory allocation
Joris Bonnefoy
 
OCCIware, an extensible, standard-based XaaS consumer platform to manage ever...
OCCIware, an extensible, standard-based XaaS consumer platform to manage ever...OCCIware, an extensible, standard-based XaaS consumer platform to manage ever...
OCCIware, an extensible, standard-based XaaS consumer platform to manage ever...
OCCIware
 
DevRomagna / Golang Intro
DevRomagna / Golang IntroDevRomagna / Golang Intro
DevRomagna / Golang Intro
Simone Gentili
 
Communication hardware
Communication hardwareCommunication hardware
Communication hardware
Hans Mallen
 
Go Execution Tracer
Go Execution TracerGo Execution Tracer
Go Execution Tracer
André Carvalho
 
Server virtualization
Server virtualizationServer virtualization
Server virtualization
Kingston Smiler
 
Virtualization
VirtualizationVirtualization
Virtualization
Kingston Smiler
 
In-depth forensic analysis of Windows registry files
In-depth forensic analysis of Windows registry filesIn-depth forensic analysis of Windows registry files
In-depth forensic analysis of Windows registry files
Maxim Suhanov
 
Network Virtualization
Network VirtualizationNetwork Virtualization
Network Virtualization
Kingston Smiler
 
Deep dive into Coroutines on JVM @ KotlinConf 2017
Deep dive into Coroutines on JVM @ KotlinConf 2017Deep dive into Coroutines on JVM @ KotlinConf 2017
Deep dive into Coroutines on JVM @ KotlinConf 2017
Roman Elizarov
 
Introduction to OpenFlow, SDN and NFV
Introduction to OpenFlow, SDN and NFVIntroduction to OpenFlow, SDN and NFV
Introduction to OpenFlow, SDN and NFVKingston Smiler
 

Viewers also liked (20)

Scale Up with Lock-Free Algorithms @ JavaOne
Scale Up with Lock-Free Algorithms @ JavaOneScale Up with Lock-Free Algorithms @ JavaOne
Scale Up with Lock-Free Algorithms @ JavaOne
 
Docker Networking
Docker NetworkingDocker Networking
Docker Networking
 
Graduating To Go - A Jumpstart into the Go Programming Language
Graduating To Go - A Jumpstart into the Go Programming LanguageGraduating To Go - A Jumpstart into the Go Programming Language
Graduating To Go - A Jumpstart into the Go Programming Language
 
Walk through an enterprise Linux migration
Walk through an enterprise Linux migrationWalk through an enterprise Linux migration
Walk through an enterprise Linux migration
 
[若渴計畫] Challenges and Solutions of Window Remote Shellcode
[若渴計畫] Challenges and Solutions of Window Remote Shellcode[若渴計畫] Challenges and Solutions of Window Remote Shellcode
[若渴計畫] Challenges and Solutions of Window Remote Shellcode
 
In-Memory Computing Essentials for Architects and Engineers
In-Memory Computing Essentials for Architects and EngineersIn-Memory Computing Essentials for Architects and Engineers
In-Memory Computing Essentials for Architects and Engineers
 
What in the World is Going on at The Linux Foundation?
What in the World is Going on at The Linux Foundation?What in the World is Going on at The Linux Foundation?
What in the World is Going on at The Linux Foundation?
 
numPYNQ @ NGCLE@e-Novia 15.11.2017
numPYNQ @ NGCLE@e-Novia 15.11.2017numPYNQ @ NGCLE@e-Novia 15.11.2017
numPYNQ @ NGCLE@e-Novia 15.11.2017
 
Linux Security APIs and the Chromium Sandbox (SwedenCpp Meetup 2017)
Linux Security APIs and the Chromium Sandbox (SwedenCpp Meetup 2017)Linux Security APIs and the Chromium Sandbox (SwedenCpp Meetup 2017)
Linux Security APIs and the Chromium Sandbox (SwedenCpp Meetup 2017)
 
Advanced memory allocation
Advanced memory allocationAdvanced memory allocation
Advanced memory allocation
 
OCCIware, an extensible, standard-based XaaS consumer platform to manage ever...
OCCIware, an extensible, standard-based XaaS consumer platform to manage ever...OCCIware, an extensible, standard-based XaaS consumer platform to manage ever...
OCCIware, an extensible, standard-based XaaS consumer platform to manage ever...
 
DevRomagna / Golang Intro
DevRomagna / Golang IntroDevRomagna / Golang Intro
DevRomagna / Golang Intro
 
Communication hardware
Communication hardwareCommunication hardware
Communication hardware
 
Go Execution Tracer
Go Execution TracerGo Execution Tracer
Go Execution Tracer
 
Server virtualization
Server virtualizationServer virtualization
Server virtualization
 
Virtualization
VirtualizationVirtualization
Virtualization
 
In-depth forensic analysis of Windows registry files
In-depth forensic analysis of Windows registry filesIn-depth forensic analysis of Windows registry files
In-depth forensic analysis of Windows registry files
 
Network Virtualization
Network VirtualizationNetwork Virtualization
Network Virtualization
 
Deep dive into Coroutines on JVM @ KotlinConf 2017
Deep dive into Coroutines on JVM @ KotlinConf 2017Deep dive into Coroutines on JVM @ KotlinConf 2017
Deep dive into Coroutines on JVM @ KotlinConf 2017
 
Introduction to OpenFlow, SDN and NFV
Introduction to OpenFlow, SDN and NFVIntroduction to OpenFlow, SDN and NFV
Introduction to OpenFlow, SDN and NFV
 

Similar to OpenFlow

Openflow Protocol
Openflow ProtocolOpenflow Protocol
Openflow Protocol
Kaliyaperumal Krishnan
 
Open Flow Protocol
Open Flow ProtocolOpen Flow Protocol
Open Flow Protocol
Vishal S M B
 
Lecture14 1
Lecture14 1Lecture14 1
Lecture14 1
Edwin Castillo
 
lect4_SDNbasic_openflow.pptx
lect4_SDNbasic_openflow.pptxlect4_SDNbasic_openflow.pptx
lect4_SDNbasic_openflow.pptx
JesicaDcruz1
 
SDN Networks Programming Languages
SDN Networks Programming LanguagesSDN Networks Programming Languages
SDN Networks Programming Languages
Flavio Vit
 
Spirent TestCenter OpenFlow Controller Emulation
Spirent TestCenter OpenFlow Controller EmulationSpirent TestCenter OpenFlow Controller Emulation
Spirent TestCenter OpenFlow Controller Emulation
Malathi Malla
 
Protocol Independence
Protocol IndependenceProtocol Independence
Protocol Independence
Open Networking Summits
 
Understanding OpenFlow
Understanding OpenFlowUnderstanding OpenFlow
Understanding OpenFlow
Saurabh Agarwal
 
SDN - OpenFlow protocol
SDN - OpenFlow protocolSDN - OpenFlow protocol
SDN - OpenFlow protocol
Ulf Marxen
 
Openflow
OpenflowOpenflow
Openflow
Phuc Tran
 
F14_Class1.pptx
F14_Class1.pptxF14_Class1.pptx
F14_Class1.pptx
Sameer Ali
 
OpenFlow Extensions
OpenFlow ExtensionsOpenFlow Extensions
OpenFlow Extensions
US-Ignite
 
Looking at SDN with DDS Glasses
Looking at SDN with DDS GlassesLooking at SDN with DDS Glasses
Looking at SDN with DDS Glasses
Angelo Corsaro
 
OpenFlow Tutorial
OpenFlow TutorialOpenFlow Tutorial
OpenFlow Tutorial
Ja-seop Kwak
 
Programming the Network Data Plane
Programming the Network Data PlaneProgramming the Network Data Plane
Programming the Network Data Plane
C4Media
 
OpenFlow tutorial
OpenFlow tutorialOpenFlow tutorial
OpenFlow tutorial
openflow
 
Runos OpenFlow Controller (eng)
Runos OpenFlow Controller (eng)Runos OpenFlow Controller (eng)
Runos OpenFlow Controller (eng)
Alexander Shalimov
 
Ch 03 --- the OpenFlow protocols
Ch 03 --- the OpenFlow protocolsCh 03 --- the OpenFlow protocols
Ch 03 --- the OpenFlow protocols
Yoram Orzach
 
Analytical Modeling of End-to-End Delay in OpenFlow Based Networks
Analytical Modeling of End-to-End Delay in OpenFlow Based NetworksAnalytical Modeling of End-to-End Delay in OpenFlow Based Networks
Analytical Modeling of End-to-End Delay in OpenFlow Based Networks
Azeem Iqbal
 

Similar to OpenFlow (20)

Openflow Protocol
Openflow ProtocolOpenflow Protocol
Openflow Protocol
 
Open Flow Protocol
Open Flow ProtocolOpen Flow Protocol
Open Flow Protocol
 
Lecture14 1
Lecture14 1Lecture14 1
Lecture14 1
 
lect4_SDNbasic_openflow.pptx
lect4_SDNbasic_openflow.pptxlect4_SDNbasic_openflow.pptx
lect4_SDNbasic_openflow.pptx
 
Sgnog openflow demo-v1.0
Sgnog openflow demo-v1.0Sgnog openflow demo-v1.0
Sgnog openflow demo-v1.0
 
SDN Networks Programming Languages
SDN Networks Programming LanguagesSDN Networks Programming Languages
SDN Networks Programming Languages
 
Spirent TestCenter OpenFlow Controller Emulation
Spirent TestCenter OpenFlow Controller EmulationSpirent TestCenter OpenFlow Controller Emulation
Spirent TestCenter OpenFlow Controller Emulation
 
Protocol Independence
Protocol IndependenceProtocol Independence
Protocol Independence
 
Understanding OpenFlow
Understanding OpenFlowUnderstanding OpenFlow
Understanding OpenFlow
 
SDN - OpenFlow protocol
SDN - OpenFlow protocolSDN - OpenFlow protocol
SDN - OpenFlow protocol
 
Openflow
OpenflowOpenflow
Openflow
 
F14_Class1.pptx
F14_Class1.pptxF14_Class1.pptx
F14_Class1.pptx
 
OpenFlow Extensions
OpenFlow ExtensionsOpenFlow Extensions
OpenFlow Extensions
 
Looking at SDN with DDS Glasses
Looking at SDN with DDS GlassesLooking at SDN with DDS Glasses
Looking at SDN with DDS Glasses
 
OpenFlow Tutorial
OpenFlow TutorialOpenFlow Tutorial
OpenFlow Tutorial
 
Programming the Network Data Plane
Programming the Network Data PlaneProgramming the Network Data Plane
Programming the Network Data Plane
 
OpenFlow tutorial
OpenFlow tutorialOpenFlow tutorial
OpenFlow tutorial
 
Runos OpenFlow Controller (eng)
Runos OpenFlow Controller (eng)Runos OpenFlow Controller (eng)
Runos OpenFlow Controller (eng)
 
Ch 03 --- the OpenFlow protocols
Ch 03 --- the OpenFlow protocolsCh 03 --- the OpenFlow protocols
Ch 03 --- the OpenFlow protocols
 
Analytical Modeling of End-to-End Delay in OpenFlow Based Networks
Analytical Modeling of End-to-End Delay in OpenFlow Based NetworksAnalytical Modeling of End-to-End Delay in OpenFlow Based Networks
Analytical Modeling of End-to-End Delay in OpenFlow Based Networks
 

Recently uploaded

History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
laozhuseo02
 
ER(Entity Relationship) Diagram for online shopping - TAE
ER(Entity Relationship) Diagram for online shopping - TAEER(Entity Relationship) Diagram for online shopping - TAE
ER(Entity Relationship) Diagram for online shopping - TAE
Himani415946
 
Output determination SAP S4 HANA SAP SD CC
Output determination SAP S4 HANA SAP SD CCOutput determination SAP S4 HANA SAP SD CC
Output determination SAP S4 HANA SAP SD CC
ShahulHameed54211
 
How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
Gal Baras
 
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
3ipehhoa
 
test test test test testtest test testtest test testtest test testtest test ...
test test  test test testtest test testtest test testtest test testtest test ...test test  test test testtest test testtest test testtest test testtest test ...
test test test test testtest test testtest test testtest test testtest test ...
Arif0071
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
JungkooksNonexistent
 
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptxLiving-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
TristanJasperRamos
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
natyesu
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
laozhuseo02
 
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
3ipehhoa
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
JeyaPerumal1
 
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
3ipehhoa
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Sanjeev Rampal
 
This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!
nirahealhty
 
guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...
Rogerio Filho
 

Recently uploaded (16)

History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shopHistory+of+E-commerce+Development+in+China-www.cfye-commerce.shop
History+of+E-commerce+Development+in+China-www.cfye-commerce.shop
 
ER(Entity Relationship) Diagram for online shopping - TAE
ER(Entity Relationship) Diagram for online shopping - TAEER(Entity Relationship) Diagram for online shopping - TAE
ER(Entity Relationship) Diagram for online shopping - TAE
 
Output determination SAP S4 HANA SAP SD CC
Output determination SAP S4 HANA SAP SD CCOutput determination SAP S4 HANA SAP SD CC
Output determination SAP S4 HANA SAP SD CC
 
How to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptxHow to Use Contact Form 7 Like a Pro.pptx
How to Use Contact Form 7 Like a Pro.pptx
 
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
1比1复刻(bath毕业证书)英国巴斯大学毕业证学位证原版一模一样
 
test test test test testtest test testtest test testtest test testtest test ...
test test  test test testtest test testtest test testtest test testtest test ...test test  test test testtest test testtest test testtest test testtest test ...
test test test test testtest test testtest test testtest test testtest test ...
 
Latest trends in computer networking.pptx
Latest trends in computer networking.pptxLatest trends in computer networking.pptx
Latest trends in computer networking.pptx
 
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptxLiving-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
Living-in-IT-era-Module-7-Imaging-and-Design-for-Social-Impact.pptx
 
BASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptxBASIC C++ lecture NOTE C++ lecture 3.pptx
BASIC C++ lecture NOTE C++ lecture 3.pptx
 
The+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptxThe+Prospects+of+E-Commerce+in+China.pptx
The+Prospects+of+E-Commerce+in+China.pptx
 
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
原版仿制(uob毕业证书)英国伯明翰大学毕业证本科学历证书原版一模一样
 
1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...1.Wireless Communication System_Wireless communication is a broad term that i...
1.Wireless Communication System_Wireless communication is a broad term that i...
 
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
急速办(bedfordhire毕业证书)英国贝德福特大学毕业证成绩单原版一模一样
 
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and GuidelinesMulti-cluster Kubernetes Networking- Patterns, Projects and Guidelines
Multi-cluster Kubernetes Networking- Patterns, Projects and Guidelines
 
This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!This 7-second Brain Wave Ritual Attracts Money To You.!
This 7-second Brain Wave Ritual Attracts Money To You.!
 
guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...guildmasters guide to ravnica Dungeons & Dragons 5...
guildmasters guide to ravnica Dungeons & Dragons 5...
 

OpenFlow

  • 2. Course Objective Need for OpenFlow The OpenFlow® Protocol message structures, features etc Open Flow life of a Packet Different Tables in OpenFlow Packet Capture of different Openflow Packets Hands-on
  • 3. Problems 3  Closed Systems with no or very minimal abstractions in the network design.  Hardware centric – usage of custom ASICs with Vendor Specific Software.  Difficult to perform real world experiments on large scale production networks.  No standard abstractions towards north bound and south bound interfaces, even though we have standard abstractions in the east / west bound interface with peer routers / switches.
  • 4. Need for OpenFlow  Facilitate Innovation in Network  Layered architecture with Standard Open Interfaces  Independent innovation at each layer  More accessibility since software can be easily developed by more vendors  Speed-to-market – no hardware fabrication cycles  More flexibility with programmability and ease of customization and integration with other software applications  Fast upgrades  Program a network vs Configure a network 4
  • 5. OpenFlow  OpenFlow is a protocol which enables programmability of the forwarding plane  OpenFlow is like an x86 instruction set for the network nodes.  Provides open interface to “black box” networking node (ie. Routers, L2/L3 switch) to enable visibility and openness in network  Separation of control plane and data plane.  The datapath of an OpenFlow Switch consists of a Flow Table, and an action associated with each flow entry  The control path consists of a controller which programs the flow entry in the flow table
  • 7. OpenFlow General Myth  SDN is Open Flow Reality  OpenFlow is an open API that provides a standard interface for programming the data plane switches 7
  • 10. Traditional Switch Forwarding 10Source: Adopted from ONF11 presentation by Martin Casado
  • 11. OpenFlow Switch Forwarding 11Source: Adopted from ONF11 presentation by Martin Casado
  • 12. Open Flow Illustration Source: Adopted from ONF11 presentation by Martin Casado
  • 13. Components of OpenFlow 13 * Figure From OpenFlow Switch Specification
  • 15. Controller OpenFlow Switch Flow Table Secure Channel PC hw sw OpenFlow Switch specification Components of OpenFlow Network 15 * Figure From OpenFlow Switch Specification
  • 16. OpenFlow Controller  Manages one or more switch via OpenFlow channels.  Uses OpenFlow protocol to communicate with a OpenFlow aware switch.  Acts similar to control plane of traditional switch.  Provides a network wide abstraction for the applications on north bound.  Responsible for programming various tables in the OpenFlow Switch.  Single switch can be managed by more than one controller for load balancing or redundancy purpose. In this case the controller can take any one of the following roles.  Master.  Slave.  Equal. 16
  • 17. OpenFlow Controller  OpenSource  OpenDayLight  Floodlight  RYU  NOX/POX  ONOS  Commercial Controllers  Cisco APIC  VMware NSX Controller  HP VAN SDN Controller  NEC ProgrammableFlow PF6800 Controller  Nuage Networks Virtualized Services Controller (VSC) 17
  • 18. OpenFlow Channel  Used to exchange OpenFlow message between switch and controller.  Switch can establish single or multiple connections to same or different controllers (auxiliary connections).  A controller configures and manages the switch, receives events from the switch, and send packets out the switch via this interface  The SC connection is a TLS/TCP connection. Switch and controller mutually authenticate by exchanging certificates signed by a site-specific private key 18
  • 19. OpenFlow Messages  Three Message Types  Controller to Switch  Asynchronous Message  Asymmetric Message  Controller to Switch  Feature Request  Configuration  Modify State  Packet Out etc.  Asynchronous  Packet-in  Flow Removed  Port Status  Error etc.  ASymmetric  Hello  Echo  Experimenter etc 19
  • 21. OpenFlow – Hello ( From Switch to Controller)
  • 22. OpenFlow – Hello ( From Controller to Switch)
  • 23. OpenFlow – Feature Request (From Controller to Switch)
  • 24. OpenFlow – Feature Reply (From Switch to Controller)
  • 25. OpenFlow – Role Request (From Controller to Switch)
  • 26. OpenFlow – Role Reply (From Switch to Controller)
  • 27. OpenFlow – Packet IN (From Switch to Controller)
  • 28. OpenFlow – Flow Config (From Switch to Controller)
  • 29. OpenFlow Switch  Types of the switches:  Open-flow only  Open-flow hybrid 29  Major Components  Ports  Flow Table  Group Table  Meter Table
  • 30. OpenFlow Ports  Network interfaces for passing packets between Openflow Processing and the rest of the Network.  Types of Ports:  Physical Ports • Switch defined ports • Eg. Physical ports map one to one Ethernet interfaces  Logical Ports • Switch defined ports that don’t correspond to a hardware interface of switch • Logical ports include “Tunnel-ID”.  Reserved Ports • Defined by OpenFlow Spec • Specifies generic forwarding actions such as sending to the controller, flooding and forwarding using non-openflow methods 30
  • 31. Pipeline Processing 31 * Figure From OpenFlow Switch Specification
  • 32. Flow Table Components 32 * Figure From OpenFlow Switch Specification
  • 33. Flow Entry 33 * Figure From OpenFlow Switch Specification
  • 34. Openflow Table Instructions  Instructions are executed when a packet matches entry.  Instruction result can  Change the packet  Action set  Pipeline processing etc.  Sample Instruction Types  Meter ID - Direct a packet to the meter id.  Apply-Actions - Apply a specific action immediately  Clear-Actions - Clear all the actions in the action set  Write-Actions - Add a new action into the existing action set  Write-Metadata - Write the masked meta data value  Goto-Table - Indicate the next table in the processing pipeline 34
  • 35. Action Set & Action List  Action Set  Action set is associated with each packet. FE modify the action set using write-action/ clear-action  Actions in the action-set will be executed when pipeline is stopped  Action set contains maximum of one action of each type. If multiple actions of the same type need to be added then use “Apply-Actions”  Action List  “Apply-action” , “packet-out” messages include action list  Execute an action immediately  Actions are executed sequentially in the order they have been specified  If action list contains an output action, a copy of the packet is forwarded in its current state to the desired port  Action-set shouldn’t be changed because of action-list 35
  • 36. Action  Action  What to do with the packet when match criteria matches with the packet  Some of the Action Type • Output - Fwd a pkt to the specified open flow port (physical/ logical/reserved) • Set Queue - Determines which queue should be used for scheduling and forwarding packet • Drop - Packets which doesn’t have output action should be dropped • Group - Process the packet through specified group • Push-Tag/ Pop-Tag - Insert VLAN, MPLS, PBB tage • Set-Field - Rewriting a field in the packet header • Change TTL - Decrement TTL • Copy TTL inwards – apply copy inward actions to the packet • Push MPLS – apply MPLS tag push action to the packet • Push PBB – apply PBB tag push action to the packet 36
  • 37. Flow Entry (Contd…)  Each Flow Entry contains an optional Idle and Hard Timeout field.  Switch removes entry and sends flow removed message to controller when,  No packets have matched within the Idle Timeout  The flow was inserted more than the Hard Timeout.  The timeouts are optional 37 Flow Entry Timeouts
  • 38. Flow Entry (Contd…) 38 Reactive Flows Proactive Flows First packet of flow is sent to controller for processing Controller pre-populates flow table in switch. Controller evaluates packet and sends Flow message to switch insert a flow table entry for the packet Zero set-up time for new flows Subsequent packets (in flow) match the entry until idle or hard timeout Switch in Proactive forwarding ‘only’ would default to action=drop Loss of connectivity between switch and controller limit utility of switch Loss of connection between switch and controller does not disrupt network traffic
  • 39. Instruction Execution in Flow Table 39 * Figure From OpenFlow Switch Specification
  • 40. Group Table  Additional method for forwarding to a group of entries.  Comprises of Group ID, Group Type, Counters, Action buckets (each action bucket contains a set of actions to be executed)  Group Types:  All • Execute all buckets in a group • Used mainly for multicast and broadcast – fwd a pkt on all the ports  Select • Execute one bucket in a Group ( Eg. ECMP packets) • Implemented for load sharing and redundancy  Indirect • Execute one defined bucket in this Group • Supports only a single bucket ( Eg. 40K routes are pointing to same next hop)  Fast failover • Execute the first live bucket • Eg. There is a primary path and secondary path – pass the traffic on primary path and if it fails use the secondary one 40
  • 42. Instruction Execution in Group Table 42 * Figure From OpenFlow Switch Specification
  • 43. Meter Table  Consists of meter entries and defining per-flow meters.  Per-flow meters enable OF to implement QoS operations (rate- limiting)  Components of Meter table:  Meter ID, Meter Band, Counters  Meters measures the rate of packets assigned to it and enable controlling the rate of those packets  Meters are attached directly to flow entries  Meter band: unordered list of meter bands, where each meter band specifies the rate of the band and the way to process packet  Components of Meter band:  Band Type, Rate, Counters, Type specific arguments  Band Type : defined how to process a packet (drop/ dscp remark) 43
  • 44. Meter Table 44 * Figure From OpenFlow Switch Specification
  • 45. Packet Flow in OpenFlow Switch 45 * Figure From OpenFlow Switch Specification
  • 46. OpenFlow Features Vs Specification
  • 48. Course Objective How to run ODL Contoller How to run ODL features and getting UI How to run Mininet Topology detection of mininet Network Packet Capture of different Openflow Packets Ping and test the Network
  • 49. How to start OpenDayLight Controller  Run the given VM in Virtual Box  Goto distribution-karaf-0.4.4-Beryllium-SR4/  cd distribution-karaf-0.4.4-Beryllium-SR4/  Run ./bin/karaf  Install the basic required karaf features/bundles for the lab exercise  feature:install odl-restconf-all odl-l2switch-switch odl-mdsal- apidocs odl-dlux-all  feature:install odl-restconf-noauth odl-netconf-connector-all  Go to browser and open the page http://10.0.2.15:8181/index.html  Login with admin, admin
  • 52. Mininet  Mininet creates a realistic OpenFlow network, running real kernel, switch and application code, on a single machine (VM, cloud or native), in seconds, with a single command  sudo mn --topo linear,3 --mac --controller=remote,ip=10.0.2.15,port=6633 - -switch ovs,protocols=OpenFlow13  sudo ovs-ofctl -O OpenFlow13 dump-flows s2  sudo ovs-vsctl show
  • 53. Mininet - Installation  Option 1: Mininet VM Installation - http://mininet.org/download/#option-1-mininet-vm- installation-easy-recommended  Option 2: Native Installation from Source - http://mininet.org/download/#option-2-native-installation- from-source  Option 3: Installation from Packages - http://mininet.org/download/#option-3-installation-from- packages  Option 4: Upgrading an existing Mininet Installation - http://mininet.org/download/#option-4-upgrading-an- existing-mininet-installation
  • 54. Mininet – Some show commands
  • 55. Mininet – Some show commands
  • 56. Mininet – Some show commands
  • 57. Mininet – Some show commands
  • 60. How to check VT-x enabled in Windows 8? 60
  • 61. How to check VT-x enabled in Windows 7? 61  Install the Microsoft® Hardware-Assisted Virtualization Detection Tool from https://www.microsoft.com/en- us/download/details.aspx?id=592  Run it and see whether you get this output

Editor's Notes

  1. Kasado
  2. Kasado