viernes, 28 de noviembre de 2008

CCNA Etherchannel

CCNA Etherchannel:
Algo que debemos saber configurar para el CCNA es el por Cisco llamado Etherchannel, como es bien sabido Cisco genera sus propios protocolos y también trabaja bajo los estandares, en este caso el propietario es denominado PAgP y el estandar bajo IEEE802.3ad denominado LACP y nos sirve para crear redundancia entre switches o servidores y también para incrementar el ancho de banda de conexiones entre switches o servidores, aquí un ejemplo entre 2 catalyst 4500 utilizando PAgP:

Creamos la interface port-channel
Switch# configure terminal
Switch(config)# interface port-channel 1
Switch(config-if)# ip address 172.32.52.10 255.255.255.0
Switch(config-if)# end
Verificamos la configuración de la interface creada:

Switch# show running-config interface port-channel 1
Building configuration...
Current configuration:
!
interface Port-channel1
ip address 172.32.52.10 255.255.255.0
no ip directed-broadcast
end
Switch#
Configuramos las interfaces 5/4 y 5/5 agregandolas al port-channel 1 con PAgP en modo desirable:

Switch# configure terminal
Switch(config)# interface range fastethernet 5/4 - 5 (Note: Space is mandatory.)
Switch(config-if)# no switchport
Switch(config-if)# no ip address
Switch(config-if)# channel-group 1 mode desirable
Switch(config-if)# end

Verificamos la configuración de una de las interfaces FaE.

Switch# show running-config interface fastethernet 5/4
Building configuration...
Current configuration:
!
interface FastEthernet5/4
no ip address
no switchport
no ip directed-broadcast
channel-group 1 mode desirable
end
Switch# show interfaces fastethernet 5/4 etherchannel
Port state = EC-Enbld Up In-Bndl Usr-Config
Channel group = 1 Mode = Desirable Gcchange = 0
Port-channel = Po1 GC = 0x00010001 Pseudo-port-channel = Po1
Port indx = 0 Load = 0x55
Flags: S - Device is sending Slow hello. C - Device is in Consistent state.
A - Device is in Auto mode. P - Device learns on physical port.
Timers: H - Hello timer is running. Q - Quit timer is running.
S - Switching timer is running. I - Interface timer is running.
Local information:
Hello Partner PAgP Learning Group
Port Flags State Timers Interval Count Priority Method Ifindex
Fa5/4 SC U6/S7 30s 1 128 Any 55
Partner's information:
Partner Partner Partner Partner Group
Port Name Device ID Port Age Flags Cap.
Fa5/4 JAB031301 0050.0f10.230c 2/45 1s SAC 2D
Age of the port in the current state: 00h:54m:52s
Switch#

Ahora verificamos la configuración de nuestro Etherchannel

Switch# show etherchannel 1 port-channel
Channel-group listing:
----------------------
Group: 1
------------
Port-channels in the group:
----------------------
Port-channel: Po1
------------
Age of the Port-channel = 00h:06m:20s
Logical slot/port = 10/1 Number of ports = 2
GC = 0x00010001 HotStandBy port = null
Port state = Port-channel L3-Ag Ag-Inuse
Ports in the Port-channel:
Index Load Port
-------------------
1 00      Fa5/4
0 00      Fa5/5
Time since last port bundled: 00h:23m:33s Fa5/6
Switch#

Esto lo debemos hacer de igual manera en el otro extremo.



Méndez

No hay comentarios: