+ All Categories
Home > Documents > OpenQFlow: Scalable OpenFlow with Flow-based...

OpenQFlow: Scalable OpenFlow with Flow-based...

Date post: 26-Jun-2020
Category:
Upload: others
View: 6 times
Download: 0 times
Share this document with a friend
13
OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI 3 rd Future Networks Workshop, 9 ~ 11 April 2013 April 10, 2013 Nam-Seok Ko ([email protected]) Net-Computing Convergence Research Section Smart Network Research Department
Transcript
Page 1: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

OpenQFlow: Scalable OpenFlow with Flow-based QoS

ETSI 3rd Future Networks Workshop, 9 ~ 11 April 2013

April 10, 2013Nam-Seok Ko ([email protected])

Net-Computing Convergence Research SectionSmart Network Research Department

Page 2: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

Agenda� SDN (Software Defined/Driven Networking)

�What is SDN?� Problem Analysis

� OpenQFlow� Scalability and QoS Enhancement for SDN� Prototype Implementation� Prototype Implementation

� Standardization Opportunities

� Q & A

2

Page 3: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

What is SDN?� Software Defined (or Driven) Networking (SDN)

An enabler of network programmability through- separation of control plane from data plane- open interfaces among control plane, data plane and application layers

Application Layer

3

North

South

West EastControl Layer

Infrastructure Layer

e.g., Openflow, ForCES, etc.e.g., RESTful/JSON API, etc.

e.g., SDNI

Page 4: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

Problem Analysis� Scalability and Performance Issues

Need to setup a separate rule for each N uflow Controller

N rulesMaximum N exceptions…

� Scalability Issues in Supporting Fine-grained QoS• Forwarding and QoS rules are tightly coupled• Need to setup separate QoS rules for each microflow

� Performance Issues• Every packet in an microflow should search multiple rule tables

ControllerFlow TablesN rules…N uflows

4

Page 5: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

Related Works� DevoFlow (Devolved Flow)

�Minimize the interactions between OpenFlow switches and controlled

� Keep flows in the data-plane as much as possible• Provision enough wild-card rules to data-plane• Rule-cloning: microflow-based exact match rules • Determine long-lived flow using statistics sampling or triggeringControllers get involved in handling long-lived flows• Controllers get involved in handling long-lived flows

� DIFANE (DIstributed Flow Architecture for Networked Enterprises)� Distributing the rules across “authority switches”

5

Page 6: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

OpenQflow� Objectives

� To support scalable and stateful SDN which provides microflow-based QoS

� Distinctive Features� Clear separation of QoS rules from forwarding rules� Flow learning at microflow level

• Learn every information in the first packet processing of a microflow• Learn every information in the first packet processing of a microflow• Simplify forwarding for the subsequent packets in a flow

� Fine granular flow management regardless of the granularities of forwarding and QoS rules

• Coarse granular forwarding and QoS rules – aggregation of forwarding and QoS rules

• QoS profile types of QoS rules– E.g., if (DSCP value = 10) then 10Mbps guaranteed bandwidth for each flow

6

Page 7: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

OpenQflow (cont’’’’d)� Distinctive Features (cont’d)

� Complex packet processing in edge node but simpler processing in core node – SDN header

• Flow label – an unique identifier for each microflow in an SDN domain

– Does not necessarily mean that each and every microflow has its own flow label; flow label is sharable among multiple best-effort flowsflowse.g., best effort traffic share one single flow label to next hop node

– Short-lived flows may not need to have a separate flow label as well• QoS information

– QoS type, rate, delay, jitter, etc.

7

Page 8: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

OpenQflow (cont’’’’d) Separate Rules for Forwarding and QoS

Controller

Much fewer exceptions

QoSForwardingFlow Learning Table

Flow Learning

N dynamic learning

flows

Exception is

� Fewer interaction b/w switch and controller� Separation of QoS rules from Forwarding rules� Multiple micro-flows could share one QoS profile

� Performance Enhancement� Only the first packet goes through all the complex packet processing and then learn the information into flow state table

� All the subsequent packets are processed according to the flow state table

…N uflows

Flow LearningException is not required

8

Page 9: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

OpenQflow (cont’’’’d)

Payload IPHeader MAC

SDN Controller

Payload IPHeader SDN Header MAC� Complex processing in edge node & simpler processing in core node

� Edge node• Lookup multiple flow tables and refer to SDN controller for undefined flows• encapsulate/decapsulate SDN header (flow label, QoS information, etc.)

� Core Node• Lookup one table against the SDN header (mostly it will be in the format of label)

Payload IPHeader MAC Payload Header MACPayload IPHeader SDN Header MACHeader Header

9

Page 10: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

Flow Learning Table Forwarding Rule QoSRule…

QoS profile…

SchedulerLoad Balancing Scheduler

Core #1 Flow ProcessingCore #1 Flow Processing1st Packet Subsequent packets Scheduling out packets from calendar queueOpenQflow (cont’’’’d)

QoSCo-processing

Load Balancing SchedulerCore #X Flow Processing…Flow ProcessingThroughput monitoring, fair bandwidth calculationFlow creation and packet scheduling into calendar queue based on flow QoS

� Data plane prototype on a commercial multicore processor (Cavium multicore CPU)

10

Page 11: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

Standardization Activities� ONF

� OpenFlow Switch Specification - OF 1.4 (08/2012)• open communication protocol between control plane and data plane

� OpenFlow Management and Configuration Protocol - OF-Config 1.1• remote configuration of openflow switch

� IETF & IRTF� ForCES� SDNP BoF, SDNRG � SDNP BoF, SDNRG

� ITU-T� Q.21 of SG13 Future Networks

• Y.FNsdn - Framework of software-defined networking• Y.FNsdn-fm - Requirements of formal specification and verification methods for SDN

� ETSI� NFV ISG

11

Page 12: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

Standardization Opportunities� Forwarding Architecture

� Separation of QoS rules from forwarding rules� Flow learning table

� Scalable Stateful SDN – SDN header� Flow label – make simpler packet processing in core node

• Default flow label for short-term and best-effort flows,• or separate flow label per each flow for enhanced packet processing

� QoS information – enhanced QoS processing� QoS information – enhanced QoS processing• Label-inferred packet processing, • or separate encoding for explicit QoS treatment (QoS type, rate, delay jitter, etc.)

�Where?� Study feasibility in ITU-T and/or ETSI in framework level� Creation or modification of protocols should be done in ONF

and/or IETF

12

Page 13: OpenQFlow: Scalable OpenFlow with Flow-based QoSdocbox.etsi.org/Workshop/2013/201304_FNTWORKSHOP/S05_SDN/... · 2013-04-10 · OpenQFlow: Scalable OpenFlow with Flow-based QoS ETSI

Recommended