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

Configuring Neutron to use a Flat network type


A Flat Network is another network type that is supported by the OpenStack Neutron ML2 plugin. Flat Networks are useful when tenant network isolation is not a mandatory requirement. Another scenario for a Flat Network type could be the access to centralized storage for all the instances using a dedicated physical interface.

Getting ready

To use Flat Networks, the ML2 plugin's type driver and related settings need to be updated. Just as VLAN, the Flat Network type can work with an OVS or Linux bridge mechanism driver. In our example, we will use the Linux bridge mechanism driver.

How to do it…

The following steps will show you how to configure the Flat Network as the type driver and tenant network type:

  1. With the appropriate credentials, SSH into the node where the Neutron server is running. In our setup, it will be the Controller and Network node.

  2. Open the Neutron ML2 plugin configuration file using your desired editor. For example, the command for...