Cisco: How to Zone with Device Alias method

Introduction

This article will discuss the following zoning scenarios: device-alias zoning with SAN (Storage Area Networking).

Prerequisites

Before you add a new zone you need to determine the following information:

  • What devices will you be zoning together?
  • What VSAN (Virtual Storage Area Network) will the new zone will belong to?
  • Is there an active zoneset? If so, what is the name of the zoneset?

Once the VSAN number has been established, you can check for an active zoneset with the following command:

switch#show zoneset active vsan X

Where X is the vsan number provided.

Example:

Adding zones for Host_A to talk to Target_1 and Target_2 to the active zoneset Zoneset_10 in vsan 10.

End DevicePWWN
Host_A21:01:00:e0:8b:39:a9:07
Target_121:00:00:20:37:af:a5:93
Target_221:00:00:20:37:af:a5:3d

Configuring Device-Alias

Below are the commands for configuring device-aliases

switch# conf t switch(config) 
switch(config)# device-alias database 
switch(config-device-alias-db)# device-alias name HOST pwwn 21:01:00:e0:8b:39:a9:07 
switch(config-device-alias-db)# device-alias name TARGET1 pwwn21:00:00:20:37:af:a5:93 
switch(config-device-alias-db)# device-alias name TARGET2 pwwn 21:00:00:20:37:af:a5:3d 
switch(config-device-alias-db)#exit switch(config)#device-alias commit

Adding zones

Below are the commands for adding zones to the zoneset.

switch# conf t
switch(config)# zoneset name Zoneset_10 vsan 10
switch(config-zoneset)# zone name Host_A-Target_1
switch(config-zoneset-zone)# member device-alias HOST
switch(config-zoneset-zone)# member device-alias TARGET1
switch(config-zoneset-zone)# zone name Host_A-Target_2
switch(config-zoneset-zone)# member device-alias HOST
switch(config-zoneset-zone)# member device-alias TARGET2
switch(config-zoneset-zone)# zone commit vsan 10
switch(config)# zoneset activate name Zoneset_10 vsan 10
switch(config)# zone commit vsan 10

Command explanation:

CommandExplanation
switch#conf tEnters configuration terminal
switch(config)# device-alias databaseEnteres Device-alias database configuration mode. Allows for the creation, deletion and modification of device-aliases
switch(config-device-alias-db)#device-alias name HOST pwwn 21:01:00:e0:8b:39:a9:07Assigns the device alias HOST to the pwwn 21:01:00:e0:8b:39:a9:07. A device-alias can only be mapped to 1 PWWN and a PWWN can only map to 1 device-alias. This is case sensitive.
switch(config-device-alias-db)#exitExits device-alias database configuration mode
switch(config)#device-alias commitCommits device-alias changed
switch(config)# zoneset name Zoneset_10 vsan 10Enters Zoneset configuration mode. Creates Zoneset_10 for vsan 10 if it does not exist
switch(config-zoneset)# zone name Host_A-Target_1Enters in-line Zone configuration mode. Creates zone Host_A-Target_1 in vsan 10 and as a member to Zoneset_10 if it does not exist
switch(config-zoneset-zone)# member device-alias HOSTAdd pwwn as a member of zone Host_A-Target_1
switch(config-zoneset-zone)# member device-alias TARGET1Add pwwn as a member of zone Host_A-Target_1
switch(config-zoneset-zone)# zone commit vsan 10Commits the changes made to the zones and zoneset in vsan 10. Used only if enhanced zoning is enabled
switch(config)# zoneset activate name Zoneset_10 vsan 10Sets the active zoneset as the currently configured Zoneset_10 in vsan 10. Note that only 1 zoneset can be active in a vsan at a time
switch(config)# zone commit vsan 10Commits the change made to the zoneset in vsan 10. This step is required in enhanced zoning mode after an activation in order for the new activation to occur

Check Also

Cisco: How to Zone with PWWN method

This article will give you step by step guide on how to do PWWN method zoning with SAN (Storage Area Networking).

Leave a Reply