Debian 9 Stretch
Sponsored Link

OpenStack Newton : Neutron 設定#12017/07/02

 
OpenStack Network Service(Neutron)を設定します。
当例では以下のような環境で管理ノードを構成しています。
                  eth0|10.0.0.30 
          +-----------+-----------+
          |    [ Control Node ]   |
          |                       |
          |  MariaDB    RabbitMQ  |
          |  Memcached  httpd     |
          |  Keystone   Glance    |
          |  Nova API             |
          +-----------------------+

[1] Keystone に Neutron 用のユーザー等々を登録しておきます。
# neutron ユーザー作成 (service プロジェクト所属)

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

+---------------------+----------------------------------+
| Field               | Value                            |
+---------------------+----------------------------------+
| default_project_id  | 3977a94933e9441fb168b5c6fe41e075 |
| domain_id           | default                          |
| enabled             | True                             |
| id                  | e14aed7b1af5494a9934b9545b93e043 |
| name                | neutron                          |
| password_expires_at | None                             |
+---------------------+----------------------------------+

# neutron ユーザーを admin ロール に加える

root@dlp ~(keystone)#
openstack role add --project service --user neutron admin
# neutron 用サービスエントリ作成

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

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

# 管理ノードを定義

root@dlp ~(keystone)#
export controller=10.0.0.30
# neutron 用エンドポイント作成 (public)

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

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

# neutron 用エンドポイント作成 (internal)

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

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | 92371cd9f4ab44c8a2ea747d97ecc890 |
| interface    | internal                         |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | bd7c5a57e3c64c44b0edc5d31ce56889 |
| service_name | neutron                          |
| service_type | network                          |
| url          | http://10.0.0.30:9696            |
+--------------+----------------------------------+

# neutron 用エンドポイント作成 (admin)

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

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| enabled      | True                             |
| id           | 0341b21462af44eca4866b90b5075553 |
| interface    | admin                            |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | bd7c5a57e3c64c44b0edc5d31ce56889 |
| service_name | neutron                          |
| service_type | network                          |
| url          | http://10.0.0.30:9696            |
+--------------+----------------------------------+
[2] Neutron 用のユーザーとデータベースを MariaDB に登録します。
root@dlp ~(keystone)#
mysql -u root -p

Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 32
Server version: 10.1.23-MariaDB-9+deb9u1 Debian 9.0

Copyright (c) 2000, 2017, 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
関連コンテンツ