CentOS 7
Sponsored Link

OpenStack Kilo : Neutron 設定#1 ( Control ノード )2015/06/13

 
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 --project service --password servicepassword neutron

+------------+----------------------------------+
| Field      | Value                            |
+------------+----------------------------------+
| email      | None                             |
| enabled    | True                             |
| id         | 798ed71c3816439a88449484fae89026 |
| name       | neutron                          |
| project_id | 4e84300cbeeb4a68a0e1864ea0ae1869 |
| username   | neutron                          |
+------------+----------------------------------+

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

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

+-------+----------------------------------+
| Field | Value                            |
+-------+----------------------------------+
| id    | 2100956a1c974cae8c81308845c174a8 |
| name  | admin                            |
+-------+----------------------------------+

# neutron 用サービスエントリ作成

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

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

# 自ホストを定義しておく

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

[root@dlp ~(keystone)]#
openstack endpoint create \
--publicurl http://$controller:9696 \
--adminurl http://$controller:9696 \
--internalurl http://$controller:9696 \
--region RegionOne \
network

+--------------+----------------------------------+
| Field        | Value                            |
+--------------+----------------------------------+
| adminurl     | http://10.0.0.30:9696            |
| id           | 2ad50c718cd74835a9153ceb45035e03 |
| internalurl  | http://10.0.0.30:9696            |
| publicurl    | http://10.0.0.30:9696            |
| region       | RegionOne                        |
| service_id   | d700ea8260234379a4b61e70b8a81fd5 |
| service_name | neutron                          |
| service_type | network                          |
+--------------+----------------------------------+
[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 14
Server version: 5.5.41-MariaDB MariaDB Server

Copyright (c) 2000, 2014, 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 のインストールです。
# RDO, EPEL からインストール

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

core_plugin = ml2
# 71行目:追記

service_plugins = router
# 84行目:コメント解除

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

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

allow_overlapping_ips =
True
# 179行目:コメント解除

router_scheduler_driver = neutron.scheduler.l3_agent_scheduler.ChanceScheduler
# 332行目:コメント解除

notify_nova_on_port_status_changes = True
# 336行目:コメント解除

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

rpc_backend = rabbit
# 551行目:追記

control_exchange = neutron
# 688行目:コメントにして以下のように追記 (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
# 703行目:追記 (データベース指定)

[database]
connection = mysql://neutron:password@10.0.0.30/neutron_ml2
# 752行目:追記 (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
# 928行目:追記 (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行目:追記

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

enable_security_group = True
firewall_driver = neutron.agent.linux.iptables_firewall.OVSHybridIptablesFirewallDriver
[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)]#
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

関連コンテンツ