jueves, 25 de noviembre de 2010

EIGRP (Enhanced Interior Gateway Routing Protocol)



EIGRP (Enhanced Interior Gateway Routing Protocol)

EIGRP (Protocolo de Enrutamiento de Gateway Interior Mejorado), protocolo mixto basado en IGRP, basado en una métrica de vector distancia, pero que manda actualizaciones de las entradas de las tablas que han cambiado por haber sido alterado el estado de alguna máquina de su red.

Contrariamente a RIP y a OSPF, que son estándares, este es un protocolo creado por CISCO que toma las ventajas de los dos primeros. En principio, la métrica de este protocolo es compuesta, ya que tiene en cuenta no sólo el ancho de banda, sino también la congestión, el delay y la confiabilidad de cada enlace.

Como mejora fundamental agrega, en el momento de calcular cada ruta, la posibilidad de calcular también una Ruta de Backup, de manera de poder utilizarla inmediatamente al enterarse de un cambio de topología o una caída. Esto le brinda una convergencia mucho más rápida que el OSPF.

Su desventaja es que, en principio, es un protocolo propietario, aunque esto podría llegar a ser un punto de discusión muy filosófico, porque en todo caso, cada vez es más difícil encontrar la frontera entre lo propietario y lo estándar (a nadie se le ocurriría decir que lo que proponga CISCO en materia de Redes sea algo a considerar como “no estándar”). De cualquier manera, al presente, el EIGRP ya posee varios RFCs (Request For Comments), que son los documentos iniciales mediante los cuales se estandarizan las reglas de la Internet.

Ventajas del EIGRP

Convergencia rápida. EIGRP usa Diffusing Update Algorithm (DUAL) para alcanzar rápida convergencia. Un router usando EIGRP almacena todas las posibles rutas de respaldo para el destino, de tal forma que puede adaptarse rápidamente a rutas alternativas. Si no hay una ruta apropiada o una ruta de respaldo en la tabla de routing local, EIGRP solicita a sus vecinos descubrir una ruta alternativa. EIGRP transmite esta solicitud hasta que encuentra una alternativa ruta.

Uso reducido del Ancho de Banda. EIGRP no realiza actualizaciones periódicas. En ves de eso, este envía una actualización parcial cual el camino o la métrica a cambiado para la ruta. Cuando la información de camino a cambiado, DUAL envía una actualización solo del enlace mas que la tabla entera. DUAL envía la info solo a los routers que lo requieren, en contraste al protocolo Link-State, el cual un update es transmitido a todos los routers Link-State dentro de un área.

Conectividad a través de todos los protocolos de capa de enlaces de datos y topologías. EIGRP no requiere configuración especial para trabajar con protocolos de capa 2. OSPF usa diferentes configuraciones para diferentes protocolos de capa 2, tal como Ethernet y Frame Relay. Comandos que son únicos en EIGRP te ayudan a limitar la cantidad de ancho de banda que EIGRP usas sobre enlaces WAN.

Configuración del protocolo EIGRP

Como se trata de un protocolo propietario que sólo es implementado en los routeres de Cisco es posible detallar aquí la forma de realizar una configuración básica de EIGRP.

1. Use lo siguiente para habilitar EIGRP y definir el sistema autónomo:

router(config)#router eigrp autonomous-system-number

El número de sistema autónomo se usa para identificar todos los routers que pertenecen a la internetwork. Este valor debe coincidir para todos los routers dentro de la internetwork.

2. Indique cuáles son las redes que pertenecen al sistema autónomo EIGRP en el router local mediante la siguiente orden:

router(config-router)#network network-number

Network-number es el número de red que determina cuáles son las interfaces del router que participan en EIGRP y cuáles son las redes publicadas por el router. La orden network configura sólo las redes conectadas. Por ejemplo, la red 3.1.0.0, que se encuentra en el extremo izquierdo de la Figura principal, no se encuentra directamente conectada al router A. Como consecuencia, esa red no forma parte de la configuración del Router A.

3. Al configurar los enlaces seriales mediante EIGRP, es importante configurar el valor del ancho de banda en la interfaz. Si el ancho de banda de estas interfaces no se modifica, EIGRP supone el ancho de banda por defecto en el enlace en lugar del verdadero ancho de banda. Si el enlace es más lento, es posible que el router no pueda converger, que se pierdan las actualizaciones de encaminamiento o se produzca una selección de rutas por debajo de la óptima. Para establecer el ancho de banda para la interfaz, aplique la siguiente sintaxis:

router(config-if)#bandwidth kilobits

Sólo el proceso de encaminamiento utiliza la orden bandwidth y es necesario configurar la orden para que coincida con la velocidad de línea de la interfaz. 4. Cisco también recomienda agregar la siguiente orden a todas las configuraciones EIGRP:

router(config-router)#eigrp log-neighbor-changes

Esta orden habilita el registro de los cambios de adyacencia de vecinos para monitorear la estabilidad del sistema de encaminamiento y para ayudar a detectar problemas.

PRACTICA 6 EIGRP (Enhanced Interior Gateway Routing Protocol)




CONFIGURACION EIGRP


TIJUANA


Press Enter to Start


Router>
Router>enable
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname tijuana
tijuana(config)#int e0
tijuana(config-if)#ip address 192.168.70.1
% Incomplete command.
tijuana(config-if)#ip address 192.168.70.1 255.255.255.0
tijuana(config-if)#no shut
%LINK-3-UPDOWN: Interface Ethernet0, changed state to up
tijuana(config-if)#exit
tijuana(config)#int s0
tijuana(config-if)#ip address 172.10.1.1 255.255.0.0
tijuana(config-if)#clock rate 64000
tijuana(config-if)#bandwidth 64
tijuana(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial0, changed state to up
tijuana(config-if)#exit
%LINK-3-UPDOWN: Interface Serial0, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to down
tijuana(config)#int s1
tijuana(config-if)#ip address 175.10.1.2 255.255.0.0
tijuana(config-if)#clock rate 64000
tijuana(config-if)#bandwidth 64
tijuana(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial1, changed state to up
tijuana(config-if)#exit
%LINK-3-UPDOWN: Interface Serial1, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to down
%LINK-3-UPDOWN: Interface Serial0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to up
%LINK-3-UPDOWN: Interface Serial1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to up
tijuana(config)#
tijuana(config)#router eigrp 100
tijuana(config-router)#network 192.168.70.1
tijuana(config-router)#network 172..10.1.1
% Invalid input detected at '^' marker.
tijuana(config-router)#network 172.10.1.1
tijuana(config-router)#network 175.10.1.2
tijuana(config-router)#exit
tijuana(config)#exit
tijuana#
tijuana#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default
U - per-user static route

Gateway of last resort is not set
C 192.168.70.0/24 is directly connected, Ethernet0
C 172.10.0.0/16 is directly connected, Serial0
C 175.10.0.0/16 is directly connected, Serial1
D 193.168.70.0/24 [90/1628160] via 172.10.1.2, 00:00:24, Serial0
D 173.10.0.0/16 [90/1628160] via 172.10.1.2, 00:00:33, Serial0
D 195.168.70.0/24 [90/1628160] via 175.10.1.1, 00:00:28, Serial1
D 174.10.0.0/16 [90/1628160] via 175.10.1.1, 00:00:48, Serial1
D 194.168.70.0/24 [90/2455040] via 175.10.1.1, 00:00:14, Serial1

tijuana#show protocols
Global values:
Internet Protocol routing is enabled
Serial0 is up, line protocol is up
Internet address is 172.10.1.1/16
Serial1 is up, line protocol is up
Internet address is 175.10.1.2/16
Ethernet0 is up, line protocol is up
Internet address is 192.168.70.1/24

tijuana#






OAXACA

Press Enter to Start


Router>
Router>enable
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname oaxaca
oaxaca(config)#int e0
oaxaca(config-if)#ip address 193.168.70.1 255.255.255.0
oaxaca(config-if)#no shut
%LINK-3-UPDOWN: Interface Ethernet0, changed state to up
oaxaca(config-if)#exit
oaxaca(config)#int s0
oaxaca(config-if)#ip address 172.10.1.2 255.255.0.0
oaxaca(config-if)#clock rate 64000
oaxaca(config-if)#bandwidth 64
oaxaca(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial0, changed state to up
oaxaca(config-if)#exit
oaxaca(config)#int s1
oaxaca(config-if)#ip address 173.10.1.1 255.255.0.0
oaxaca(config-if)#clock rate 64000
oaxaca(config-if)#bandwidth 64
oaxaca(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial1, changed state to up
oaxaca(config-if)#exit
%LINK-3-UPDOWN: Interface Serial1, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to down
%LINK-3-UPDOWN: Interface Serial1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to up
oaxaca(config)#router eigrp 100
oaxaca(config-router)#network 193.168.70.1
oaxaca(config-router)#network 172.10.1.2
oaxaca(config-router)#network 173.10.1.1
oaxaca(config-router)#exit
oaxaca(config)#exit
oaxaca#
oaxaca#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default
U - per-user static route

Gateway of last resort is not set
C 193.168.70.0/24 is directly connected, Ethernet0
C 172.10.0.0/16 is directly connected, Serial0
C 173.10.0.0/16 is directly connected, Serial1
D 192.168.70.0/24 [90/1628160] via 172.10.1.1, 00:00:27, Serial0
D 175.10.0.0/16 [90/1628160] via 172.10.1.1, 00:00:32, Serial0
D 194.168.70.0/24 [90/1628160] via 173.10.1.2, 00:00:17, Serial1
D 174.10.0.0/16 [90/1628160] via 173.10.1.2, 00:00:43, Serial1
D 195.168.70.0/24 [90/2455040] via 172.10.1.1, 00:00:51, Serial0

oaxaca#
oaxaca#show protocols
Global values:
Internet Protocol routing is enabled
Serial0 is up, line protocol is up
Internet address is 172.10.1.2/16
Serial1 is up, line protocol is up
Internet address is 173.10.1.1/16
Ethernet0 is up, line protocol is up
Internet address is 193.168.70.1/24

oaxaca#



VERACRUZ


Press Enter to Start


Router>
Router>enable
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname veracruz
veracruz(config)#int e0
veracruz(config-if)#ip address 194.168.70.1 255.255.255.0
veracruz(config-if)#no shut
%LINK-3-UPDOWN: Interface Ethernet0, changed state to up
veracruz(config-if)#exit
veracruz(config)#int s0
veracruz(config-if)#ip address 174.10.1.1 255.255.0.0
veracruz(config-if)#clock rate 64000
veracruz(config-if)#bandwidth 64
veracruz(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial0, changed state to up
veracruz(config-if)#exit
%LINK-3-UPDOWN: Interface Serial0, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to down
veracruz(config)#int s1
veracruz(config-if)#ip address 173.10.1.2 255.255.0.0
veracruz(config-if)#clock rate 64000
veracruz(config-if)#bandwidth 64
veracruz(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial1, changed state to up
veracruz(config-if)#exit
%LINK-3-UPDOWN: Interface Serial0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to up
veracruz(config)#
veracruz(config)#router eigrp 100
veracruz(config-router)#network 194.168.70.1
veracruz(config-router)#network 174.10.1.1
veracruz(config-router)#network 173.10.1.2
veracruz(config-router)#exit
veracruz(config)#exit
veracruz#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default
U - per-user static route

Gateway of last resort is not set
C 194.168.70.0/24 is directly connected, Ethernet0
C 173.10.0.0/16 is directly connected, Serial1
C 174.10.0.0/16 is directly connected, Serial0
D 193.168.70.0/24 [90/1628160] via 173.10.1.1, 00:00:50, Serial1
D 172.10.0.0/16 [90/1628160] via 173.10.1.1, 00:00:52, Serial1
D 195.168.70.0/24 [90/1628160] via 174.10.1.2, 00:00:12, Serial0
D 175.10.0.0/16 [90/1628160] via 174.10.1.2, 00:00:30, Serial0
D 192.168.70.0/24 [90/2455040] via 174.10.1.2, 00:00:47, Serial0

veracruz#
veracruz#show protocols
Global values:
Internet Protocol routing is enabled
Serial0 is up, line protocol is up
Internet address is 174.10.1.1/16
Serial1 is up, line protocol is up
Internet address is 173.10.1.2/16
Ethernet0 is up, line protocol is up
Internet address is 194.168.70.1/24



MONTERREY


Press Enter to Start


Router>
Router>enable
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname monterrey
monterrey(config)#int e0
monterrey(config-if)#ip address 195.168.70.1 255.255.255.0
monterrey(config-if)#no shut
%LINK-3-UPDOWN: Interface Ethernet0, changed state to up
monterrey(config-if)#exit
monterrey(config)#int s0
monterrey(config-if)#ip address 174.10.1.2 255.255.0.0
monterrey(config-if)#clock rate 64000
monterrey(config-if)#bandwidth 64
monterrey(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial0, changed state to up
monterrey(config-if)#exit
monterrey(config)#int s1
monterrey(config-if)#ip address 175.10.1.1 255.255.0.0
monterrey(config-if)#clcok rate 64000
% Invalid input detected at '^' marker.

monterrey(config-if)#clock rate 64000
monterrey(config-if)#bandwidth 64
monterrey(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial1, changed state to up
monterrey(config-if)#exit
monterrey(config)#router eigrp 100
monterrey(config-router)#network 195.168.70.1
monterrey(config-router)#network 174.10.1.2
monterrey(config-router)#network 175.10.1.1
monterrey(config-router)#exit
monterrey(config)#exit
monterrey#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default
U - per-user static route

Gateway of last resort is not set
C 195.168.70.0/24 is directly connected, Ethernet0
C 174.10.0.0/16 is directly connected, Serial0
C 175.10.0.0/16 is directly connected, Serial1
D 194.168.70.0/24 [90/1628160] via 174.10.1.1, 00:00:30, Serial0
D 173.10.0.0/16 [90/1628160] via 174.10.1.1, 00:00:51, Serial0
D 193.168.70.0/24 [90/2455040] via 174.10.1.1, 00:00:21, Serial0
D 172.10.0.0/16 [90/2455040] via 174.10.1.1, 00:00:49, Serial0
D 192.168.70.0/24 [90/2455040] via 174.10.1.1, 00:00:28, Serial0

monterrey#show protocols
Global values:
Internet Protocol routing is enabled
Serial0 is up, line protocol is up
Internet address is 174.10.1.2/16
Serial1 is up, line protocol is up
Internet address is 175.10.1.1/16
Ethernet0 is up, line protocol is up
Internet address is 195.168.70.1/24

monterrey#ping 192.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
monterrey#ping 192.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
monterrey#ping 194.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 194.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
monterrey#ping 193.168.70.1

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

IGRP (Protocolo de Enrutamiento de Gateway Interior)

IGRP (Protocolo de Enrutamiento de Gateway Interior)

IGRP (Protocolo de Enrutamiento de Gateway Interior), desarrollado por Cisco System, es un protocolo de enrutamiento por vector de distancia que usa una métrica compuesta basada en diferentes variables de red, como ancho de banda, unidades máximas de transmisión (MTU), confiabilidad, etc. Envía actualizaciones de las tablas de enrutamiento cada 90 segundos.

Fue diseñado para corregir algunos de los defectos de RIP y para proporcionar un mejor soporte para redes grande con enlaces de diferentes anchos de banda.

IGRP es un protocolo de enrutamiento basado en vectores de distancia desarrollado por CISCO, sus ventajas son:

Escalabilidad mejorada: Enrutamiento en redes m grandes, posee un nero mimo predeterminado de 100 saltos, aunque puede ser configurado con hasta 255 saltos.

Métrica sofisticada: Mrica compuesta que proporciona una mayor flexibilidad en la selección de rutas. Se usa el retraso de interconexión y el ancho de banda y se pueden incluir otros parámetros como la fiabilidad, la carga y la MTU.

Soporte de mtiples rutas: IGRP puede mantener hasta un máximo de seis rutas de coste diferente entre redes de origen y destino. Se pueden usar varias rutas para aumentar el ancho de banda disponible o para conseguir redundancia de rutas. IGRP permite actualizaciones desencadenadas.

Router(config)#router igrp 100
Router(config-router)#network 192.168.1.0
Router(config-router)#network 200.200.1.0
Router(config-router)#variance 2
<1-128> Metric variance multiplier
Router(config-router)#variance 2
Router(config-router)#traffic-share ?
balanced Share inversely proportional to metric
min All traffic shared among min metric paths

router igrp 100 especifica a IGRP como protocolo de enrutamiento para el sistema autónomo 100, este valor varia de 1 a 65535.

network específica las redes directamente conectadas al router que serán anunciadas por IGRP.


variance (opcional)configura el equilibrado de carga de coste desigual definiendo la diferencia entre la mrica tima y la peor mrica aceptable.

variance[multiplicador] (opcional)especifica el rango de valores de mrica que ser aceptadas para el equilibrado de la carga.

traffic-share[balanced|min] (opcional)controla la forma en que debe distribuirse el trafico entre rutas de comparaci de carga IGRP.

Balanced = El trafico se distribuye proporcionalmente a las relaciones entre las distintas mricas.

Min = Especifica que deben usarse las rutas de coste mimo.
A continuaci
se copia un show ip protocols, observe el tiempo de actualizaci (90segundos), las constantes K1 y K3 ancho de banda y retaso usadas por defecto como mrica, la cantidad de saltos por defecto 100, y tres redes asociadas.

PRACTICA 5 PROTOCOLO IGRP



ROUTER TIJUANA

Press Enter to Start


Router>
Router>enable
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname tijuana
tijuana(config)#int e0
tijuana(config-if)#ip address 192.168.70.1 255.255.255.0
tijuana(config-if)#no shut
%LINK-3-UPDOWN: Interface Ethernet0, changed state to up
tijuana(config-if)#exit
tijuana(config)#int s0
tijuana(config-if)#ip address 172.10.1.1 255.255.0.0
tijuana(config-if)#clock rate 64000
tijuana(config-if)#bandwidth 64
tijuana(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial0, changed state to up
tijuana(config-if)#exit
%LINK-3-UPDOWN: Interface Serial0, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to down
tijuana(config)#int s1
tijuana(config-if)#ip address 175.10.1.2 255.255.0.0
tijuana(config-if)#clock rate 64000
tijuana(config-if)#bandwith 64
% Invalid input detected at '^' marker.

tijuana(config-if)#bandwidth 64
tijuana(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial1, changed state to up
tijuana(config-if)#exit
%LINK-3-UPDOWN: Interface Serial1, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to down
tijuana(config)#router igrp 100
tijuana(config-router)#network 192.168.70.1
tijuana(config-router)#network 172.10.1.1
tijuana(config-router)#network 175.10.1.2
tijuana(config-router)#variance 2
% Invalid input detected at '^' marker.

tijuana(config-router)#variance2
% Invalid input detected at '^' marker.

tijuana(config-router)#variance
% Invalid input detected at '^' marker.

tijuana(config-router)#variance 2
% Invalid input detected at '^' marker.

tijuana(config-router)#exit
tijuana(config)#exit
%LINK-3-UPDOWN: Interface Serial0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to up
%LINK-3-UPDOWN: Interface Serial1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to up
tijuana#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default
U - per-user static route

Gateway of last resort is not set
C 192.168.70.0/24 is directly connected, Ethernet0
C 172.10.0.0/16 is directly connected, Serial0
I 193.168.70.0/24 [100/651] via 172.10.1.2, 00:06:32, Serial0
I 173.10.0.0/16 [100/651] via 172.10.1.2, 00:04:31, Serial0
C 175.10.0.0/16 is directly connected, Serial1
I 195.168.70.0/24 [100/651] via 175.10.1.1, 00:04:12, Serial1
I 174.10.0.0/16 [100/651] via 175.10.1.1, 00:02:20, Serial1
I 194.168.70.0/24 [100/1040] via 175.10.1.1, 00:02:29, Serial1

tijuana#ping 194.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 194.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
tijuana#ping 195.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 195.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
tijuana#ping 193.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 193.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
tijuana#show ip protocols
Routing Protocol is "igrp 100"
Sending updates every 90 seconds, next due in 48 seconds
Invalid after 270 seconds, hold down 280, flushed after 630
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Default networks flagged in outgoing updates
Default networks accepted from incoming updates
IGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
IGRP maximum hopcount 100
IGRP maximum metric variance 1
Redistributing: igrp 100
Routing for Networks:
192.168.70.0
172.10.0.0
175.10.0.0
Routing Information Sources:
172.10.1.2 100 00:00:03
175.10.1.1 100 00:00:06
Distance: (default is 100)







ROUTER OAXACA



Press Enter to Start


Router>
Router>enable
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname oaxaca
oaxaca(config)#int e0
oaxaca(config-if)#ip address 193.168.70.1 255.255.255.0
oaxaca(config-if)#no shut
%LINK-3-UPDOWN: Interface Ethernet0, changed state to up
oaxaca(config-if)#exit
oaxaca(config)#int s0
oaxaca(config-if)#ip address 172.10.1.2 255.255.0.0
oaxaca(config-if)#clock rate 64000
oaxaca(config-if)#bandwidth 64
oaxaca(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial0, changed state to up
oaxaca(config-if)#exit
oaxaca(config)#int s1
oaxaca(config-if)#ip address 173.10.1.1 255.255.0.0
oaxaca(config-if)#clock rate 64000
oaxaca(config-if)#bandwidth 64
oaxaca(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial1, changed state to up
oaxaca(config-if)#exit
%LINK-3-UPDOWN: Interface Serial1, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to down
oaxaca(config)#router igrp 100
oaxaca(config-router)#network 193.168.70.1
oaxaca(config-router)#network 172.10.1.2
oaxaca(config-router)#network 173.10.1.1
oaxaca(config-router)#variance 2
% Invalid input detected at '^' marker.

oaxaca(config-router)#exit
oaxaca(config)#exit
%LINK-3-UPDOWN: Interface Serial1, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial1, changed state to up
oaxaca#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default
U - per-user static route

Gateway of last resort is not set
C 193.168.70.0/24 is directly connected, Ethernet0
C 172.10.0.0/16 is directly connected, Serial0
I 192.168.70.0/24 [100/651] via 172.10.1.1, 00:02:41, Serial0
C 173.10.0.0/16 is directly connected, Serial1
I 194.168.70.0/24 [100/651] via 173.10.1.2, 00:01:42, Serial1
I 174.10.0.0/16 [100/651] via 173.10.1.2, 00:04:41, Serial1
I 175.10.0.0/16 [100/651] via 172.10.1.1, 00:05:15, Serial0
I 195.168.70.0/24 [100/1040] via 173.10.1.2, 00:02:23, Serial1

oaxaca#ping 195.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 195.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
oaxaca#ping 194.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 194.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
oaxaca#ping 192.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
oaxaca#show ip protocols
Routing Protocol is "igrp 100"
Sending updates every 90 seconds, next due in 29 seconds
Invalid after 270 seconds, hold down 280, flushed after 630
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Default networks flagged in outgoing updates
Default networks accepted from incoming updates
IGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
IGRP maximum hopcount 100
IGRP maximum metric variance 1
Redistributing: igrp 100
Routing for Networks:
193.168.70.0
172.10.0.0
173.10.0.0
Routing Information Sources:
172.10.1.1 100 00:00:00
173.10.1.2 100 00:00:00
Distance: (default is 100)

oaxaca#







ROUTER VERACRUZ


Press Enter to Start


Router>
Router>enable
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname veracruz
veracruz(config)#int e0
veracruz(config-if)#ip address 194.168.70.1 255.255.255.0
veracruz(config-if)#no shut
%LINK-3-UPDOWN: Interface Ethernet0, changed state to up
veracruz(config-if)#exit
veracruz(config)#int s0
veracruz(config-if)#ip address 174.10.1.1 255.255.0.0
veracruz(config-if)#clock rate 64000
veracruz(config-if)#bandwidth 64
veracruz(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial0, changed state to up
veracruz(config-if)#exit
%LINK-3-UPDOWN: Interface Serial0, changed state to down
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to down
veracruz(config)#int s1
veracruz(config-if)#ip address 173.10.1.2 255.255.0.0
veracruz(config-if)#clock rate 64000
veracruz(config-if)#bandwidth 64
veracruz(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial1, changed state to up
veracruz(config-if)#exit
veracruz(config)#exit
veracruz#config t
Enter configuration commands, one per line. End with CNTL/Z.
veracruz(config)#router igrp 100
veracruz(config-router)#network 194.168.70.1
veracruz(config-router)#network 174.10.1.1
veracruz(config-router)#network 173.10.1.2
veracruz(config-router)#exit
veracruz(config)#exit
%LINK-3-UPDOWN: Interface Serial0, changed state to up
%LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to up
veracruz#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default
U - per-user static route

Gateway of last resort is not set
C 194.168.70.0/24 is directly connected, Ethernet0
C 173.10.0.0/16 is directly connected, Serial1
I 193.168.70.0/24 [100/651] via 173.10.1.1, 00:02:38, Serial1
I 172.10.0.0/16 [100/651] via 173.10.1.1, 00:08:20, Serial1
C 174.10.0.0/16 is directly connected, Serial0
I 195.168.70.0/24 [100/651] via 174.10.1.2, 00:03:30, Serial0
I 175.10.0.0/16 [100/651] via 174.10.1.2, 00:09:41, Serial0
I 192.168.70.0/24 [100/1040] via 174.10.1.2, 00:07:13, Serial0

veracruz#ping 192.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
veracruz#ping 193.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 193.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
veracruz#ping 195.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 195.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
veracruz#show ip protocols
Routing Protocol is "igrp 100"
Sending updates every 90 seconds, next due in 66 seconds
Invalid after 270 seconds, hold down 280, flushed after 630
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Default networks flagged in outgoing updates
Default networks accepted from incoming updates
IGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
IGRP maximum hopcount 100
IGRP maximum metric variance 1
Redistributing: igrp 100
Routing for Networks:
194.168.70.0
174.10.0.0
173.10.0.0
Routing Information Sources:
173.10.1.1 100 00:00:03
174.10.1.2 100 00:00:03
Distance: (default is 100)

veracruz#







ROUTER MONTERREY


Press Enter to Start


Router>
Router>enable
Router#config t
Enter configuration commands, one per line. End with CNTL/Z.
Router(config)#hostname monterrey
monterrey(config)#int e0
monterrey(config-if)#ip address 195.168.70.1 255.255.255.0
monterrey(config-if)#no shut
%LINK-3-UPDOWN: Interface Ethernet0, changed state to up
monterrey(config-if)#exit
monterrey(config)#int s0
monterrey(config-if)#ip address 174.10.1.2 255.255.0.0
monterrey(config-if)#clock rate 64000
monterrey(config-if)#bandwidth 64
monterrey(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial0, changed state to up
monterrey(config-if)#exit
monterrey(config)#int s1
monterrey(config-if)#ip address 175.10.1.1 255.255.0.0
monterrey(config-if)#clock rate 64000
monterrey(config-if)#bandwidth 64
monterrey(config-if)#no shut
%LINK-3-UPDOWN: Interface Serial1, changed state to up
monterrey(config-if)#exit
monterrey(config)#router igrp 100
monterrey(config-router)#network 195.168.70.1
monterrey(config-router)#network 174.10.1.2
monterrey(config-router)#netwrok 175.10.1.1
% Invalid input detected at '^' marker.

monterrey(config-router)#network 175.10.1.1
monterrey(config-router)#exit
monterrey(config)#exit
monterrey#show ip route
Codes: C - connected, S - static, I - IGRP, R - RIP, M - mobile, B - BGP
D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area
E1 - OSPF external type 1, E2 - OSPF external type 2, E - EGP
i - IS-IS, L1 - IS-IS level-1, L2 - IS-IS level-2, * - candidate default
U - per-user static route

Gateway of last resort is not set
C 195.168.70.0/24 is directly connected, Ethernet0
C 174.10.0.0/16 is directly connected, Serial0
C 175.10.0.0/16 is directly connected, Serial1
I 194.168.70.0/24 [100/651] via 174.10.1.1, 00:02:22, Serial0
I 173.10.0.0/16 [100/651] via 174.10.1.1, 00:04:25, Serial0
I 192.168.70.0/24 [100/651] via 175.10.1.2, 00:03:43, Serial1
I 172.10.0.0/16 [100/651] via 175.10.1.2, 00:05:20, Serial1
I 193.168.70.0/24 [100/1081] via 175.10.1.2, 00:03:36, Serial1

monterrey#ping 192.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
monterrey#ping 193.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 193.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
monterrey#ping 194.168.70.1

Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 194.168.70.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 1/2/4 ms
monterrey#show ip protocols
Routing Protocol is "igrp 100"
Sending updates every 90 seconds, next due in 11 seconds
Invalid after 270 seconds, hold down 280, flushed after 630
Outgoing update filter list for all interfaces is not set
Incoming update filter list for all interfaces is not set
Default networks flagged in outgoing updates
Default networks accepted from incoming updates
IGRP metric weight K1=1, K2=0, K3=1, K4=0, K5=0
IGRP maximum hopcount 100
IGRP maximum metric variance 1
Redistributing: igrp 100
Routing for Networks:
195.168.70.0
174.10.0.0
175.10.0.0
Routing Information Sources:
174.10.1.1 100 00:00:06
175.10.1.2 100 00:00:06
Distance: (default is 100)

monterrey#