OpenStack Antelope : Configure Neutron (Compute Node)2023/04/17 |
Configure OpenStack Network Service (Neutron).
This example is not on the All in One Settings like here, but Configure the 3 Nodes environment like follows.
Neutron needs a plugin software, it's possible to choose it from some softwares. It chooses ML2 plugin on this example. ( it uses Open vSwitch under the backend ) ------------+--------------------------+--------------------------+------------ | | | eth0|10.0.0.30 eth0|10.0.0.50 eth0|10.0.0.51 +-----------+-----------+ +-----------+-----------+ +-----------+-----------+ | [ dlp.srv.world ] | | [ network.srv.world ] | | [ node01.srv.world ] | | (Control Node) | | (Network Node) | | (Compute Node) | | | | | | | | MariaDB RabbitMQ | | Neutron L2/L3 Agent | | Libvirt | | Memcached Nginx | | Neutron Metadata | | Nova Compute | | Keystone httpd | | Open vSwitch | | Neutron L2 Agent | | Glance Nova API | | | | Open vSwitch | | Neutron Server | | | | | | Neutron Metadata | | | | | +-----------------------+ +-----------------------+ +-----------------------+ |
[1] | Install Neutron services on Compute Node. |
[root@node01 ~]# dnf --enablerepo=centos-openstack-antelope,epel,crb -y install openstack-neutron openstack-neutron-ml2 openstack-neutron-openvswitch
|
[2] | Configure Neutron services. |
[root@node01 ~]# mv /etc/neutron/neutron.conf /etc/neutron/neutron.conf.org
[root@node01 ~]#
vi /etc/neutron/neutron.conf # create new [DEFAULT] core_plugin = ml2 service_plugins = router auth_strategy = keystone state_path = /var/lib/neutron allow_overlapping_ips = True # RabbitMQ connection info transport_url = rabbit://openstack:password@dlp.srv.world # Keystone auth info [keystone_authtoken] www_authenticate_uri = https://dlp.srv.world:5000 auth_url = https://dlp.srv.world:5000 memcached_servers = dlp.srv.world:11211 auth_type = password project_domain_name = default user_domain_name = default project_name = service username = neutron password = servicepassword # if using self-signed certs on httpd Keystone, turn to [true] insecure = false [oslo_concurrency] lock_path = $state_path/lock [oslo_policy] enforce_new_defaults = true
[root@node01 ~]#
chmod 640 /etc/neutron/neutron.conf [root@node01 ~]# chgrp neutron /etc/neutron/neutron.conf
[root@node01 ~]#
vi /etc/neutron/plugins/ml2/ml2_conf.ini # add to the end # OK with no value for [tenant_network_types] now (set later if need)
[ml2]
type_drivers = flat,vlan,gre,vxlan tenant_network_types = mechanism_drivers = openvswitch extension_drivers = port_security
[root@node01 ~]#
vi /etc/neutron/plugins/ml2/openvswitch_agent.ini # add to the end
[securitygroup]
firewall_driver = openvswitch enable_security_group = true enable_ipset = true
[root@node01 ~]#
vi /etc/nova/nova.conf # add follows into [DEFAULT] section
vif_plugging_is_fatal = True
vif_plugging_timeout = 300
# add follows to the end : Neutron auth info
# the value of [metadata_proxy_shared_secret] is the same with the one in [metadata_agent.ini]
[neutron]
auth_url = https://dlp.srv.world:5000
auth_type = password
project_domain_name = default
user_domain_name = default
region_name = RegionOne
project_name = service
username = neutron
password = servicepassword
service_metadata_proxy = True
metadata_proxy_shared_secret = metadata_secret
insecure = false
|
[3] | If SELinux is enabled, change policy like follows. |
[root@node01 ~]# dnf --enablerepo=centos-openstack-antelope -y install openstack-selinux [root@node01 ~]# setsebool -P neutron_can_network on [root@node01 ~]# setsebool -P daemons_enable_cluster_mode on
[root@node01 ~]#
vi ovsofctl.te # create new module ovsofctl 1.0; require { type crontab_exec_t; type hostname_exec_t; type openflow_port_t; type keepalived_exec_t; type neutron_t; type pasta_exec_t; type gpg_exec_t; type neutron_tmp_t; type neutron_exec_t; type neutron_t; type dnsmasq_t; type tracefs_t; type openvswitch_load_module_t; type openvswitch_t; type ovsdb_port_t; type cache_home_t; class file { create execute_no_trans getattr ioctl open write }; class dir { search create }; class lnk_file read; class sock_file { create unlink write }; class tcp_socket name_bind; class capability { dac_override sys_rawio }; } #============= neutron_t ============== allow neutron_t self:capability { dac_override sys_rawio }; allow neutron_t neutron_exec_t:file execute_no_trans; allow neutron_t crontab_exec_t:file getattr; allow neutron_t gpg_exec_t:file getattr; allow neutron_t hostname_exec_t:file getattr; allow neutron_t keepalived_exec_t:file getattr; allow neutron_t neutron_tmp_t:sock_file { create unlink write }; allow neutron_t openflow_port_t:tcp_socket name_bind; allow neutron_t pasta_exec_t:lnk_file read; allow neutron_t cache_home_t:dir create; allow neutron_t cache_home_t:file { create getattr ioctl open write }; #============= openvswitch_load_module_t ============== allow openvswitch_load_module_t tracefs_t:dir search; #============= openvswitch_t ============== allow openvswitch_t ovsdb_port_t:tcp_socket name_bind; #============= dnsmasq_t ============== allow dnsmasq_t self:capability dac_override; checkmodule -m -M -o ovsofctl.mod ovsofctl.te [root@node01 ~]# semodule_package --outfile ovsofctl.pp --module ovsofctl.mod [root@node01 ~]# semodule -i ovsofctl.pp |
[4] | Start Neutron services. |
[root@node01 ~]# ln -s /etc/neutron/plugins/ml2/ml2_conf.ini /etc/neutron/plugin.ini [root@node01 ~]# systemctl enable --now openvswitch [root@node01 ~]# ovs-vsctl add-br br-int [root@node01 ~]# systemctl restart openstack-nova-compute [root@node01 ~]# systemctl enable --now neutron-openvswitch-agent |
Sponsored Link |