Este contenido no está disponible en el idioma seleccionado.

Chapter 2. Prerequisites


This chapter outlines how to configure all nodes to use iptables to provide firewall capabilities. It also explains how to install the database service and message broker used by all components in the Red Hat OpenStack Platform environment. The MariaDB database service provides the tools to create and access the databases required for each component. The RabbitMQ message broker allows internal communication between the components. Messages can be sent from and received by any component that is configured to use the message broker.

Note

Prior to deploying Red Hat OpenStack Platform, it is important to consider the characteristics of the available deployment methods. For more information, refer to the recommended best practices for installing Red Hat OpenStack Platform.

2.1. Configure the Firewall

Configure the server or servers hosting each component to use iptables. This involves disabling the Network Manager service, and configuring the server to use the firewall capabilities provided by iptables instead of those provided by firewalld. All further firewall configuration in this document uses iptables.

2.1.1. Disable Network Manager

OpenStack Networking does not work on systems that have the Network Manager service enabled. All steps in this procedure must be performed on each server in the environment that will handle network traffic, while logged in as the root user. This includes the server that will host OpenStack Networking, all network nodes, and all Compute nodes.

Procedure 2.1. Disabling the Network Manager Service

  1. Verify whether Network Manager is currently enabled:
    # systemctl status NetworkManager.service | grep Active:
    Copy to Clipboard Toggle word wrap
    • The system displays an error if the Network Manager service is not currently installed. If this error is displayed, no further action is required to disable the Network Manager service.
    • The system displays Active: active (running) if Network Manager is running, or Active: inactive (dead) if it is not. If Network Manager is inactive, no further action is required.
  2. If Network Manager is running, stop it and then disable it:
    # systemctl stop NetworkManager.service
    # systemctl disable NetworkManager.service
    Copy to Clipboard Toggle word wrap
  3. Open each interface configuration file on the system in a text editor. Interface configuration files are found in the /etc/sysconfig/network-scripts/ directory and have names in the format ifcfg-X, where X is replaced by the name of the interface. Valid interface names include eth0, p1p5, and em1.
    To ensure that the standard network service takes control of the interfaces and automatically activates them on boot, confirm that the following keys are set in each interface configuration file, or add them manually:
    NM_CONTROLLED=no
    ONBOOT=yes
    Copy to Clipboard Toggle word wrap
  4. Start the standard network service:
    # systemctl start network.service
    Copy to Clipboard Toggle word wrap
  5. Configure the network service to start at boot time:
    # systemctl enable network.service
    Copy to Clipboard Toggle word wrap

2.1.2. Disable the firewalld Service

Disable the firewalld service for Compute and OpenStack Networking nodes, and enable the iptables service.

Procedure 2.2. Disabling the firewalld Service

  1. Install the iptables service:
    # yum install iptables-services
    Copy to Clipboard Toggle word wrap
  2. Review the iptables rules defined in /etc/sysconfig/iptables:

    Note

    You can review your current firewalld configuration:
    # firewall-cmd --list-all
    Copy to Clipboard Toggle word wrap
  3. When you are satisfied with the iptables rules, disable firewalld:
    # systemctl disable firewalld.service
    Copy to Clipboard Toggle word wrap
  4. Stop the firewalld service and start the iptables services:
    # systemctl stop firewalld.service; systemctl start iptables.service; systemctl start ip6tables.service
    Copy to Clipboard Toggle word wrap
  5. Configure the iptables services to start at boot time:
    # systemctl enable iptables.service
    # systemctl enable ip6tables.service
    Copy to Clipboard Toggle word wrap
Volver arriba
Red Hat logoGithubredditYoutubeTwitter

Aprender

Pruebe, compre y venda

Comunidades

Acerca de la documentación de Red Hat

Ayudamos a los usuarios de Red Hat a innovar y alcanzar sus objetivos con nuestros productos y servicios con contenido en el que pueden confiar. Explore nuestras recientes actualizaciones.

Hacer que el código abierto sea más inclusivo

Red Hat se compromete a reemplazar el lenguaje problemático en nuestro código, documentación y propiedades web. Para más detalles, consulte el Blog de Red Hat.

Acerca de Red Hat

Ofrecemos soluciones reforzadas que facilitan a las empresas trabajar en plataformas y entornos, desde el centro de datos central hasta el perímetro de la red.

Theme

© 2025 Red Hat