Book Image

Software-Defined Networking with OpenFlow - Second Edition

By : SIAMAK AZODOLMOLKY, Oswald Coker
Book Image

Software-Defined Networking with OpenFlow - Second Edition

By: SIAMAK AZODOLMOLKY, Oswald Coker

Overview of this book

OpenFlow paves the way for an open, centrally programmable structure, thereby accelerating the effectiveness of Software-Defined Networking. Software-Defined Networking with OpenFlow, Second Edition takes you through the product cycle and gives you an in-depth description of the components and options that are available at each stage. The aim of this book is to help you implement OpenFlow concepts and improve Software-Defined Networking on your projects. You will begin by learning about building blocks and OpenFlow messages such as controller-to-switch and symmetric and asynchronous messages. Next, this book will take you through OpenFlow controllers and their existing implementations followed by network application development. Key topics include the basic environment setup, the Neutron and Floodlight OpenFlow controller, XORPlus OF13SoftSwitch, enterprise and affordable switches such as the Zodiac FX and HP2920. By the end of this book, you will be able to implement OpenFlow concepts and improve Software-Defined Networking in your projects.
Table of Contents (17 chapters)
Title Page
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface
Free Chapter
1
Software-Defined Networks

Packet forwarding innovations beyond OpenFlow


There are two major approaches that are in view for packet forwarding beyond OpenFlow:

  • Protocol Oblivious Forwarding (POF)
  • Programming protocol-independent packet processors (P4)

POF

This is a recent technology proposed by Huawei Technologies that supports a protocol-independent data plane in SDN. In POF, the data-plane forwarding element does not require prior knowledge of the header structure of the protocol packet it is to traverse; rather, it can be configured by the control plane with the offsets in the configuration phase.

At runtime, the offsets are extracted by the Forwarding Elements (FE) and lookup from the flow table is done, followed by execution of the vital instructions.

This allows the forwarding element to support new protocols easily with no need to modify its hardware as well as wired protocols, such as between controller and switch.

POF is completely unaware of the protocols running on the data plane, such as the IP, TCP, and Ethernet...