Skip to content

Commit 8c0206b

Browse files
committed
Actualización Etherchannel
1 parent 5eb26be commit 8c0206b

File tree

2 files changed

+46
-1
lines changed

2 files changed

+46
-1
lines changed

examen_imprimir/apuntes.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,52 @@ Router(config-router)# network 20.0.0.0 mask 255.0.0.0
218218
Router(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
222268
Memorización de equipos meidante MAC:
223269
```

routing/dynamic/ospf/theory.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ Switch# configure terminal
5555
Switch(config)# interface range FastEthernet0/1 - 3
5656
Switch(config-if-range)# switchport mode trunk
5757
Switch(config-if-range)# exit
58-
Switch(config)#
5958
```
6059

6160
## Paso 5: Mostrar Vlans en el servidor

0 commit comments

Comments
 (0)