Toto je druhá část konfigurace neutronu (sítě) na Ubuntu 14.04, můžete si projít předchozí článek o konfiguraci neutronu #1, ve kterém jsme nainstalovali a nakonfigurovali síťové komponenty na uzlu Controller.
Zde v tomto tutoriálu nainstalujeme a nakonfigurujeme Compute Node.
Nejprve nainstalujte součásti na výpočetní uzel.
# apt-get install neutron-plugin-linuxbridge-agent conntrack
Konfigurace výpočetního uzlu:
Udělejme nějakou konfiguraci příkazů, která zahrnuje mechanismus ověřování, frontu zpráv a zásuvný modul
Upravte soubor /etc/neutron/neutron.conf.
# nano /etc/neutron/neutron.conf
Proveďte příslušné změny v souboru.
[DEFAULT] ... rpc_backend = rabbit auth_strategy = keystone verbose = True [oslo_messaging_rabbit] ... rabbit_host = controller rabbit_userid = openstack rabbit_password = password ## Replace "password" with the password you chose for the openstack account in RabbitMQ. [keystone_authtoken] ... auth_uri = http://controller:5000 auth_url = http://controller:35357 auth_plugin = password project_domain_id = default user_domain_id = default project_name = service username = neutron password = password ## Replace "password" with the password you chose for the neutron user in the Identity service. ## Commentout other authentication details. [database] #connection = sqlite:////var/lib/neutron/neutron.sqlite ## Comment out any connection options because compute nodes do not directly access the database.
Nakonfigurujte agenta mostu Linux:
Protože používáme samoobslužné sítě, musíme nakonfigurovat linuxového mostního agenta na výpočetním uzlu. Linuxový mostový agent vytváří virtuální síťovou infrastrukturu vrstvy 2 pro instance, která zahrnuje tunely VXLAN pro privátní sítě a zpracovává bezpečnostní skupiny.
Upravte soubor /etc/neutron/plugins/ml2/linuxbridge_agent.ini.
# nano /etc/neutron/plugins/ml2/linuxbridge_agent.ini
Proveďte změny v souboru.
[linux_bridge] physical_interface_mappings = public:eth1 ## Replace "eth1" with the name of the physical public facing network interface. [vxlan] enable_vxlan = True local_ip = 192.168.12.22 l2_population = True ## Replace "192.168.12.22" with the management ip-address of compute node. [agent] ... prevent_arp_spoofing = True [securitygroup] ... enable_security_group = True firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver
Nakonfigurujte Compute pro použití sítě:
Upravte soubor /etc/nova/nova.conf.
# nano /etc/nova/nova.conf
Proveďte změny v souboru, jak je uvedeno níže.
[neutron] url = http://controller:9696 auth_url = http://controller:35357 auth_plugin = password project_domain_id = default user_domain_id = default region_name = RegionOne project_name = service username = neutron password = password ## Replace "password" with the password you chose for the neutron user in the Identity service.
Dokončete instalaci:
Restartujte výpočetní službu:
# service nova-compute restart
Restartujte agenta mostu Linux:
# service neutron-plugin-linuxbridge-agent restart
Ověřit:
Vypište seznam agentů, abyste ověřili úspěšné spuštění neutronových agentů, spusťte tento příkaz na uzlu Controller.
# neutron agent-list +--------------------------------------+--------------------+--------------------------+-------+----------------+---------------------------+ | id | agent_type | host | alive | admin_state_up | binary | +--------------------------------------+--------------------+--------------------------+-------+----------------+---------------------------+ | 02030132-55f1-4136-8b47-7b495b66c672 | L3 agent | controller.itzgeek.local | :-) | True | neutron-l3-agent | | 6b2fd77d-8b23-4932-8010-6436bf01319c | Metadata agent | controller.itzgeek.local | :-) | True | neutron-metadata-agent | | 9324094a-878c-4ba2-b822-7b070268deec | DHCP agent | controller.itzgeek.local | :-) | True | neutron-dhcp-agent | | cac6003d-b25a-4b1f-8144-1ae0293f26b0 | Linux bridge agent | compute.itzgeek.local | :-) | True | neutron-linuxbridge-agent | | faec1d38-5b5a-4c46-a614-4db12b4ff9e6 | Linux bridge agent | controller.itzgeek.local | :-) | True | neutron-linuxbridge-agent | +--------------------------------------+--------------------+--------------------------+-------+----------------+---------------------------+
Měli byste vidět výše uvedený výstup se čtyřmi agenty v uzlu řadiče a jeden agent na každém výpočetním uzlu .