1、架构
创建3台虚拟机,分别作为controll节点、network节点和compute1节点。
Controller节点:1processor,2G memory,5G storage。
Network节点:1processor,2G memory,5G storage。
Comute1节点:1processor,2G memory,5G storage。
架构图:
外部网络:提供上网业务,外界登录openstack(在上图为蓝色模块)
管理网络:三节点通信比如keystone,认证,rabbitmq消息队列。(在上图为红色模块)
业务网络:网络节点和计算节点中虚拟机数据通信,比如dhcp,L2,L3。(在上图为绿色模块)
2、三个节点网卡配置
Controller节点:一张网卡,配置eth0为管理网络
# This file describes the network interfaces available on your system # and how to activate them. For more information, see interfaces(5). # The loopback network interface auto lo iface lo inet loopback auto eth0 iface eth0 inet static address 10.1.101.11 netmask 255.255.255.0 gateway 10.1.101.254 dns-nameservers 10.1.101.51