miércoles, 27 de noviembre de 2013

Etherchannel

Etherchannel 
es una tecnología que toma 2 switches y hace un enlace entre ellos, para conmutar la señal que pasa a traves de ellos y agrandar la velocidad de comunicación 2, 4 y hasta 8 veces, creando asi un canal de alta velocidad y balanceando la carga de comunicación.
Primero  usamos 2 switches que se van a mandar la información entre ellos, y hacemos 2 enlaces de cable cruzado entre ellos.
Haciendo el link entre los 2 switches
Ingresamos a la configuración de nuestro primer switch y damos los comandos abajo descritos.  Para esto hacemos click sobre nuestro switch, nos pasamos a la lengueta de CLI y presionamos enter y luego ingresamos los comandos:
Switch>enable
Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#spanning-tree mode rapid-pvst
Switch(config)#spanning-tree portfast default
Switch(config)#exit

%SYS-5-CONFIG_I: Configured from console by console
Switch#
 Luego juntamos esto con 2 routers, uno de cada lado o uno a cada switch por asi decirlo; ya que esta nueva configuracion de los switches se conoce como multi-layer-switch.
los router conectados a cada extremo del multi-layered switch
 Con sh spanning-tree  o show spanning-tree procedemos a ver la vlan que se configuro dentro de nuestro multi-layered-switch.
Switch#show spanning-tree
VLAN0001
  Spanning tree enabled protocol rstp
  Root ID    Priority    32769
             Address     0001.4391.C03E
             This bridge is the root
             Hello Time  2 sec  Max Age 20 sec  Forward Delay 15 sec

  Bridge ID  Priority    32769  (priority 32768 sys-id-ext 1)
             Address     0001.4391.C03E
             Hello Time  2 sec  Max Age 20 sec  Forward Delay 15 sec
             Aging Time  20

Interface        Role Sts Cost      Prio.Nbr Type
---------------- ---- --- --------- -------- --------------------------------
Fa0/1            Desg FWD 19        128.1    P2p
Fa0/2            Desg FWD 19        128.2    P2p

Switch#
Configuramos ambos switches de la misma manera, creando el canal en el rango de los puertos donde hicimos el etherchannel físicamente.
Switch>enable
Switch#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Switch(config)#int port
Switch(config)#int port-channel 1
Switch(config-if)#switchport mode trunk
Switch(config-if)#exit
Switch(config)#int ran f0/1-2
Switch(config-if-range)#channel-group 1 mode auto

%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/2, changed state to up
Switch(config-if-range)#exit
Switch(config)#
Con esto realizado, tenemos que tener en cuenta que el rango de interfaces debe ser donde pusimos nuestros cables cruzados, en este caso, la f0/1 y 2.
Con show etherchannel miramos la configuracion que realizamos del canal.
Switch#show etherchannel
                Channel-group listing:
                ----------------------

Group: 1
----------
Group state = L2
Ports: 2 Maxports = 8
Port-channels: 1 Max Portchannels = 1
Protocol:   PAGP
Switch#
Ahora que tenemos nuestro etherchannel arriba, vamos a configurar los routers con sus respectivas direcciones IP.
Router>enable
Router#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Router(config)#int f0/0
Router(config-if)#no shut
%LINK-5-CHANGED: Interface FastEthernet0/0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface FastEthernet0/0, changed state to up
Router(config-if)#ip add 10.10.0.1 255.255.255.0
Router(config-if)#exit
Teniendo cuidado de cambiar la IP en el segundo router.
Terminamos haciendo un ping entre routers para verificar la velocidad de conexion entre ellos.
Router#ping 10.10.0.2

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 10.10.0.2, timeout is 2 seconds:
.!!!!
Success rate is 80 percent (4/5), round-trip min/avg/max = 5/10/14 ms

Router#
Y asi se miraria nuestra configuracion del etherchannel en Packet tracer:
Resultado final

Beneficios 

-Ethernet channel nos da el beneficio de brindar mucha mas velocidad a nuestra red
-en nuestra red va haber balanceo de cargas

ENRUTAMIENTO EIGRP

Enrutamiento EIGRP

EIGRP entra en la clasificación de protocolos vector distancia aunque tenga algunas características de los que son estado de enlace.

Para calcular la métrica utiliza el retardo del enlace, la confiabilidad, la carga, el costo  y el ancho de banda. La diferencia con la configuración de RIP es que EIGRP al ingresar el comando router EIRGP lleva un ID de proceso o un numero de sistema autónomo.


Paso a Paso de EIGRP

1) Primero que todo debemos tener una topología


2) Luego abrimos de el CLI del R1

Ingresamos los siguientes comandos:
R1>enable
R1#config te
R1(config)#route eigrp 100
R1(config-router)#net 172.16.0.0 0.0.3.255
R1(config-router)#net 10.0.0.0
R1(config-router)#net 13.0.0.0
R1(config-router)#no auto-summary


3)Luego abrimos el CLI del R2



Y ingresamos los siguientes comandos:
R2>enable
R2#configure
R2(config)#route eigrp 100
R2(config-router)#net 172.16.6.0 0.0.3.255
R2(config-router)#net 10.0.0.0
R2(config-router)#net 11.0.0.0
R2(config-router)#no auto-summary


4) Luego abrimos el CLI del R3


Y ingresamos los siguientes comandos:
R3>enable
R3#configure t
R3(config)#route eigrp 100
R3(config-router)#net 172.16.8.0 0.0.3.255
R3(config-router)#net 11.0.0.0
R3(config-router)#net 12.0.0.0
R3(config-router)#no auto-summary


5) Luego abrimos el CLI del R4



Y ingresamos los siguientes comandos:
R4>enable
R4#configure
R4(config)#route eigrp 100
R4(config-router)#net 172.16.4.0 0.0.3.255
R4(config-router)#net 12.0.0.0
R4(config-router)#net 13.0.0.0
R4(config-router)#no auto-summary


Esos son los pasos  a seguir, al finalizar la topologia nos debe de dar exitosa, ya todo nos tiene que dac conectividad al hacer ping nos debe de dar exitoso



Esto seria todo para la elaboración de el enrutamiento EIGRP


Comandos Utilizados
Router(config)#router eigrp 100                          // El 100 es el numero de id de proceso o siste   autónomo
Router(config-router)#network [IP DE RED]
Router(config-router)#no auto-summary
Router(config-router)#exit