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 virtual interface information on the network node for VXLAN tunnels


The network node hosts network services such as DHCP, DNS, and so on for each virtual network. These services need to communicate with the other members on the virtual network. The network node runs an OVS instance to connect to the virtual network.

In this recipe, we will look at the DHCP service running on the Network node and identify the virtual network interface, which connects this service to the virtual network.

Getting ready

For this recipe, you will need the following information:

  • The SSH login credentials for the controller and network node

How to do it…

The following steps will show you how to identify an interface connecting a network service to the virtual network. In this recipe, we will look at the network interface for the DHCP service:

  1. Log in to a node with access to OpenStack.

  2. Next, we will find the DHCP server process that is associated with our virtual network. OpenStack uses dnsmasq to provide the...