- Community Home
- >
- Storage
- >
- Midrange and Enterprise Storage
- >
- HPE EVA Storage
- >
- CLI Command line to add an Alias to a Brocade Fibr...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2008 06:13 PM
03-27-2008 06:13 PM
I have a new server need to be part of the zone on this Brocade Fibre Switch. I do have the WWN for the new HBA Adapter. I just need to know how much add this WWN to an existing zone by command line. Step by step instructions would greatly appreciate it.
Have a great day!!
Jorge
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2008 11:11 PM
03-27-2008 11:11 PM
Solution> alicreate "SERVER3_1","12:34:56:.."
Add this alias to a zone:
> zoneadd "ZoneName","SERVER3_1"
You can check it with:
> cfgshow
It will also show the configuration name(s) and which one is effective (in use) - you'll need it later.
You can save it away and let it check for inconsistencies:
> cfgsave
Or immediately active the updated configuration:
> cfgenable "config-name"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-27-2008 11:13 PM
03-27-2008 11:13 PM
Re: CLI Command line to add an Alias to a Brocade Fibre Switch
the commands are as follows:
alicreate "aliasname", "WWN"
then if you are creating a new zone:
zonecreate "zonename", "aliasname1, aliasname2, aliasname3"
cfgadd "cfgname", "zonename"
or if you are adding the alias to an existing zone:
zoneadd "zonename", "alias-to-be-added"
then for either case you need to save and enable the config.
cfgsave
cfgenable "cfgname"
Replace aliasname, zonename and cfgname with the names you want to use. The cfgname already exists in your current zoning setup.
Regards,
Stephen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2008 09:33 AM
03-28-2008 09:33 AM
Re: CLI Command line to add an Alias to a Brocade Fibre Switch
Have a great weekend.
Jorge
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-28-2008 09:35 AM
03-28-2008 09:35 AM
Re: CLI Command line to add an Alias to a Brocade Fibre Switch
Jorge