Link to home
Start Free TrialLog in
Avatar of leblanc
leblanc

asked on

port-channel change failed

I am trying to reconfigure from channel-group 10 to 20 under my interface e/10 on my 2 5Ks running VPC. Below is what I'd like to accomplish. I did the CONFIG SYNCH->SWITCH-PROFILE NAME_SWITCH, then did the "no channel-group 10 mode active" and "channel-group 20 mode active". It failed when I committed it. Any thoughts? Thanks

EXISTING:      
interface e1/10
  switchport mode trunk
  switchport trunk allowed vlan 12,13
  channel-group 10 mode active

DESIRED:
interface e1/10
  switchport mode trunk
  switchport trunk allowed vlan 12,13
  channel-group 20 mode active
ASKER CERTIFIED SOLUTION
Avatar of Marty Lopez
Marty Lopez
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of atlas_shuddered
As a general rule I would run:

conf t
default int e1/10
interface e1/10
  channel-group 20 mode active
interface po20
  switchport mode trunk
  switchport trunk allowed vlan 12,13 

Open in new window