Integrating Openstack with ACI
Below are my study notes about the integration of Openstack with ACI. I begin with defining some concepts. Then I describe NAT feature within Openstack and I finish with discussing networking plugins. Openstack is a group of technologies that provide enterprise cloud computing capabilities. has the following minimal components or node types: a compute node (aka Nova), it runs the nova-compute service, a controller node which comprises many services. These services can be distributed over dedicated servers such as: storage nodes (aka Swift) and network nodes (aka Quantum or later as Neutron). A compute node hosts one or more instances (the equivalent of virtual machines). Each instance is referenced with its Instance ID. Each Openstack Compute node has a virtual bridge interface named br-int. Each Compute instance is connected to br-int through a tap virtual interface, then through a virtual switch, then to the br-int bridge. Neutron provides VLAN, VXLAN and NVGRE encapsulation possibi...