cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
352
Views
0
Helpful
2
Replies

creating san-port-channel on 6248 using CLI

shyam.hazari
Level 1
Level 1

I can create the san port channel using UCS manager. But I would like to know the syntax using CLI. So far I was able to figure out the following. One thing missing was moving the port channel from the default VSAN(1) to a different VSAN i.e VSAN 10 in my case. I have looked at the CLI guide, but have not found the commands syntax. Appreciate if anyone can post the syntax

 

### Create Port Channel ###
scope fc-uplink
scope fabric a
create port-channel 1
enable
set name port-channel-1
set adminspeed auto
commit-buffer
end
 
### Add interfaces to Port Channel ###
scope fc-uplink
scope fabric a
scope port-channel 1
create member-port 1 29
exit
create member-port 1 30
commit-buffer
end
1 Accepted Solution

Accepted Solutions

Walter Dey
VIP Alumni
VIP Alumni

I would do reverse Engineering

1) use UCS Manager to do it

2) check the result: ssh to FI, and do "show configuration"

I assume you are in FC EHM (NPV); therefore if you connect to a MDS/N5k, you should enable F-Port-Trunking-Channeling

Must look similar to

scope fabric a

         enter vsan 1234 1234 1234
             set fc-zoning disabled
             set fcoe-vlan 1234
             set id 1234
             enter member-port a 1 35
             exit
             enter member-port a 1 36
             exit
             enter member-port a 1 37
             exit
             enter member-port a 1 38
             exit
             enter member-port-channel a 111
             exit
             localize
         exit

 

View solution in original post

2 Replies 2

Walter Dey
VIP Alumni
VIP Alumni

I would do reverse Engineering

1) use UCS Manager to do it

2) check the result: ssh to FI, and do "show configuration"

I assume you are in FC EHM (NPV); therefore if you connect to a MDS/N5k, you should enable F-Port-Trunking-Channeling

Must look similar to

scope fabric a

         enter vsan 1234 1234 1234
             set fc-zoning disabled
             set fcoe-vlan 1234
             set id 1234
             enter member-port a 1 35
             exit
             enter member-port a 1 36
             exit
             enter member-port a 1 37
             exit
             enter member-port a 1 38
             exit
             enter member-port-channel a 111
             exit
             localize
         exit

 

Thanx Wdey. That's exactly what I was looking for. Here is the syntax which works for me.

 

scope fc-uplink
    scope fabric a
        create port-channel 1
        enable
        set name port-channel-1
        set adminspeed auto
    commit-buffer
end
 
scope fc-uplink
    scope fabric a
        enter port-channel 1
            enable
            enter member-port 1 29
            enable
            exit
            enter member-port 1 30
            enable
            exit
            set adminspeed auto
        exit
        enter vsan VSAN10 10 10
            set fc-zoning disabled
            set fcoe-vlan 10
            set id 10
            enter member-port-channel a 1
            exit
            localize
         exit
     end
commit-buffer