Création LUN sur NetApp

In this 5 part series, we:
Part 1: Configure iSCSI on Clustered Data ONTAP
Part 2: Set up Windows Server 2012 with iSCSI and MPIO, NetApp Host Utilities, NetApp DSM for MPIO
Part 3: How to install NetApp SnapDrive for Windows 7.0
Part 4: Use NetApp SnapDrive for Windows to create a disk and attach via iSCSI
Part 5: Use the NetApp Data ONTAP DSM to manage paths and modify MPIO path policies

Part 1: How to configure iSCSI in Clustered Data ONTAP 8.2

All the below is done at the cluster prompt (which is nac1::> in this lab).

The following commands:
– Add required licenses
– Create a Vserver and allow for iscsi only
– Modify/setup Vserver login accounts
– Create a Vserver Management LIF
– Create 2 x iSCSI Data LIFs
– Create an iSCSI server
– Create a LUN Portset
– Create a volume

license add -license-code URNZKTJWOZNBBGXAGAAAAAAAAAAA #iscsi
license add -license-code MZVOPTJWOZNBBGXAGAAAAAAAAAAA #SnapManager (and SnapDrive) products
vserver create -vserver vs1 -rootvolume vs1_root -aggregate aggr1_nac1_01 -ns-switch file,nis -nm-switch file -rootvolume-security-style unix -language C.UTF-8 -snapshot-policy default
vserver modify -vserver vs1 -allowed-protocols iscsi
security login password -username vsadmin -vserver vs1
security login unlock -username vsadmin -vserver vs1
security login create -username snapdrive -application ontapi -authmethod password -role vsadmin -vserver vs1
net int create -vserver vs1 -lif vs1_admin -role data -data-protocol none -home-node nac1-01 -home-port e0a -address 192.168.168.55 -netmask 255.255.255.0 -failover-policy nextavail -firewall-policy mgmt
net int create -vserver vs1 -lif vs1_iscsi_1 -role data -data-protocol iscsi -home-node nac1-01 -home-port e0c -address 10.10.10.21 -netmask 255.255.255.0
net int create -vserver vs1 -lif vs1_iscsi_2 -role data -data-protocol iscsi -home-node nac1-01 -home-port e0d -address 10.10.10.22 -netmask 255.255.255.0
vserver iscsi create -vserver vs1 -target-alias vs1
lun portset create -vserver vs1 -portset vs1_iscsi_pset_1 -protocol iscsi -port-name vs1_iscsi_1,vs1_iscsi_2
vol create -vserver vs1 -volume vol1 -aggregate aggr2_nac1_01 -size 50g -space-guarantee none

 

Now we should have everything in place for SnapDrive to do its magic and create the iSCSI sessions, LUNs, igroups, and LUN maps!

 

SI VOUS N’AVEZ PAS LA BONNE LICENCE  -> vserver not found. Type ‘?’ for a list of commands

 

 

Vserver est la propriété de cluster data ontap. Vous pouvez utiliser vfiler en mode 7.

Créer une unité vFiler.

Vous pouvez créer une unité vFiler lorsque vous souhaitez partitionner les ressources de stockage et de réseau d’un seul système de stockage. Vous pouvez créer une unité vFiler en utilisant la commande vfiler create depuis l’interface de ligne de commande ou System Manager.

Vous devez avoir créé un espace IP pour une unité vFiler. Vous pouvez également utiliser l’espace IP par défaut.

Lorsque vous créez et associez une unité vFiler à l’espace IP utilisé par une unité vFiler arrêtée appartenant au même sous-réseau, les routes par défaut ou statiques sont migrées de l’unité vFiler arrêtée vers l’unité vFiler nouvellement créée.

Steps

  1. From the CLI, enter the following command:
    vfiler create vfiler_name [-s ipspace] -i ip_address [ -i ip_address ] ... path [ path ] ...

    vfiler_name is the name of the vFiler unit.

    ipspace is the IPspace the vFiler unit must belong to.

    ip_address is an IP address of the vFiler unit.

    path is the complete path name to an existing volume or qtree.

    The first path name is the storage unit that contains the /etc directory. The /etc directory contains the configuration information about the vFiler unit.

    Example

    The following command creates a vFiler unit with two IP addresses, one volume, and one qtree:

    vfiler create vfiler1 -i 123.123.123.123 -i 123.123.123.124 /vol/root_vfiler1
     
    You need to create a volume and use that volume as root volume for vfiler.

 

 

 

Source