Jump to: navigation, search

Difference between revisions of "Neutron/VMware NSX plugins"

(Created page with "Placeholder page for VMware NSX plugins wiki page This page will provide a thorough technical description of the plugin and how it interacts with the NSX backend.")
 
 
(7 intermediate revisions by the same user not shown)
Line 1: Line 1:
Placeholder page for VMware NSX plugins wiki page
+
== Overview ==
 +
The NSX plugins can be found at the following repository: https://github.com/openstack/vmware-nsx
 +
The following plugins are supported:
 +
* NSX MH - provides support for multi-hypervisors
 +
* NSXv - plugin for vSphere. This is supported from stable/kilo.
 +
* Simple DVS - the provides simple support for distributed switches. It does not have any security group or floating IP support
 +
* NSXv3 - provides support for multi-hypervisors. This is supported from stable/liberty. From stable/newton onwards the plugin supports native DHCP and metadata.
  
This page will provide a thorough technical description of the plugin and how it interacts with the NSX backend.
+
== Admin Utility ==
 +
The NSXv and the NSXv3 support the nsxadmin utility. This enables and administrator to determine and rectify inconsistencies between the Neutron DB and the NSX.
 +
usage: nsxadmin -r <resources> -o <operation>. More details can be found at the git repository for all of the supported options.
 +
 
 +
== Simple DVS Configuration ==
 +
As mentioned above there are many limitation to this plugin and the purpose of the plugin is to enable a VC admin to experience Neutron. Only an admin can create provider VLAN networks for tenants.
 +
 
 +
=== Neutron Configuration ===
 +
An example of the configuration is below:
 +
 
 +
    [DEFAULT]
 +
    vmware_nsx.plugin.NsxDvsPlugin
 +
 
 +
    [dvs]
 +
    dvs_name = Pele
 +
    insecure = True
 +
    host_password = TheBestEver
 +
    host_username = administrator@vsphere.local 
 +
    host_ip = 10.20.30.40
 +
 
 +
The plugin will configure port groups on the DVS Pele.

Latest revision as of 09:51, 23 January 2018

Overview

The NSX plugins can be found at the following repository: https://github.com/openstack/vmware-nsx The following plugins are supported:

  • NSX MH - provides support for multi-hypervisors
  • NSXv - plugin for vSphere. This is supported from stable/kilo.
  • Simple DVS - the provides simple support for distributed switches. It does not have any security group or floating IP support
  • NSXv3 - provides support for multi-hypervisors. This is supported from stable/liberty. From stable/newton onwards the plugin supports native DHCP and metadata.

Admin Utility

The NSXv and the NSXv3 support the nsxadmin utility. This enables and administrator to determine and rectify inconsistencies between the Neutron DB and the NSX. usage: nsxadmin -r <resources> -o <operation>. More details can be found at the git repository for all of the supported options.

Simple DVS Configuration

As mentioned above there are many limitation to this plugin and the purpose of the plugin is to enable a VC admin to experience Neutron. Only an admin can create provider VLAN networks for tenants.

Neutron Configuration

An example of the configuration is below:

   [DEFAULT]
   vmware_nsx.plugin.NsxDvsPlugin
   [dvs]
   dvs_name = Pele
   insecure = True
   host_password = TheBestEver
   host_username = administrator@vsphere.local  
   host_ip = 10.20.30.40

The plugin will configure port groups on the DVS Pele.