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 for Routing services


As mentioned earlier, the OpenStack Networking functionalities can be classified as core and service. Routing or L3 networking is part of the service functionality and Neutron needs to be configured in order to support it.

Getting ready

We will configure the Neutron server as well as the Neutron L3 agent in order to enable the Routing functionality in OpenStack. For this chapter, we will assume that the Neutron ML2 plugin has been configured to use VLAN as the type driver and Open vSwitch as the mechanism driver.

How to do it…

The following steps will show you how to configure Neutron to provide Routing services in OpenStack:

  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.conf configuration file using your desired editor. For example, the command for the vi editor will be as follows:

    openstack@controller:~$ sudo vi /etc/neutron/neutron.conf...