Ads

Searching...

Ads

Thursday, May 10, 2012

Brocade Configuration Using CLI

May 10, 2012

Brocade Configuration Using CLI
    Configure A Zone containing Ports 12, 14 and 15 using   Command Line Interface   of Brocade
     Login

    switchshow

    zonecreate "sw1zone1", "1,12; 1,14; 1,15"

    cfgcreate "sw1cfg1", "sw1zone1"

    cfgenable "sw1cfg1"

    reboot


    Zones
    Zone has two memory areas
    Effective Zone
    Config Zone

    You make changes to the the Config Zone and then
    use cfgenable to place changes into the
    Effective Zone

    zoneshow
    show the current zones

    zonehelp
    help on the various zone commands


    zoneadd
    add switch ports to a particular Zone

    these two add ports 8 and 15 on   Switch 1  
    to the   disk   Zone

    zoneadd "disk", "1,15";
    zoneadd "disk", "1,8";

    these two add ports 4 and 5 on   Switch 1  
    to the   host   Zone

    zoneadd "host", "1,4";
    zoneadd "host", "1,5";

    zoneremove
    remove ports from a zone

    these two remove ports 7 and 8 on   Switch 1  
    from the   host   Zone

    zoneremove "host", "1,7";
    zoneremove "host", "1,8";


    cfgsave
    to save changes you make to the Zone Configuration

    cfgenable
    make the saved config changes effective immediately

    Must give the name of the Config in double quotes

    cfgenable "st3wa02bz"
    double quotes are needed


    cfgshow
    display the current Zones

0 comments:

Post a Comment

Ads