Book Image

OpenStack Networking Cookbook

Book Image

OpenStack Networking Cookbook

Overview of this book

Table of Contents (19 chapters)
OpenStack Networking Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Viewing the load balancer on the network node


In the earlier recipes of this chapter, we configured the load balancer using both Horizon and the Neutron CLI. In this recipe, we will learn how Neutron implements the load balancer on the Network node.

Getting ready

For this recipe, you need the following information:

  • An administrative user access to OpenStack

  • A root or equivalent sudo access to the Network node

How to do it…

The following steps will show you how to view the load balancer on the Network node:

  1. Using the appropriate credentials, SSH into the OpenStack node installed with the Neutron client packages.

  2. Source the shell RC file to initialize the environment variables required for the CLI commands.

  3. Use the Neutron CLI commands to list the load balancer. Note the load balancer ID.

  4. Next, use the ip netns command and find the network namespace that matches the pool ID. The load balancer plugin has configured this namespace as the load balancer node:

  5. Next, we will find the VIP that has been associated...