Book Image

Docker Networking Cookbook

Book Image

Docker Networking Cookbook

Overview of this book

Networking functionality in Docker has changed considerably since its first release, evolving to offer a rich set of built-in networking features, as well as an extensible plugin model allowing for a wide variety of networking functionality. This book explores Docker networking capabilities from end to end. Begin by examining the building blocks used by Docker to implement fundamental containing networking before learning how to consume built-in networking constructs as well as custom networks you create on your own. Next, explore common third-party networking plugins, including detailed information on how these plugins inter-operate with the Docker engine. Consider available options for securing container networks, as well as a process for troubleshooting container connectivity. Finally, examine advanced Docker networking functions and their relevant use cases, tying together everything you need to succeed with your own projects.
Table of Contents (18 chapters)
Docker Networking Cookbook
Credits
About the Author
About the Reviewer
www.PacktPub.com
Preface
Index

Introduction


Up until this point in the book, we've focused solely on IPv4 networking. However, IPv4 is not the only IP protocol available to us. Although IPv4 is still the most widely understood protocol, IPv6 has started to gain significant attraction. Public IPv4 space is exhausted and many are starting to foresee issues with running out of private IPv4 allocations as well. IPv6 looks to overcome this problem by defining a much larger set of usable IP space. However, IPv6 does some things differently from IPv4 making some believe that implementing IPv6 would be cumbersome. I would argue that as you look to deploy container technology, you should also be looking at how to effectively leverage IPv6. Although IPv6 is a different animal, it will soon become a requirement in many networks. With containers representing the possibility of introducing many more IP endpoints on your network making the transition sooner rather than later is a good idea. In this chapter, we'll look at what IPv6...