OpenStack Icehouse : Neutron 設定#1 ( Control ノード )2014/05/23 |
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 | 75990e24783c408ab9b497ec8e51efc7 | | name | neutron | | tenantId | 45fa65597c464d48a20be990f660a27b | | 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 | c91e39de2c9d4072942bf77e1d93b4b4 | | 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 | ad19bde6c9ca41dd9e9b31c220f235a3 | | internalurl | http://10.0.0.30:9696/ | | publicurl | http://10.0.0.30:9696/ | | region | RegionOne | | service_id | c91e39de2c9d4072942bf77e1d93b4b4 | +-------------+----------------------------------+ |
[2] | Neutron 用のユーザーとデータベースを MySQL に登録します。 |
root@dlp ~(keystone)# mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 37 Server version: 5.5.34-0ubuntu0.12.04.1 (Ubuntu) Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. # Neutron 用データベース作成 ( 'password'の箇所は設定するパスワードを入力 )
mysql>
create database neutron_ml2 character set utf8; Query OK, 1 row affected (0.00 sec)
mysql>
grant all privileges on neutron_ml2.* to neutron@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
mysql>
grant all privileges on neutron_ml2.* to neutron@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
mysql>
mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) exit Bye |
[3] | Neutron Server インストール |
root@dlp ~(keystone)# apt-get -y install neutron-server neutron-plugin-ml2 python-neutronclient
|
[4] | Neutron Server 設定 |
root@dlp ~(keystone)#
vi /etc/neutron/neutron.conf # 53行目:コメント解除 core_plugin = neutron.plugins.ml2.plugin.Ml2Plugin # 64行目:追記 service_plugins = neutron.services.l3_router.l3_router_plugin.L3RouterPlugin
# 70行目:コメント解除 auth_strategy = keystone # 87行目:コメント解除 dhcp_agent_notification = True # 105行目:コメント解除 rpc_backend = neutron.openstack.common.rpc.impl_kombu # 118行目:コメント解除 control_exchange = neutron # 134行目:コメント解除して変更 (RabbitMQ サーバー指定) rabbit_host = 10.0.0.30
# 136行目:コメント解除して変更 (RabbitMQ のユーザーのパスワード) rabbit_password = password
# 138行目:コメント解除 rabbit_port = 5672 # 143行目:コメント解除して変更 (RabbitMQ のユーザーID) rabbit_userid = guest
# 299行目:コメント解除 notify_nova_on_port_status_changes = True # 303行目:コメント解除 notify_nova_on_port_data_changes = True # 306行目:コメント解除して変更 (Nova エンドポイント指定) nova_url = http://10.0.0.30:8774/v2
# 312行目:コメント解除して変更 (Nova ユーザー指定) nova_admin_username = nova
# 315行目:コメント解除して変更 (Nova ユーザーのテナントID指定) nova_admin_tenant_id = 45fa65597c464d48a20be990f660a27b
# 318行目:コメント解除して変更 (Nova ユーザーのパスワード指定) nova_admin_password = servicepassword
# 321行目:コメント解除して変更 (Keystone サーバー指定) nova_admin_auth_url = http://10.0.0.30:35357/v2.0
# 394行目:以下のように変更 (Keystone に登録した値) auth_host = 10.0.0.30 auth_port = 35357 auth_protocol = http signing_dir = $state_path/keystone-signing admin_tenant_name = service admin_user = neutron admin_password = servicepassword signing_dir = $state_path/keystone-signing # 409行目:変更 (データベース指定) connection = mysql://neutron:password@10.0.0.30/neutron_ml2
# 454行目:コメントにする # 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 # 最終行:コメント解除 & 追記 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 service neutron-server restart neutron-server stop/waiting neutron-server start/running, process 6415 root@dlp ~(keystone)# service nova-api restart nova-api stop/waiting nova-api start/running, process 4926 |
Sponsored Link |