OpenStack Juno : Neutron 設定#1 ( Control ノード )2015/01/09 |
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用ユーザー等々を登録 [root@dlp ~(keystone)]# keystone user-create --tenant service --name neutron --pass servicepassword --enabled true +----------+----------------------------------+ | Property | Value | +----------+----------------------------------+ | email | | | enabled | True | | id | 45a241a04f81415b9ee2a0f873d65f29 | | name | neutron | | tenantId | 9e657ab1d2344de5aa9d86006732c7f0 | | username | neutron | +----------+----------------------------------+
[root@dlp ~(keystone)]#
[root@dlp ~(keystone)]# keystone user-role-add --user neutron --tenant service --role admin
keystone service-create --name=neutron --type=network --description="Neutron Network Service" +-------------+----------------------------------+ | Property | Value | +-------------+----------------------------------+ | description | Neutron Network Service | | enabled | True | | id | 27bba582d83a42b4818177bf6da16dff | | name | neutron | | type | network | +-------------+----------------------------------+ # Neutron Server とするホストの IPアドレスを定義 [root@dlp ~(keystone)]# export neutron_server=10.0.0.30
keystone endpoint-create --region RegionOne \ --service neutron \ --publicurl "http://$neutron_server:9696/" \ --internalurl "http://$neutron_server:9696/" \ --adminurl "http://$neutron_server:9696/" +-------------+----------------------------------+ | Property | Value | +-------------+----------------------------------+ | adminurl | http://10.0.0.30:9696/ | | id | d6c5d66874524f938da9e5490980cb89 | | internalurl | http://10.0.0.30:9696/ | | publicurl | http://10.0.0.30:9696/ | | region | RegionOne | | service_id | 27bba582d83a42b4818177bf6da16dff | +-------------+----------------------------------+ |
[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.40-MariaDB-wsrep MariaDB Server, wsrep_25.11.r4026 Copyright (c) 2000, 2014, Oracle, Monty Program 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)]>
MariaDB [(none)]> flush privileges; Query OK, 0 rows affected (0.00 sec) exit Bye |
[3] | Neutron Server のインストールです。 |
[root@dlp ~(keystone)]# yum --enablerepo=openstack-juno,epel -y install openstack-neutron openstack-neutron-ml2
|
[4] | Neutron Server の設定です。 |
[root@dlp ~(keystone)]#
vi /etc/neutron/neutron.conf # 65行目:追記 core_plugin=ml2
# 74行目:追記 service_plugins=router
# 81行目:追記 auth_strategy=keystone
# 106行目:コメント解除 dhcp_agent_notification=True # 243行目:コメント解除して変更 (Nova エンドポイント指定) nova_url= http://10.0.0.30:8774/v2
# 249行目:コメント解除して変更 (Nova ユーザー指定) nova_admin_username= nova
# 252行目:コメント解除して変更 (Nova ユーザーのテナントID指定) nova_admin_tenant_id= 9e657ab1d2344de5aa9d86006732c7f0
# 255行目:コメント解除して変更 (Nova ユーザーのパスワード指定) nova_admin_password= servicepassword
# 258行目:コメント解除して変更 (Keystone サーバー指定) nova_admin_auth_url= http://10.0.0.30:35357/v2.0
# 343行目:コメント解除して変更 (RabbitMQ サーバー指定) rabbit_host= 10.0.0.30
# 347行目:コメント解除 rabbit_port=5672 # 356行目:コメント解除して変更 (RabbitMQ のユーザーID) rabbit_userid= guest
# 359行目:コメント解除して変更 (RabbitMQ のユーザーのパスワード) rabbit_password= password
# 444行目:コメント解除 rpc_backend=rabbit # 450行目:追記 control_exchange=neutron
# 555行目:コメント解除して以下のように変更 (Keystone に登録した値) [keystone_authtoken] auth_host = 10.0.0.30 auth_port = 35357 auth_protocol = http admin_tenant_name = service admin_user = neutron admin_password = servicepassword
# 574行目:追記 (データベース指定) connection = mysql://neutron:password@10.0.0.30/neutron_ml2
# 622行目:コメントにする # service_provider=LOADBALANCER:Haproxy:neutron.services.loadbalancer.
drivers.haproxy.plugin_driver.HaproxyOnHostPluginDriver:default
[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 # 69行目:コメント解除 & 追記 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 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 |
Sponsored Link |