Ubuntu 20.04
Sponsored Link

OpenStack Victoria : Configure Neutron #12020/10/19

 
Configure OpenStack Network Service (Neutron).
This example is based on the emvironment like follows.
        eth0|10.0.0.30 
+-----------+-----------+
|    [ Control Node ]   |
|                       |
|  MariaDB    RabbitMQ  |
|  Memcached  httpd     |
|  Keystone   Glance    |
|  Nova API             |
+-----------------------+

[1] Add user or service for Neutron on Keystone.
# create [neutron] user in [service] project

root@dlp ~(keystone)#
openstack user create --domain default --project service --password servicepassword neutron

+---------------------+----------------------------------+
| Field               | Value                            |
+---------------------+----------------------------------+
| default_project_id  | 37197271a1954ddb90207a95d5f46488 |
| domain_id           | default                          |
| enabled             | True                             |
| id                  | 2eadb99a37544406bc01b71eb7fb1b1c |
| name                | neutron                          |
| options             | {}                               |
| password_expires_at | None                             |
+---------------------+----------------------------------+

# add [neutron] user in [admin] role

root@dlp ~(keystone)#
openstack role add --project service --user neutron admin
# create service entry for [neutron]

root@dlp ~(keystone)#
openstack service create --name neutron --description "OpenStack Networking service" network

+-------------+----------------------------------+
| Field       | Value                            |
+-------------+----------------------------------+
| description | OpenStack Networking service     |
| enabled     | True                             |
| id          | 8cc680306fa24f59b223f15c7b7a1b30 |
| name        | neutron                          |
| type        | network                          |
+-------------+----------------------------------+

# define Neutron API Host

root@dlp ~(keystone)#
export controller=10.0.0.30
# create endpoint for [neutron] (public)

root@dlp ~(keystone)#
openstack endpoint create --region RegionOne network public http://$controller:9696

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | da3196b34fee4bd194686aadcf4290c5 |
| interface    | public                           |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | 8cc680306fa24f59b223f15c7b7a1b30 |
| service_name | neutron                          |
| service_type | network                          |
| url          | http://10.0.0.30:9696            |
+--------------+----------------------------------+

# create endpoint for [neutron] (internal)

root@dlp ~(keystone)#
openstack endpoint create --region RegionOne network internal http://$controller:9696

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | 053b576bebdb4228b1ec188afab337d8 |
| interface    | internal                         |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | 8cc680306fa24f59b223f15c7b7a1b30 |
| service_name | neutron                          |
| service_type | network                          |
| url          | http://10.0.0.30:9696            |
+--------------+----------------------------------+

# create endpoint for [neutron] (admin)

root@dlp ~(keystone)#
openstack endpoint create --region RegionOne network admin http://$controller:9696

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | 012a048ea9604d03b809acbcb3b432af |
| interface    | admin                            |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | 8cc680306fa24f59b223f15c7b7a1b30 |
| service_name | neutron                          |
| service_type | network                          |
| url          | http://10.0.0.30:9696            |
+--------------+----------------------------------+
[2] Add a User and Database on MariaDB for Neutron.
root@dlp ~(keystone)#
mysql

Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 105
Server version: 10.3.22-MariaDB-1ubuntu1 Ubuntu 20.04

Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> create database neutron_ml2; 
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> grant all privileges on neutron_ml2.* to neutron@'localhost' identified by 'password'; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> grant all privileges on neutron_ml2.* to neutron@'%' identified by 'password'; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> flush privileges; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> exit 
Bye
Matched Content