Book Image

Learning OpenDaylight

By : Reza Toghraee
Book Image

Learning OpenDaylight

By: Reza Toghraee

Overview of this book

OpenDaylight is an open source, software-defined network controller based on standard protocols. It aims to accelerate the adoption of Software-Defined Networking (SDN) and create a solid foundation for Network Functions Virtualization (NFV). SDN is a vast subject; many network engineers find it difficult to get started with using and operating different SDN platforms. This book will give you a practical bridge from SDN theory to the practical, real-world use of SDN in datacenters and by cloud providers. The book will help you understand the features and use cases for SDN, NFV, and OpenDaylight. NFV uses virtualization concepts and techniques to create virtual classes for node functions. Used together, SDN and NFV can elevate the standards of your network architecture; generic hardware-saving costs and the advanced and abstracted software will give you the freedom to evolve your network in the future without having to invest more in costly equipment. By the end of this book, you will have learned how to design and deploy OpenDaylight networks and integrate them with physical network switches. You will also have mastered basic network programming over the SDN fabric.
Table of Contents (18 chapters)
Title Page
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Customer Feedback
Dedication
Preface

Running ODL on a Docker container


Have you heard about Docker? It is a great tool for shipping and managing Linux containers.

You can run ODL on a Docker container. You just need to have Docker installed on your host PC (Linux, Windows, or Mac) and let it download and run the ODL instance.

I have prepared an ODL container and published it to Docker. You can use this container for practice. You can use Docker on Mac, Linux, or Windows. Docker on Windows requires Windows 10, and it uses Hyper-V as its hypervisor.

To download the Docker container, use the following command:

docker pull learningopendaylight/boron

In this example, we will use Docker on Windows 10 to build our ODL instance:

  1. Ensure you have Windows 10 64-bit Pro, Enterprise, or Education (1511 November update with build 10586 or later)

Download and install Docker on Windows from https://docs.docker.com/docker-for-windows/install/

  1. After the installation is complete, you may get a message as illustrated in the following screenshot:
  1. Once you...