@@ -218,6 +218,52 @@ Router(config-router)# network 20.0.0.0 mask 255.0.0.0
218218Router(config-router)# neighbor 20.0.0.2 remote-as 200
219219```
220220
221+ ## Etherchannel
222+ Alta disponibilidad de enlaces.
223+ Uno es active(activo) y otro pasive(pasivo)
224+
225+ Configuración manual
226+ ```
227+ Switch1# configure terminal
228+ Switch1(config)# interface range gi0/1 - 4
229+ Switch1(config-if-range)# channel-group 1 mode on
230+ Switch1(config-if-range)# exit
231+ ```
232+ Configuracion automática
233+ ```
234+ Switch# configure terminal
235+ Switch1(config)# interface range gi0/1 - 4
236+ Switch1(config-if-range)# channel-group 1 mode on
237+ Switch1(config-if-range)# exit
238+ Switch1(config)# interface port-channel 1
239+ Switch1(config-if)# switchport mode trunk
240+ #Esto no es requerido salvo que se trabaje con vlans
241+ Switch1(config-if)# switchport trunk allowed vlan 1-2
242+ Switch1(config-if)# exit
243+ ```
244+ Información etherchannel
245+ ```
246+ Switch1(config)#show etherchannel port-channel
247+ ```
248+
249+ ### PAGP
250+ Se configura lo mismo en ambos switches cambiando unicamente el tipo de cada uno.
251+ ` auto ` (activo) encargado de iniciar la conexión, ` desirable ` (pasivo) a la espera de conexión
252+ ```
253+ Switch1(config)# interface range fa0/3-5
254+ Switch1(config-if-range)# channel-protocol pagp
255+ Switch1(config-if-range)# channel-group 1 mode desirable
256+ ```
257+
258+ ### LACP
259+ Se configura lo mismo en ambos switches cambiando unicamente el tipo de cada uno.
260+ ` active ` (activo) encargado de iniciar la conexión, ` passive ` (pasivo) a la espera de conexión
261+ ```
262+ interface range fa0/3-5
263+ channel-protocol lacp
264+ channel-group 1 mode active
265+ ```
266+
221267## Direccionamiento por MAC
222268Memorización de equipos meidante MAC:
223269```
0 commit comments