OpenStack部署的简单模型

记录下看到的openstack部署的简单模型,方便自己以后定位问题

规划网络
部署节点为一个controller节点(包含网络节点),两个compute节点。controller节点有3个网卡,分别为eth0(管理和API网络,CIDR为192.168.128.0/24)、eth1(租户网络,CIDR为10.10.10.0/24)、eth2(外部网络,CIDR为11.11.11.0/24,不设置IP);compute节点有2个网卡,分别为eth0(管理和API网络,CIDR为192.168.128.0/24)、eth1(租户网络,CIDR为10.10.10.0/24)

Neutron网络方案为:

  1. Neutron ML2的Type Driver为vxlan
  2. Neutron ML2的Mechanism Driver为Open vSwitch
  3. Neutron L2 Agent为Open vSwitch

controller节点 详细网络结构

compute节点详细网络结构

文章内容来源于https://blog.csdn.net/dylloveyou/article/details/72639187

原文地址:https://www.cnblogs.com/potato-chip/p/10190939.html