最好的分析FlatDHCPManager的源文,有机会把这篇翻译了

===========================

Over time, networking in OpenStack has been evolving from a simple, barely usable model, to one that aims to support full customer isolation. To address different user needs, OpenStack comes with a handful of “network managers”. A network manager defines the network topology for a given OpenStack deployment. As  of the current stable “Essex” release of OpenStack, one can choose from three different types of network managers: FlatManager, FlatDHCPManager, VlanManager. I’ll discuss the first two of them here.

FlatManager and FlatDHCPManager have lots in common. They both rely on the concept of bridged networking, with a single bridge device. Let’s consider her the example of a multi-host network; we’ll look at a single-host use case in a subsequent post.

For each compute node, there is a single virtual bridge created, the name of which is specified in the Nova configuration file using this option:

flat_network_bridge=br100

All the VMs spawned by OpenStack get attached to this dedicated bridge.

Network bridging on OpenStack compute node

This approach (single bridge per compute node) suffers from a common known limitation of bridged networking: a linux bridge can be attached only to a signle physical interface on the host machine (we could get away with VLAN interfaces here, but this is not supported by FlatDHCPManager and FlatManager). Because of this, there is no L2 isolation between hosts. They all share the same ARP broadcast domain.

The idea behind FlatManager and FlatDHCPManager is to have one “flat” IP address pool defined throughout the cluster. This address space is shared among all  user instances, regardless of which tenant they belong to. Each tenant is free to grab whatever address is available in the pool.

FlatManager

FlatManager provides the most primitive set of operations. Its role boils down just to attaching the instance to the bridge on the compute node. By default, it does no IP configuration of the instance. This task is left for the systems administrator and can be done using some external DHCP server or other means.

FlatManager network topology

FlatDHCPManager

FlatDHCPManager plugs  a given instance into the bridge, and on top of that provides a DHCP server to boot up from.

On each compute node:

  • the network bridge is given an address from the “flat” IP pool
  • a dnsmasq DHCP server process is spawned and listens on the bridge interface IP
  • the bridge acts as the default gateway for all the instances running on the given compute node

FlatDHCPManager – network topology

As for dnsmasq, FlatDHCPManager creates a static lease file per compute node to guarantee the same IP address for the instance over time. The lease file is constructed based on instance data from the Nova database, namely MAC, IP and hostname. The dnsmasq server is supposed to hand out addresses only to instances running locally on the compute node.  To achieve this, instance data to be put into DHCP lease file  are filtered by the ‘host’ field from the ‘instances’ table.  Also, the default gateway option in dnsmasq is set to the bridge’s IP address. On the diagram below you san see that it will be given a different default gateway depending on which compute node the instance lands.

Network gateways for instances running on different compute nodes

Below I’ve shown the routing table from vm_1 and for vm_3 – each of them has a different default gateway:

root@vm_1:~# route -n
Kernel IP routing table
Destination    Gateway     Genmask Flags Metric Ref Use Iface
0.0.0.0        10.0.0.1     0.0.0.0 UG     0   0   0 eth0

root@vm_3:~# route -n
Kernel IP routing table
Destination    Gateway     Genmask Flags Metric Ref Use Iface
0.0.0.0        10.0.0.4     0.0.0.0 UG     0   0   0 eth0

By default, all the VMs in the “flat”
network can see one another regardless of which tenant they belong to.
One can enforce instance isolation by applying the following  flag in nova.conf:

allow_same_net_traffic=False

This configures  IPtables policies to
prevent any traffic between instances (even inside the same tenant),
unless it is unblocked in a security group.

From practical standpoint, “flat”
managers seem to be usable for homogenous,  relatively small, internal
 corporate clouds where there are no tenants at all, or their number is
very limited.  Typically, the usage scenario will be a dynamically
scaled web server farm or an HPC cluster. For this purpose it is usually
sufficient to have a single IP address space where IP address
management is offloaded to some central DHCP server or is managed in a
simple way by OpenStack’s dnsmasq. On the other hand, flat networking
can struggle with scalability, as all the instances share the same L2
broadcast domain.

These issues (scalability +
multitenancy) are in some ways addressed by VlanManager, which will be
covered in an upcoming blog posts.

最新文章

  1. Session的属性
  2. mouseenter以及mouseleave兼容性
  3. Linux 下.desktop 桌面程序图标文件编写方式
  4. D1.1.利用npm(webpack)构建基本reactJS项目
  5. 如何向新手程序员介绍Java编程
  6. Android 源码获取-----在Windows环境下通过Git得到Android源代码
  7. 锋利的JQuery(一)
  8. C语言中 v...printf类函数的用法
  9. (转)inux Read系统调用
  10. js日期和毫秒相互转换
  11. OGG中断后,重新同步操作
  12. python自动化测试
  13. 【编程技巧】Ext.QuickTips.init();
  14. uni-app调用原生的文件系统管理器(可选取附件上传)
  15. JAVA WEB项目中开启流量控制Filter
  16. Java虚拟机(五)Java的四种引用级别
  17. 关于raid5的一系列问题
  18. pytest 入门及运行
  19. [转]Shared——探究react-native通信机制
  20. nyoj576 集齐卡片赢大奖(一)

热门文章

  1. iOS: hide UITextField Cursor
  2. es 5 数组reduce方法记忆
  3. nodejs的package.json
  4. 用Fiddler查看 Android/iOS 网络请求
  5. MVC學習網站
  6. javascript关于onclick()
  7. C#调用Delphi的dll之详解
  8. 一致性Hash算法原理及C#代码实现
  9. 8 -- 深入使用Spring -- 2...6 Spring 4.0 增强的自动装配和精确装配
  10. 让树莓派自动上报IP地址到邮箱,二代B