<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: How to Provision VMs Using NetApp FlexClones</title>
	<atom:link href="http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/</link>
	<description>The weblog of an IT pro specializing in virtualization, storage, and servers</description>
	<pubDate>Thu, 18 Mar 2010 06:21:56 +0000</pubDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mjerom</title>
		<link>http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/comment-page-1/#comment-43666</link>
		<dc:creator>mjerom</dc:creator>
		<pubDate>Thu, 19 Feb 2009 18:45:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/#comment-43666</guid>
		<description>Thx, this article helped me a lot.
I finally wrotte a script that can complete all the tasks;


###########################################
#
#  Propos :
#      Deploiement d'un master en evironement virtuel (ESX) via FlexClone
#
#  Pre requis :
#     Serveur VMWare ESX
#      FlexVol avec l'OS Master (Syspreped) + igroup "esx"
#      NAS NetApp avec FlexClone
#      SSH parametre entre les deux
#
## memo ssh
## netapp
##secureadmin setup ssh
##secureadmin enable ssh2
##
## from ESX
##esxcfg-firewall -e sshClient
##vi /etc/ssh/ssh_config
##change Ciphers aes256-cbc,aes128-cbc
##to Ciphers aes256-cbc,aes128-cbc,3des-cbc
##ssh @IPNetApp
##accepter la cle puis sortir (^D)
##ssh-keygen -t dsa -b 1024
##mount @IPNetApp:/vol/vol0 /mnt
##mkdir -p /mnt/etc/sshd/root/.ssh
##more /root/.ssh/id_dsa.pub &gt;&gt; /mnt/etc/sshd/root/.ssh/authorized_keys
##vi /mnt/etc/sshd/root/.ssh/authorized_keys (otter root@esx..)
##umount /mnt
## 

###########################################

# VARIABLES Globales
NB_CLONE="100";
# VARIABLES NetApp
IP_NETAPP="172.18.16.254";
MASTER_VOL_NAME="vol1";
MASTER_SNAPSHOT_NAME="snap_master";
CLONE_VOL_NAME="clone";
IGROUP_NAME="esx";
#  VARIABLES ESX
MASTER_VM_NAME="master-vm";
#NEW_RESSOURCE_POOL="";
DATASTORE_NEW_NAME_PREFIX="clone";
NEW_VM_NAME_PREFIX="clone";
PATH_2_VMX_PREFIX="/vmfs/volumes";

###########################################
# NetApp side
#

#  Create Master Snapshot
ssh $IP_NETAPP "snap create -V $MASTER_VOL_NAME $MASTER_SNAPSHOT_NAME"

i="0"
while (( $i &lt; $NB_CLONE )); do
        
        #  Clone from Master Snapshot
        CLONE_VOL_NAME="$CLONE_VOL_NAME$i";
	  ssh $IP_NETAPP "vol clone create $CLONE_VOL_NAME -b $MASTER_VOL_NAME $MASTER_SNAPSHOT_NAME";
		
	  # Set the Snapshot Scheduler to 0
	  ssh $IP_NETAPP "snap sched $CLONE_VOL_NAME 0";
	  #  Map Cloned Lun
        CLONED_LUN_PATH="/vol/$CLONE_VOL_NAME/lun0";
        ID_CLONED_LUN=$((i+1));
        ssh $IP_NETAPP "lun map $CLONED_LUN_PATH $IGROUP_NAME $ID_CLONED_LUN";

        #  Bring Cloned Lun Online
        ssh $IP_NETAPP "lun online $CLONED_LUN_PATH";

        i=$((i+1));
done

###########################################
#  ESX side
#

#  Enable LVM resignature
/usr/sbin/esxcfg-advcfg -s 1 /LVM/EnableResignature

#  Rescan Storage Adapters
for HBA in `vmware-vim-cmd hostsvc/summary/hba &#124; grep vmhba &#124; awk '{print $1}'`; do
	vmware-vim-cmd hostsvc/storage/hba_rescan $HBA
done

# Refresh Storage
vmware-vim-cmd hostsvc/storage/refresh

# Set Cloned Datastore's name
vmware-vim-cmd hostsvc/datastore/listsummary &#124; egrep name &#124; awk -F\" '{print $2}'
echo "Nom du (des) datastore(s) clone(s)"
read DATASTORE_CLONED_NAME

#  Change Cloned Datastore's Name &amp; Register the Cloned VM inside
i=0
while (( $i &lt; $NB_CLONE )); do
	DATASTORE_NEW_NAME="$DATASTORE_NEW_NAME_PREFIX$i";
	NEW_VM_NAME="$NEW_VM_NAME_PREFIX$i";
	PATH_2_VMX="$PATH_2_VMX/$DATASTORE_NEW_NAME/$MASTER_VM_NAME/$MASTER_VM_NAME.vmx";
	vmware-vim-cmd hostsvc/datastore/rename $DATASTORE_CLONED_NAME $DATASTORE_NEW_NAME;
	vmware-vim-cmd solo/registervm $PATH_2_VMX_PREFIX $NEW_VM_NAME $NEW_RESSOURCE_POOL;
	i=$((i+1));
done

#  Disable LVM resignature
/usr/sbin/esxcfg-advcfg -s 0 /LVM/EnableResignature


sorry for the french comments.</description>
		<content:encoded><![CDATA[<p>Thx, this article helped me a lot.<br />
I finally wrotte a script that can complete all the tasks;</p>
<p>###########################################<br />
#<br />
#  Propos :<br />
#      Deploiement d&#8217;un master en evironement virtuel (ESX) via FlexClone<br />
#<br />
#  Pre requis :<br />
#     Serveur VMWare ESX<br />
#      FlexVol avec l&#8217;OS Master (Syspreped) + igroup &#8220;esx&#8221;<br />
#      NAS NetApp avec FlexClone<br />
#      SSH parametre entre les deux<br />
#<br />
## memo ssh<br />
## netapp<br />
##secureadmin setup ssh<br />
##secureadmin enable ssh2<br />
##<br />
## from ESX<br />
##esxcfg-firewall -e sshClient<br />
##vi /etc/ssh/ssh_config<br />
##change Ciphers aes256-cbc,aes128-cbc<br />
##to Ciphers aes256-cbc,aes128-cbc,3des-cbc<br />
##ssh @IPNetApp<br />
##accepter la cle puis sortir (^D)<br />
##ssh-keygen -t dsa -b 1024<br />
##mount @IPNetApp:/vol/vol0 /mnt<br />
##mkdir -p /mnt/etc/sshd/root/.ssh<br />
##more /root/.ssh/id_dsa.pub &gt;&gt; /mnt/etc/sshd/root/.ssh/authorized_keys<br />
##vi /mnt/etc/sshd/root/.ssh/authorized_keys (otter root@esx..)<br />
##umount /mnt<br />
## </p>
<p>###########################################</p>
<p># VARIABLES Globales<br />
NB_CLONE=&#8221;100&#8243;;<br />
# VARIABLES NetApp<br />
IP_NETAPP=&#8221;172.18.16.254&#8243;;<br />
MASTER_VOL_NAME=&#8221;vol1&#8243;;<br />
MASTER_SNAPSHOT_NAME=&#8221;snap_master&#8221;;<br />
CLONE_VOL_NAME=&#8221;clone&#8221;;<br />
IGROUP_NAME=&#8221;esx&#8221;;<br />
#  VARIABLES ESX<br />
MASTER_VM_NAME=&#8221;master-vm&#8221;;<br />
#NEW_RESSOURCE_POOL=&#8221;";<br />
DATASTORE_NEW_NAME_PREFIX=&#8221;clone&#8221;;<br />
NEW_VM_NAME_PREFIX=&#8221;clone&#8221;;<br />
PATH_2_VMX_PREFIX=&#8221;/vmfs/volumes&#8221;;</p>
<p>###########################################<br />
# NetApp side<br />
#</p>
<p>#  Create Master Snapshot<br />
ssh $IP_NETAPP &#8220;snap create -V $MASTER_VOL_NAME $MASTER_SNAPSHOT_NAME&#8221;</p>
<p>i=&#8221;0&#8243;<br />
while (( $i &lt; $NB_CLONE )); do</p>
<p>        #  Clone from Master Snapshot<br />
        CLONE_VOL_NAME=&#8221;$CLONE_VOL_NAME$i&#8221;;<br />
	  ssh $IP_NETAPP &#8220;vol clone create $CLONE_VOL_NAME -b $MASTER_VOL_NAME $MASTER_SNAPSHOT_NAME&#8221;;</p>
<p>	  # Set the Snapshot Scheduler to 0<br />
	  ssh $IP_NETAPP &#8220;snap sched $CLONE_VOL_NAME 0&#8243;;<br />
	  #  Map Cloned Lun<br />
        CLONED_LUN_PATH=&#8221;/vol/$CLONE_VOL_NAME/lun0&#8243;;<br />
        ID_CLONED_LUN=$((i+1));<br />
        ssh $IP_NETAPP &#8220;lun map $CLONED_LUN_PATH $IGROUP_NAME $ID_CLONED_LUN&#8221;;</p>
<p>        #  Bring Cloned Lun Online<br />
        ssh $IP_NETAPP &#8220;lun online $CLONED_LUN_PATH&#8221;;</p>
<p>        i=$((i+1));<br />
done</p>
<p>###########################################<br />
#  ESX side<br />
#</p>
<p>#  Enable LVM resignature<br />
/usr/sbin/esxcfg-advcfg -s 1 /LVM/EnableResignature</p>
<p>#  Rescan Storage Adapters<br />
for HBA in `vmware-vim-cmd hostsvc/summary/hba | grep vmhba | awk &#8216;{print $1}&#8217;`; do<br />
	vmware-vim-cmd hostsvc/storage/hba_rescan $HBA<br />
done</p>
<p># Refresh Storage<br />
vmware-vim-cmd hostsvc/storage/refresh</p>
<p># Set Cloned Datastore&#8217;s name<br />
vmware-vim-cmd hostsvc/datastore/listsummary | egrep name | awk -F\&#8221; &#8216;{print $2}&#8217;<br />
echo &#8220;Nom du (des) datastore(s) clone(s)&#8221;<br />
read DATASTORE_CLONED_NAME</p>
<p>#  Change Cloned Datastore&#8217;s Name &amp; Register the Cloned VM inside<br />
i=0<br />
while (( $i &lt; $NB_CLONE )); do<br />
	DATASTORE_NEW_NAME=&#8221;$DATASTORE_NEW_NAME_PREFIX$i&#8221;;<br />
	NEW_VM_NAME=&#8221;$NEW_VM_NAME_PREFIX$i&#8221;;<br />
	PATH_2_VMX=&#8221;$PATH_2_VMX/$DATASTORE_NEW_NAME/$MASTER_VM_NAME/$MASTER_VM_NAME.vmx&#8221;;<br />
	vmware-vim-cmd hostsvc/datastore/rename $DATASTORE_CLONED_NAME $DATASTORE_NEW_NAME;<br />
	vmware-vim-cmd solo/registervm $PATH_2_VMX_PREFIX $NEW_VM_NAME $NEW_RESSOURCE_POOL;<br />
	i=$((i+1));<br />
done</p>
<p>#  Disable LVM resignature<br />
/usr/sbin/esxcfg-advcfg -s 0 /LVM/EnableResignature</p>
<p>sorry for the french comments.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chauncey Willard</title>
		<link>http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/comment-page-1/#comment-42385</link>
		<dc:creator>Chauncey Willard</dc:creator>
		<pubDate>Thu, 13 Nov 2008 17:12:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/#comment-42385</guid>
		<description>Scott, in your original post, you mentioned creating a script to register all .vmx that exists on a datastore.
I wrote this one for a client and use it often:

#!/bin/bash
# this script registers every virtual machine found
# on this server. By Chauncey Willard
# Run this on each ESX hosts at the remote site

# rescan the scsi bus to find new luns
esxcfg-rescan vmhba32

# create a text file that lists all files that end with .vmx
# which should be all virtual machines
cd /
find -name *.vmx &gt;/home/all_vmxs.txt

# While loop that runs through every line of the file created above
cat /home/all_vmxs.txt &#124; while read LINE

do
# registers each virtual machine with VC
/usr/bin/vmware-cmd -s register $LINE
done


That's it. Works fine. tested many times. Chauncey</description>
		<content:encoded><![CDATA[<p>Scott, in your original post, you mentioned creating a script to register all .vmx that exists on a datastore.<br />
I wrote this one for a client and use it often:</p>
<p>#!/bin/bash<br />
# this script registers every virtual machine found<br />
# on this server. By Chauncey Willard<br />
# Run this on each ESX hosts at the remote site</p>
<p># rescan the scsi bus to find new luns<br />
esxcfg-rescan vmhba32</p>
<p># create a text file that lists all files that end with .vmx<br />
# which should be all virtual machines<br />
cd /<br />
find -name *.vmx &gt;/home/all_vmxs.txt</p>
<p># While loop that runs through every line of the file created above<br />
cat /home/all_vmxs.txt | while read LINE</p>
<p>do<br />
# registers each virtual machine with VC<br />
/usr/bin/vmware-cmd -s register $LINE<br />
done</p>
<p>That&#8217;s it. Works fine. tested many times. Chauncey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FlexClones or Deduplication? &#124; Storage Monkeys Blogs</title>
		<link>http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/comment-page-1/#comment-41297</link>
		<dc:creator>FlexClones or Deduplication? &#124; Storage Monkeys Blogs</dc:creator>
		<pubDate>Wed, 10 Sep 2008 03:01:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/#comment-41297</guid>
		<description>[...] How to Provision VMs Using NetApp FlexClones NetApp FlexClones with VMware, Part 1 NetApp FlexClones with VMware, Part 2 LUN Clones vs. FlexClones [...]</description>
		<content:encoded><![CDATA[<p>[...] How to Provision VMs Using NetApp FlexClones NetApp FlexClones with VMware, Part 1 NetApp FlexClones with VMware, Part 2 LUN Clones vs. FlexClones [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: FlexClones Versus Deduplication with VMware Infrastructure - blog.scottlowe.org - The weblog of an IT pro specializing in virtualization, storage, and servers</title>
		<link>http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/comment-page-1/#comment-40325</link>
		<dc:creator>FlexClones Versus Deduplication with VMware Infrastructure - blog.scottlowe.org - The weblog of an IT pro specializing in virtualization, storage, and servers</dc:creator>
		<pubDate>Tue, 05 Aug 2008 15:42:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/#comment-40325</guid>
		<description>[...] How to Provision VMs Using NetApp FlexClones NetApp FlexClones with VMware, Part 1 NetApp FlexClones with VMware, Part 2 LUN Clones vs. FlexClones [...]</description>
		<content:encoded><![CDATA[<p>[...] How to Provision VMs Using NetApp FlexClones NetApp FlexClones with VMware, Part 1 NetApp FlexClones with VMware, Part 2 LUN Clones vs. FlexClones [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: slowe</title>
		<link>http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/comment-page-1/#comment-36678</link>
		<dc:creator>slowe</dc:creator>
		<pubDate>Sat, 29 Mar 2008 15:29:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/#comment-36678</guid>
		<description>Andy,

Excellent point, you are absolutely correct. I will revise the article to suggest setting LVM.EnableResignature back to 0 after this process is complete. Thanks!</description>
		<content:encoded><![CDATA[<p>Andy,</p>
<p>Excellent point, you are absolutely correct. I will revise the article to suggest setting LVM.EnableResignature back to 0 after this process is complete. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Archer</title>
		<link>http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/comment-page-1/#comment-36676</link>
		<dc:creator>Andy Archer</dc:creator>
		<pubDate>Sat, 29 Mar 2008 08:54:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/#comment-36676</guid>
		<description>I think it would make sense to add to here that LVM.EnableResignature set to 1 is probably not a good setting for long term use in case it unintentionally resigns VMFSs in the future. I would advocate resetting LVM.EnableResignature to 0 once the LUN in question has been resigned.</description>
		<content:encoded><![CDATA[<p>I think it would make sense to add to here that LVM.EnableResignature set to 1 is probably not a good setting for long term use in case it unintentionally resigns VMFSs in the future. I would advocate resetting LVM.EnableResignature to 0 once the LUN in question has been resigned.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Zimmerman</title>
		<link>http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/comment-page-1/#comment-32451</link>
		<dc:creator>Mike Zimmerman</dc:creator>
		<pubDate>Mon, 18 Jun 2007 12:52:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/#comment-32451</guid>
		<description>Thanks!
It looks like the gold LUN I used to create the clones wasn't made as a VMFS dayastore afterall so I am going back and creating my own "gold" LUN. Thanks again for your help and your quick replies!!

Mike</description>
		<content:encoded><![CDATA[<p>Thanks!<br />
It looks like the gold LUN I used to create the clones wasn&#8217;t made as a VMFS dayastore afterall so I am going back and creating my own &#8220;gold&#8221; LUN. Thanks again for your help and your quick replies!!</p>
<p>Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: slowe</title>
		<link>http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/comment-page-1/#comment-32437</link>
		<dc:creator>slowe</dc:creator>
		<pubDate>Mon, 18 Jun 2007 02:20:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/#comment-32437</guid>
		<description>Mike,

If you are using FlexClones and the clones are of FlexVols containing LUNs that were formatted as VMFS datastores, then enabling the LVM.EnableResignaturing option (setting it to 1) would be required.  Also, keep in mind that the LUNs in the cloned volumes will, by default, be offline and will need to be remapped and put back online again in order for hosts to see them.  Because they can't be remapped into the igroup with the same LUN ID, they'll have to be presented back as a different LUN ID, and that's where resignaturing comes in.  Check to make sure the LUNs in the cloned FlexVols are mapped and online.

And no, there is no way to use "Add Storage" without reformatting the LUN.  If the LUN was already created as a VMFS datastore, then the resignaturing option should take care of it.

Good luck!</description>
		<content:encoded><![CDATA[<p>Mike,</p>
<p>If you are using FlexClones and the clones are of FlexVols containing LUNs that were formatted as VMFS datastores, then enabling the LVM.EnableResignaturing option (setting it to 1) would be required.  Also, keep in mind that the LUNs in the cloned volumes will, by default, be offline and will need to be remapped and put back online again in order for hosts to see them.  Because they can&#8217;t be remapped into the igroup with the same LUN ID, they&#8217;ll have to be presented back as a different LUN ID, and that&#8217;s where resignaturing comes in.  Check to make sure the LUNs in the cloned FlexVols are mapped and online.</p>
<p>And no, there is no way to use &#8220;Add Storage&#8221; without reformatting the LUN.  If the LUN was already created as a VMFS datastore, then the resignaturing option should take care of it.</p>
<p>Good luck!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Zimmerman</title>
		<link>http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/comment-page-1/#comment-32436</link>
		<dc:creator>Mike Zimmerman</dc:creator>
		<pubDate>Mon, 18 Jun 2007 02:10:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/#comment-32436</guid>
		<description>OK, that makes sense. Thanks for the advice! I actually am using Flexcones for the vm LUN's, but it looks like the LUN that I cloned wasn't created as a VMFS datastore. I am probably going to see if I can find another LUN that has been created as a VMFS datastore and clone it, or make my own rhel4 vm LUN and then clone it. Is there a way to use the "Add Storage" option without a loss of data on the LUN?

Thanks,
Mike</description>
		<content:encoded><![CDATA[<p>OK, that makes sense. Thanks for the advice! I actually am using Flexcones for the vm LUN&#8217;s, but it looks like the LUN that I cloned wasn&#8217;t created as a VMFS datastore. I am probably going to see if I can find another LUN that has been created as a VMFS datastore and clone it, or make my own rhel4 vm LUN and then clone it. Is there a way to use the &#8220;Add Storage&#8221; option without a loss of data on the LUN?</p>
<p>Thanks,<br />
Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: slowe</title>
		<link>http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/comment-page-1/#comment-32420</link>
		<dc:creator>slowe</dc:creator>
		<pubDate>Sat, 16 Jun 2007 03:09:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.scottlowe.org/2007/05/11/how-to-provision-vms-using-netapp-flexclones/#comment-32420</guid>
		<description>Mike!  Good to hear from you.

It sounds to me like you just need to create VMFS datastores on the other LUNs.  The Storage section of the Configuration tab only shows you configured VMFS datastores.  Try using the "Add Storage..." link up in the corner to add VMFS datastores on the other LUNs (which are already being recognized and listed in the Storage Adapters section).

Setting LVM.EnableResignature to 1 isn't needed in this instance.  It's only necessary if you are going to take a Snapshot of one of the volumes, then create a FlexClone of that volume and re-present that back to the ESX servers with a different LUN ID.

Hope this helps!</description>
		<content:encoded><![CDATA[<p>Mike!  Good to hear from you.</p>
<p>It sounds to me like you just need to create VMFS datastores on the other LUNs.  The Storage section of the Configuration tab only shows you configured VMFS datastores.  Try using the &#8220;Add Storage&#8230;&#8221; link up in the corner to add VMFS datastores on the other LUNs (which are already being recognized and listed in the Storage Adapters section).</p>
<p>Setting LVM.EnableResignature to 1 isn&#8217;t needed in this instance.  It&#8217;s only necessary if you are going to take a Snapshot of one of the volumes, then create a FlexClone of that volume and re-present that back to the ESX servers with a different LUN ID.</p>
<p>Hope this helps!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
