CentOS 7
Sponsored Link

OpenStack Liberty : Neutron 設定#1 ( Control ノード )2015/11/15

 
OpenStack Network Service(Neutron)を設定します。
ここでは、以下のように、Keystone/Glance/Nova API インストール済みの Control ノード に 新たに Neutron Server をインストールし、 Network ノードに DHCP Agent, L3 Agent, L2 Agent, Metadata Agent、Nova Compute インストール済みの Compute ノードに L2 Agent という構成で設定します。 ( 例として役割ごとに分けていますが、All in One 構成にすることももちろん可能です )
なお、Neutron はプラグイン方式で、プラグインとして利用するソフトウェアを選択する必要があります。 ここでは例として ML2 プラグインを選択して設定します。( バックエンドは Open vSwitch を選択します )
                                |
+------------------+            |            +------------------------+
| [ Control Node ] |            |            |    [ Network Node ]    |
|     Keystone     |10.0.0.30   |   10.0.0.50|        DHCP Agent      |
|      Glance      |------------+------------|        L3 Agent        |
|     Nova API     |eth0        |        eth0|        L2 Agent        |
|  Neutron Server  |            |            |     Metadata Agent     |
+------------------+            |            +------------------------+
                            eth0|10.0.0.51
                      +--------------------+
                      |  [ Compute Node ]  |
                      |    Nova Compute    |
                      |      L2 Agent      |
                      +--------------------+

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

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

+--------------------+----------------------------------+
| Field              | Value                            |
+--------------------+----------------------------------+
| default_project_id | 11a4bfa2b8c748ad860efb34b5fefb7f |
| domain_id          | default                          |
| enabled            | True                             |
| id                 | fc558e2e41e548949fb0a371ae6b14d6 |
| name               | neutron                          |
+--------------------+----------------------------------+

# 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          | 31ad3b49b77f4dcea16b68749aa2fd94 |
| 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           | a474271685f24cccb07a473d58224efc |
| interface    | public                           |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | 31ad3b49b77f4dcea16b68749aa2fd94 |
| 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           | d87b3bcf191448fb9951ae54af1db9f6 |
| interface    | internal                         |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | 31ad3b49b77f4dcea16b68749aa2fd94 |
| 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           | 6243f5643c254f0090fc3a6bb01a3a39 |
| interface    | admin                            |
| region       | RegionOne                        |
| region_id    | RegionOne                        |
| service_id   | 31ad3b49b77f4dcea16b68749aa2fd94 |
| 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 19
Server version: 5.5.44-MariaDB MariaDB Server

Copyright (c) 2000, 2015, 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
[3] Neutron Server のインストールです。
# Liberty, EPEL からインストール

[root@dlp ~(keystone)]#
yum --enablerepo=centos-openstack-liberty,epel -y install openstack-neutron openstack-neutron-ml2
[4] Neutron Server の設定です。
[root@dlp ~(keystone)]#
vi /etc/neutron/neutron.conf
# 62行目:追記

core_plugin = ml2
# 79行目:追記

service_plugins = router
# 92行目:コメント解除して変更

auth_strategy =
keystone
# 121行目:コメント解除

dhcp_agent_notification = True
# 132行目:コメント解除

allow_overlapping_ips = True
# 360行目:コメント解除して変更

notify_nova_on_port_status_changes =
True
# 364行目:コメント解除して変更

notify_nova_on_port_data_changes =
True
# 573行目:コメント解除

rpc_backend = rabbit
# 717行目:コメントにして以下のように追記 (Keystone 認証情報)

[keystone_authtoken]
#
auth_uri = http://127.0.0.1:35357/v2.0/
#
identity_uri = http://127.0.0.1:5000
#
admin_tenant_name = %SERVICE_TENANT_NAME%
#
admin_user = %SERVICE_USER%
#
admin_password = %SERVICE_PASSWORD%
auth_uri = http://10.0.0.30:5000
auth_url = http://10.0.0.30:35357
auth_plugin = password
project_domain_id = default
user_domain_id = default
project_name = service
username = neutron
password = servicepassword
# 731行目:追記 (データベース指定)

[database]
connection = mysql://neutron:password@10.0.0.30/neutron_ml2
# 780行目:追記 (Nova 認証情報)

[nova]
auth_url = http://10.0.0.30:35357
auth_plugin = password
project_domain_id = default
user_domain_id = default
region_name = RegionOne
project_name = service
username = nova
password = servicepassword
# 956行目:追記 (RabbitMQ 認証情報)

[oslo_messaging_rabbit]
rabbit_host = 10.0.0.30
rabbit_port = 5672
rabbit_userid = guest
rabbit_password = password
[root@dlp ~(keystone)]#
vi /etc/neutron/plugins/ml2/ml2_conf.ini
# 7行目:追記 ( tenant_network_types の値はブランクでOK (後ほど必要な時にセット) )

type_drivers = flat,vlan,gre,vxlan
tenant_network_types =
mechanism_drivers = openvswitch
# 118行目:コメント解除 & 追記

enable_security_group = True
firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
# 最終行:コメント解除

enable_ipset = True
[root@dlp ~(keystone)]#
vi /etc/nova/nova.conf
# [DEFAULT] セクション内の適当な場所へ追記

network_api_class=nova.network.neutronv2.api.API
security_group_api=neutron
linuxnet_interface_driver=nova.network.linux_net.LinuxOVSInterfaceDriver
firewall_driver=nova.virt.firewall.NoopFirewallDriver
# 最終行へ追記:Neutron 認証情報

[neutron]
url=http://10.0.0.30:9696
auth_strategy=keystone
admin_auth_url=http://10.0.0.30:35357/v2.0
admin_tenant_name=service
admin_username=neutron
admin_password=servicepassword
[root@dlp ~(keystone)]#
ln -s /etc/neutron/plugins/ml2/ml2_conf.ini /etc/neutron/plugin.ini

[root@dlp ~(keystone)]#
su -s /bin/bash neutron -c "neutron-db-manage --config-file /etc/neutron/neutron.conf --config-file /etc/neutron/plugin.ini upgrade head"

[root@dlp ~(keystone)]#
systemctl start neutron-server

[root@dlp ~(keystone)]#
systemctl enable neutron-server

[root@dlp ~(keystone)]#
systemctl restart openstack-nova-api

関連コンテンツ