控制节点服务器

控制节点服务器

配置网络接口

  1. 将第一个接口配置为管理网络接口:

    IP 地址: 10.0.0.11

    子网掩码: 255.255.255.0 (or /24)

    默认网关: 10.0.0.1

  2. 提供者网络接口使用一个特殊的配置,不分配给它IP地址。配置第二块网卡作为提供者网络:

    将其中的 ``INTERFACE_NAME``替换为实际的接口名称。例如,eth1 或者*ens224*。

    • 编辑``/etc/sysconfig/network-scripts/ifcfg-INTERFACE_NAME``文件包含以下内容:

      不要改变 键``HWADDR`` 和 UUID

      DEVICE=INTERFACE_NAME
      TYPE=Ethernet
      ONBOOT="yes"
      BOOTPROTO="none"
      
  3. 重启系统以激活修改。

配置名称解析

  1. 设置节点主机名为 controller

  2. 编辑 /etc/hosts 文件包含以下内容:

    # controller
    10.0.0.11       controller
    
    # compute1
    10.0.0.31       compute1
    
    # block1
    10.0.0.41       block1
    
    # object1
    10.0.0.51       object1
    
    # object2
    10.0.0.52       object2
    

    警告

    一些发行版本在``/etc/hosts``文件中添加了附加条目解析实际主机名到另一个IP地址如 127.0.1.1。为了防止域名解析问题,你必须注释或者删除这些条目。不要删除127.0.0.1条目。

    注解

    This guide includes host entries for optional services in order to reduce complexity should you choose to deploy them.

Creative Commons Attribution 3.0 License

Except where otherwise noted, this document is licensed under Creative Commons Attribution 3.0 License. See all OpenStack Legal Documents.