Book Image

OpenDaylight Cookbook

By : Rashmi Pujar, ICARO CAMELO, Yrineu Rodrigues
Book Image

OpenDaylight Cookbook

By: Rashmi Pujar, ICARO CAMELO, Yrineu Rodrigues

Overview of this book

OpenDaylight is an open source platform to program and build Software-Defined Networks (SDN). Its aim is to accelerate the adoption of SDN and NFV. With above 90 practical recipes, this book will help you to solve day-to-day problems and maintenance tasks surrounding OpenDaylight’s implementation. This book starts with the OpenDaylight fundamentals. In this book, you will gain a sound understanding of the methods and techniques when deploying OpenDaylight in production environment. Later on, you will learn to create a Service Chain using SFC. This book will address common problems and day-to-day maintenance tasks with OpenDaylight. We’ll also will teach you how to interact with OpenDaylight APIs and use the necessary tools to simulate networks. You will also explore how to create your own branded OpenDaylight along with authorising and authenticating users using OpenDaylight Identity Manager. By the end of this book, you will have the necessary skills to operate an OpenDaylight SDN environment.
Table of Contents (9 chapters)

Introduction

The BGP-PCEP project in OpenDaylight implements two southbound plugins: Border Gateway Protocol (BGP) Linkstate Distribution to manage Layer 3 topology information, and Path Computation Element Protocol (PCEP) as a way to instantiate paths into the underlying network. Both protocols offer extensibility features to add new behaviors.

BGP is the routing protocol that makes the internet work. As per RFC, the primary function of BGP is to exchange network reachability information with other BGP systems.

PCEP is a TCP-based protocol defined by the IETF and it has the capability to remove the path computation function from network elements such as routers to an external entity known as the Path Computation Engine (PCE). A PCE is capable of computing network paths or routes for a given network. Using the PCEP protocol, a client known as Path Computation Client (PCC) can...