From 141d359fb7d2dedc4d5bd8e619016b26a06b6011 Mon Sep 17 00:00:00 2001 From: Helen Walsh Date: Mon, 22 Oct 2018 18:49:20 +0100 Subject: [PATCH] VMAX manila doc - support for IPv6 VMAX manila drivers support for IPv6. Change-Id: I759b1a5ccb2a315fe4e7b9a17e023ad50a92ac81 (cherry picked from commit a01cb72a5669d885e73fc564990b177bd6053927) --- ...hare_back_ends_feature_support_mapping.rst | 4 +-- .../drivers/dell-emc-vmax-driver.rst | 27 +++++++++++++++++++ 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/doc/source/admin/share_back_ends_feature_support_mapping.rst b/doc/source/admin/share_back_ends_feature_support_mapping.rst index 40b5d8cf1e..8cbbe12267 100644 --- a/doc/source/admin/share_back_ends_feature_support_mapping.rst +++ b/doc/source/admin/share_back_ends_feature_support_mapping.rst @@ -106,7 +106,7 @@ Mapping of share drivers and share access rules support +----------------------------------------+--------------+--------------+----------------+------------+--------------+--------------+--------------+----------------+------------+------------+ | NetApp Clustered Data ONTAP | NFS (J) | NFS (Q) | CIFS (J) | \- | \- | NFS (K) | NFS (Q) | CIFS (M) | \- | \- | +----------------------------------------+--------------+--------------+----------------+------------+--------------+--------------+--------------+----------------+------------+------------+ -| EMC VMAX | NFS (O) | \- | CIFS (O) | \- | \- | NFS (O) | \- | CIFS (O) | \- | \- | +| EMC VMAX | NFS (O) | NFS (R) | CIFS (O) | \- | \- | NFS (O) | NFS (R) | CIFS (O) | \- | \- | +----------------------------------------+--------------+--------------+----------------+------------+--------------+--------------+--------------+----------------+------------+------------+ | EMC VNX | NFS (J) | NFS (Q) | CIFS (J) | \- | \- | NFS (L) | NFS (Q) | CIFS (L) | \- | \- | +----------------------------------------+--------------+--------------+----------------+------------+--------------+--------------+--------------+----------------+------------+------------+ @@ -234,7 +234,7 @@ More information: :ref:`capabilities_and_extra_specs` +----------------------------------------+-----------+------------+--------+-------------+-------------------+--------------------+-----+----------------------------+--------------------+--------------------+--------------+--------------+ | NetApp Clustered Data ONTAP | J | K | M | M | M | L | P | J | O | \- | P | Q | +----------------------------------------+-----------+------------+--------+-------------+-------------------+--------------------+-----+----------------------------+--------------------+--------------------+--------------+--------------+ -| EMC VMAX | O | \- | \- | \- | \- | O | \- | O | \- | \- | P | \- | +| EMC VMAX | O | \- | \- | \- | \- | \- | \- | O | \- | \- | P | R | +----------------------------------------+-----------+------------+--------+-------------+-------------------+--------------------+-----+----------------------------+--------------------+--------------------+--------------+--------------+ | EMC VNX | J | \- | \- | \- | \- | L | \- | J | \- | \- | P | Q | +----------------------------------------+-----------+------------+--------+-------------+-------------------+--------------------+-----+----------------------------+--------------------+--------------------+--------------+--------------+ diff --git a/doc/source/configuration/shared-file-systems/drivers/dell-emc-vmax-driver.rst b/doc/source/configuration/shared-file-systems/drivers/dell-emc-vmax-driver.rst index b0b5ca420a..fa1fa9ae0e 100644 --- a/doc/source/configuration/shared-file-systems/drivers/dell-emc-vmax-driver.rst +++ b/doc/source/configuration/shared-file-systems/drivers/dell-emc-vmax-driver.rst @@ -248,6 +248,33 @@ Restart of the ``manila-share`` service is needed for the configuration changes to take effect. +IPv6 support +~~~~~~~~~~~~ +IPv6 support for VMAX Manila driver is introduced in Rocky release. The feature is +divided into two parts: + +#. The driver is able to manage share or snapshot in the Neutron IPv6 network. +#. The driver is able to connect VMAX management interface using its IPv6 + address. + +Pre-Configurations for IPv6 support +----------------------------------- + +The following parameters need to be configured in ``/etc/manila/manila.conf`` +for the VMAX driver: + +.. code-block:: ini + + network_plugin_ipv6_enabled = True + +If you want to connect to the eNAS controller using IPv6 address specify the +address in ``/etc/manila/manila.conf``: + +.. code-block:: ini + + emc_nas_server = + + Restrictions ~~~~~~~~~~~~