OpenStack Flamingo : Neutron 設定 #12025/11/18 |
|
OpenStack Network Service(Neutron)を設定します。 当例では以下のような環境で管理ノードを構成しています。
eth0|10.0.0.30
+-----------+-----------+
| [ dlp.srv.world ] |
| (Control Node) |
| |
| MariaDB RabbitMQ |
| Memcached Nginx |
| Keystone httpd |
| Glance Nova API |
+-----------------------+
|
| [1] | Keystone に Neutron 用のユーザー等々を登録しておきます。 |
|
# [service] プロジェクト所属で [neutron] ユーザーを作成 root@dlp ~(keystone)# openstack user create --domain default --project service --password servicepassword neutron
+---------------------+----------------------------------+
| Field | Value |
+---------------------+----------------------------------+
| default_project_id | 17d8e190750a402d920eedf933aea358 |
| domain_id | default |
| email | None |
| enabled | True |
| id | f9ef017ccd7945f3bfcecedafc438bd8 |
| name | neutron |
| description | None |
| password_expires_at | None |
| options | {} |
+---------------------+----------------------------------+
# [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 | +-------------+----------------------------------+ | id | f1733e22626a47edafdeb617e5b55665 | | name | neutron | | type | network | | enabled | True | | description | OpenStack Networking service | +-------------+----------------------------------+ # Neutron API ホストを定義 root@dlp ~(keystone)# export controller=dlp.srv.world
# [neutron] 用エンドポイント作成 (public) root@dlp ~(keystone)# openstack endpoint create --region RegionOne network public https://$controller:9696 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | a6cd5a22eb0349bc973de825c08429cb | | interface | public | | region | RegionOne | | region_id | RegionOne | | service_id | f1733e22626a47edafdeb617e5b55665 | | url | https://dlp.srv.world:9696 | | service_name | neutron | | service_type | network | +--------------+----------------------------------+ # [neutron] 用エンドポイント作成 (internal) root@dlp ~(keystone)# openstack endpoint create --region RegionOne network internal https://$controller:9696 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | 2f79930febf04a1eacfe7891f80dec92 | | interface | internal | | region | RegionOne | | region_id | RegionOne | | service_id | f1733e22626a47edafdeb617e5b55665 | | url | https://dlp.srv.world:9696 | | service_name | neutron | | service_type | network | +--------------+----------------------------------+ # [neutron] 用エンドポイント作成 (admin) root@dlp ~(keystone)# openstack endpoint create --region RegionOne network admin https://$controller:9696 +--------------+----------------------------------+ | Field | Value | +--------------+----------------------------------+ | enabled | True | | id | c704dd9ebc624a50973f376b08d3c785 | | interface | admin | | region | RegionOne | | region_id | RegionOne | | service_id | f1733e22626a47edafdeb617e5b55665 | | url | https://dlp.srv.world:9696 | | service_name | neutron | | service_type | network | +--------------+----------------------------------+ |
| [2] | Neutron 用のユーザーとデータベースを MariaDB に作成します。 |
|
root@dlp ~(keystone)# mariadb Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 74 Server version: 10.11.13-MariaDB-0ubuntu0.24.04.1 Ubuntu 24.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)]> exit Bye |
| Sponsored Link |
|
|