7.4.3.5 Práctica de laboratorio: Configuración de EIGRP básico para IPv6 Respuestas

Última actualización: septiembre 8, 2022

7.4.3.5 Práctica de laboratorio: Configuración de EIGRP básico para IPv6 (versión para el instructor)

Nota para el instructor: el color de fuente rojo o las partes resaltadas en gris indican texto que aparece en la copia del instructor solamente.

Topología

Tabla de asignación de direcciones

Dispositivo Interfaz Dirección IP Gateway predeterminado
R1 G0/0 2001:DB8:ACAD:A::1/64
FE80::1 link-local
N/A
S0/0/0 (DCE) 2001:DB8:ACAD:12::1/64
FE80::1 link-local
N/A
S0/0/1 2001:DB8:ACAD:13::1/64
FE80::1 link-local
N/A
R2 G0/0 2001:DB8:ACAD:B::1/64
FE80::2 link-local
N/A
S0/0/0 2001:DB8:ACAD:12::2/64
FE80::2 link-local
N/A
S0/0/1 (DCE) 2001:DB8:ACAD:23::2/64
FE80::2 link-local
N/A
R3 G0/0 2001:DB8:ACAD:C::1/64
FE80::3 link-local
N/A
S0/0/0 (DCE) 2001:DB8:ACAD:13::3/64
FE80::3 link-local
N/A
S0/0/1 2001:DB8:ACAD:23::3/64
FE80::3 link-local
N/A
PC-A NIC 2001:DB8:ACAD:A::3/64 FE80::1
PC-B NIC 2001:DB8:ACAD:B::3/64 FE80::2
PC-C NIC 2001:DB8:ACAD:C::3/64 FE80::3

Objetivos

Parte 1: armar la red y verificar la conectividad
Parte 2: Configurar el routing EIGRP para IPv6
Parte 3: Verificar el routing EIGRP para IPv6
Parte 4: Configurar y verificar las interfaces pasivas

Información básica/situación

EIGRP para IPv6 tiene el mismo funcionamiento y las mismas características generales que EIGRP para IPv4. Sin embargo, existen algunas diferencias importantes entre ellos:

• EIGRP para IPv6 se configura directamente en las interfaces del router.
• Con EIGRP para IPv6, se necesita una ID en cada router; de lo contrario, no se inicia el proceso de routing.
• El proceso de routing EIGRP para IPv6 utiliza una característica shutdown.

En esta práctica de laboratorio, configurará la red con routing EIGRP para IPv6. También asignará las ID de los routers, configurará interfaces pasivas, verificará que la red haya convergido por completo y mostrará información de routing mediante los comandos de CLI show.

Nota: los routers que se utilizan en las prácticas de laboratorio de CCNA son routers de servicios integrados (ISR) Cisco 1941 con IOS de Cisco versión 15.2(4)M3 (imagen universalk9). Pueden utilizarse otros routers y otras versiones del IOS de Cisco. Según el modelo y la versión de IOS de Cisco, los comandos disponibles y los resultados que se obtienen pueden diferir de los que se muestran en las prácticas de laboratorio. Consulte la tabla Resumen de interfaces del router que se encuentra al final de esta práctica de laboratorio para obtener los identificadores de interfaz correctos.

Nota: asegúrese de que los routers se hayan borrado y no tengan configuraciones de inicio. Si no está seguro, consulte al instructor.

Nota para el instructor: consulte el Manual de prácticas de laboratorio para el instructor a fin de conocer los procedimientos para inicializar y volver a cargar los dispositivos.

Recursos necesarios

• 3 routers (Cisco 1941 con Cisco IOS, versión 15.2(4)M3, imagen universal o similar)
• 3 computadoras (Windows 7, Vista o XP con un programa de emulación de terminal, como Tera Term)
• Cables de consola para configurar los dispositivos con IOS de Cisco mediante los puertos de consola
• Cables Ethernet y seriales, como se muestra en la topología.

Parte 1: Arme la red y verifique la conectividad

En la parte 1, configurará la topología de la red y los parámetros básicos, como direcciones IP de la interfaz, el acceso a dispositivos y contraseñas.

Paso 1: Realizar el cableado de red tal como se muestra en la topología.

Paso 2: Configure los host del equipo.

Paso 3: Inicialice y vuelva a cargar los routers, según sea necesario.

Paso 4: Configure los parámetros básicos para cada router.

a. Desactive la búsqueda del DNS.

b. Configure las direcciones IP para los routers como se indican en la tabla de direccionamiento.

Nota: configure la dirección link-local FE80::x y la dirección de unidifusión para cada interfaz del router.

c. Configure el nombre del dispositivo como se muestra en la topología.

d. Asigne cisco como la contraseña de consola y la contraseña de vty.

e. Asigne class como la contraseña del modo EXEC privilegiado.

f. Configure logging synchronous para evitar que los mensajes de consola y de vty interrumpan la entrada de comandos.

g. Configure un mensaje del día.

h. Copie la configuración en ejecución en la configuración de inicio

Paso 5: Verifique la conectividad.

Los routers deben poder hacer ping entre sí, y cada equipo debe ser capaz de hacer ping a su gateway predeterminado. Las computadoras no podrán hacer ping a otras computadoras hasta que se configure el routing EIGRP. Verifique y resuelva los problemas si es necesario.

Parte 2: Configurar el routing EIGRP para IPv6

Paso 1: Habilitar el routing IPv6 en los routers.

R1(config)# ipv6 unicast-routing

Paso 2: Asignar una ID a cada router.

a. Para iniciar el proceso de configuración del routing EIGRP para IPv6, emita el comando ipv6 router eigrp 1, donde 1 es el número de AS.

R1(config)# ipv6 router eigrp 1

b. EIGRP para IPv6 requiere una dirección de 32 bits para la ID del router. Utilice el comando router-id para configurar la ID del router en el modo de configuración del router.

R1(config)# ipv6 router eigrp 1
R1(config-rtr)# router-id 1.1.1.1

R2(config)# ipv6 router eigrp 1
R2(config-rtr)# router-id 2.2.2.2

R3(config)# ipv6 router eigrp 1
R3(config-rtr)# router-id 3.3.3.3

Paso 3: Habilitar el routing EIGRP para IPv6 en cada router.

El proceso de routing IPv6 está desactivado de manera predeterminada. Emita el comando no shutdown para habilitar el routing EIGRP para IPv6 en todos los routers.

R1(config)# ipv6 router eigrp 1
R1(config-rtr)# no shutdown

R2(config)# ipv6 router eigrp 1
R2(config-rtr)# no shutdown

R3(config)# ipv6 router eigrp 1
R3(config-rtr)# no shutdown

Paso 4: Configurar EIGRP para IPv6 usando 1 como AS en las interfaces Serial y Gigabit Ethernet de los routers.

a. Emita el comando ipv6 eigrp 1 en las interfaces que participan en el proceso de routing EIGRP. El número de AS es 1, como se asignó en el paso 2. La configuración para el R1 se muestra a continuación como ejemplo.

R1(config)# interface g0/0
R1(config-if)# ipv6 eigrp 1
R1(config-if)# interface s0/0/0
R1(config-if)# ipv6 eigrp 1
R1(config-if)# interface s0/0/1
R1(config-if)# ipv6 eigrp 1

b. Asigne las interfaces EIGRP participantes en el R2 y en el R3. Verá mensajes de adyacencia de vecinos a medida que se agreguen interfaces al proceso de routing EIGRP. Los mensajes en el R1 se muestran a continuación como ejemplo.

R1(config-if)#
*Apr 12 00:25:49.183: %DUAL-5-NBRCHANGE: EIGRP-IPv6 1: Neighbor FE80::2 (Serial0/0/0)
is up: new adjacency
*Apr 12 00:26:15.583: %DUAL-5-NBRCHANGE: EIGRP-IPv6 1: Neighbor FE80::3 (Serial0/0/1)
is up: new adjacency

¿Qué dirección se usa para indicar el vecino en los mensajes de adyacencias?
La dirección link-local (FE80::x) de la interfaz del vecino, que se asignó en la parte 1, paso 4.

Paso 5: Verifique la conectividad de extremo a extremo.

Parte 3: Verificar el routing EIGRP para IPv6

Paso 1: Analizar las adyacencias de vecinos.

En el R1, emita el comando show ipv6 eigrp neighbors para verificar que se haya establecido la adyacencia con los routers vecinos. Las direcciones link-local de los routers vecinos se muestran en la tabla de adyacencias.

R1# show ipv6 eigrp neighbors
EIGRP-IPv6 Neighbors for AS(1)  
H   Address                 Interface              Hold Uptime   SRTT   RTO  Q  Seq  
                                                    (sec)         (ms)       Cnt Num  
1   Link-local address:     Se0/0/1                  13 00:02:42    1   100  0  7  
    FE80::3  
0   Link-local address:     Se0/0/0                  13 00:03:09   12   100  0  9  
    FE80::2

Paso 2: Analizar la tabla de routing EIGRP para IPv6.

Utilice el comando show ipv6 route eigrp para mostrar rutas EIGRP específicas de IPv6 en todos los routers.

R1# show ipv6 route eigrp
IPv6 Routing Table - default - 10 entries  
Codes: C - Connected, L - Local, S - Static, U - Per-user Static route  
       B - BGP, R - RIP, I1 - ISIS L1, I2 - ISIS L2  
       IA - ISIS interarea, IS - ISIS summary, D - EIGRP, EX - EIGRP external
       ND - ND Default, NDp - ND Prefix, DCE - Destination, NDr - Redirect  
       O - OSPF Intra, OI - OSPF Inter, OE1 - OSPF ext 1, OE2 - OSPF ext 2  
       ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2  
D   2001:DB8:ACAD:B::/64 [90/2172416]  
     via FE80::2, Serial0/0/0  
D   2001:DB8:ACAD:C::/64 [90/2172416]
     via FE80::3, Serial0/0/1  
D   2001:DB8:ACAD:23::/64 [90/2681856]  
     via FE80::2, Serial0/0/0  
     via FE80::3, Serial0/0/1

Paso 3: Analizar la topología de EIGRP.

R1# show ipv6 eigrp topology
EIGRP-IPv6 Topology Table for AS(1)/ID(1.1.1.1)  
Codes: P - Passive, A - Active, U - Update, Q - Query, R - Reply,  
       r - reply Status, s - sia Status  
  
P 2001:DB8:ACAD:A::/64, 1 successors, FD is 28160  
        via Connected, GigabitEthernet0/0  
P 2001:DB8:ACAD:C::/64, 1 successors, FD is 2172416  
        via FE80::3 (2172416/28160), Serial0/0/1  
P 2001:DB8:ACAD:12::/64, 1 successors, FD is 2169856  
        via Connected, Serial0/0/0  
P 2001:DB8:ACAD:B::/64, 1 successors, FD is 2172416  
        via FE80::2 (2172416/28160), Serial0/0/0  
P 2001:DB8:ACAD:23::/64, 2 successors, FD is 2681856  
        via FE80::2 (2681856/2169856), Serial0/0/0  
        via FE80::3 (2681856/2169856), Serial0/0/1  
P 2001:DB8:ACAD:13::/64, 1 successors, FD is 2169856  
        via Connected, Serial0/0/1

Compare las entradas resaltadas con la tabla de routing. ¿Qué conclusión puede obtener de la comparación?
En la tabla de topología, se incluyen todas las rutas disponibles a un destino. En la tabla de routing, se incluye la mejor ruta a un destino.

Paso 4: Verificar los parámetros y el estado actual de los procesos del protocolo de routing IPv6 activo.

Emita el comando show ipv6 protocols para verificar el parámetro configurado. Según el resultado, EIGRP es el protocolo de routing IPv6 configurado, con 1.1.1.1 como la ID de router para el R1. Este protocolo de routing se asocia con el sistema autónomo 1 con tres interfaces activas: G0/0, S0/0/0 y S0/0/1.

R1# show ipv6 protocols
IPv6 Routing Protocol is "connected"  
IPv6 Routing Protocol is "ND"  
IPv6 Routing Protocol is "eigrp 1"  
EIGRP-IPv6 Protocol for AS(1)  
  Metric weight K1=1, K2=0, K3=1, K4=0, K5=0  
  NSF-aware route hold timer is 240  
  Router-ID: 1.1.1.1  
  Topology : 0 (base)  
    Active Timer: 3 min
    Distance: internal 90 external 170  
    Maximum path: 16  
    Maximum hopcount 100  
    Maximum metric variance 1  
  
  Interfaces:  
    GigabitEthernet0/0  
    Serial0/0/0  
    Serial0/0/1  
  Redistribution:  
    None

Parte 4: Configurar y verificar las interfaces pasivas

Una interfaz pasiva no permite las actualizaciones de routing de entrada y salida por la interfaz configurada. El comando passive-interface interface ocasiona que el router deje de enviar y de recibir paquetes de saludo mediante una interfaz.

Paso 1: Configurar la interfaz G0/0 como pasiva en el R1 y el R2.

R1(config)# ipv6 router eigrp 1
R1(config-rtr)# passive-interface g0/0

R2(config)# ipv6 router eigrp 1
R2(config-rtr)# passive-interface g0/0

Paso 2: Verificar la configuración de la interfaz pasiva.

Emita el comando show ipv6 protocols en el R1 y verifique que G0/0 se haya configurado como pasiva.

R1# show ipv6 protocols
IPv6 Routing Protocol is "connected"  
IPv6 Routing Protocol is "ND"  
IPv6 Routing Protocol is "eigrp 1"  
EIGRP-IPv6 Protocol for AS(1)  
  Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
  NSF-aware route hold timer is 240  
  Router-ID: 1.1.1.1  
  Topology : 0 (base)  
    Active Timer: 3 min  
    Distance: internal 90 external 170  
    Maximum path: 16  
    Maximum hopcount 100  
    Maximum metric variance 1  
  
  Interfaces:  
    Serial0/0/0  
    Serial0/0/1  
    GigabitEthernet0/0 (passive)  
  Redistribution:  
    None

Paso 3: Configurar la interfaz pasiva G0/0 en el R3.

Si algunas interfaces están configuradas como pasivas, utilice el comando passive-interface default para configurar todas las interfaces en el router como pasivas. Utilice el comando no passive-interface interface para permitir la entrada y salida de mensajes de saludo EIGRP mediante la interfaz del router.

a. Configure todas las interfaces como pasivas en el R3.

R3(config)# ipv6 router eigrp 1
R3(config-rtr)# passive-interface default
R3(config-rtr)#
*Apr 13 00:07:03.267: %DUAL-5-NBRCHANGE: EIGRP-IPv6 1: Neighbor FE80::1 (Serial0/0/0)
is down: interface passive
*Apr 13 00:07:03.267: %DUAL-5-NBRCHANGE: EIGRP-IPv6 1: Neighbor FE80::2 (Serial0/0/1)
is down: interface passive

b. Después emitir el comando passive-interface default, el R3 ya no participa en el proceso de routing.
¿Qué comando puede utilizar para verificarlo?
show ipv6 route eigrp o show ipv6 route

R3# show ipv6 route eigrp
IPv6 Routing Table - default - 7 entries
Codes: C - Connected, L - Local, S - Static, U - Per-user Static route
       B - BGP, R - RIP, I1 - ISIS L1, I2 - ISIS L2
       IA - ISIS interarea, IS - ISIS summary, D - EIGRP, EX - EIGRP external
       ND - ND Default, NDp - ND Prefix, DCE - Destination, NDr - Redirect
       O - OSPF Intra, OI - OSPF Inter, OE1 - OSPF ext 1, OE2 - OSPF ext 2
       ON1 - OSPF NSSA ext 1, ON2 - OSPF NSSA ext 2

c. ¿Qué comando puede utilizar para mostrar las interfaces pasivas en el R3?
show ipv6 protocols

R3# show ipv6 protocols
IPv6 Routing Protocol is "connected"  
IPv6 Routing Protocol is "ND"  
IPv6 Routing Protocol is "eigrp 1"  
EIGRP-IPv6 Protocol for AS(1)  
  Metric weight K1=1, K2=0, K3=1, K4=0, K5=0  
  NSF-aware route hold timer is 240  
  Router-ID: 3.3.3.3  
  Topology : 0 (base)  
    Active Timer: 3 min  
    Distance: internal 90 external 170  
    Maximum path: 16  
    Maximum hopcount 100  
    Maximum metric variance 1  
  
  Interfaces:  
    GigabitEthernet0/0 (passive)  
    Serial0/0/0 (passive)  
    Serial0/0/1 (passive)
  Redistribution:  
    None

d. Configure las interfaces seriales que participan en el proceso de routing.

R3(config)# ipv6 router eigrp 1
R3(config-rtr)# no passive-interface s0/0/0
R3(config-rtr)# no passive-interface s0/0/1
R3(config-rtr)#
*Apr 13 00:21:23.807: %DUAL-5-NBRCHANGE: EIGRP-IPv6 1: Neighbor FE80::1 (Serial0/0/0)
is up: new adjacency
*Apr 13 00:21:25.567: %DUAL-5-NBRCHANGE: EIGRP-IPv6 1: Neighbor FE80::2 (Serial0/0/1)
is up: new adjacency

e. Se establecieron nuevamente las relaciones de vecino con el R1 y el R2. Verifique que solo G0/0 se haya configurado como pasiva. ¿Qué comando utiliza para verificar la interfaz pasiva?
show ipv6 protocols

R3# show ipv6 protocols
IPv6 Routing Protocol is "connected"  
IPv6 Routing Protocol is "ND"  
IPv6 Routing Protocol is "eigrp 1"  
EIGRP-IPv6 Protocol for AS(1)  
  Metric weight K1=1, K2=0, K3=1, K4=0, K5=0
  NSF-aware route hold timer is 240  
  Router-ID: 3.3.3.3  
  Topology : 0 (base)  
    Active Timer: 3 min  
    Distance: internal 90 external 170  
    Maximum path: 16  
    Maximum hopcount 100  
    Maximum metric variance 1  
  
  Interfaces:  
    Serial0/0/0  
    Serial0/0/1  
    GigabitEthernet0/0 (passive)  
  Redistribution:  
    None

Reflexión

1. ¿Dónde configuraría interfaces pasivas? ¿Por qué?

Las interfaces pasivas se configuran normalmente en interfaces de router que no están conectadas a otros routers. Las interfaces pasivas limitan la cantidad de tráfico de protocolo innecesario en la red, porque no hay dispositivos de router que reciban los mensajes en el otro lado del enlace.

2. ¿Cuáles son algunas de las ventajas de usar EIGRP como el protocolo de routing en su red?

El protocolo de routing EIGRP se puede usar con casi cualquier tamaño de red que utilice IPv4 o IPv6. También utiliza menos CPU que otros protocolos de routing dinámico, como OSPF. Requiere poco ancho de banda para las actualizaciones de routing.

Tabla de resumen de interfaces del router

Resumen de interfaces del router
Modelo de router Ethernet Interface #1 Ethernet Interface #2 Serial Interface #1 Serial Interface #2
1800 Fast Ethernet 0/0 (F0/0) Fast Ethernet 0/1 (F0/1) Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
1900 Gigabit Ethernet 0/0 (G0/0) Gigabit Ethernet 0/1 (G0/1) Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
2801 Fast Ethernet 0/0 (F0/0) Fast Ethernet 0/1 (F0/1) Serial 0/1/0 (S0/1/0) Serial 0/1/1 (S0/1/1)
2811 Fast Ethernet 0/0 (F0/0) Fast Ethernet 0/1 (F0/1) Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
2900 Gigabit Ethernet 0/0 (G0/0) Gigabit Ethernet 0/1 (G0/1) Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
Nota: para conocer la configuración del router, observe las interfaces a fin de identificar el tipo de router y cuántas interfaces tiene. No existe una forma eficaz de confeccionar una lista de todas las combinaciones de configuraciones para cada clase de router. En esta tabla, se incluyen los identificadores para las posibles combinaciones de interfaces Ethernet y seriales en el dispositivo. En esta tabla, no se incluye ningún otro tipo de interfaz, si bien puede haber interfaces de otro tipo en un router determinado. La interfaz BRI ISDN es un ejemplo. La cadena entre paréntesis es la abreviatura legal que se puede utilizar en los comandos de IOS de Cisco para representar la interfaz.

Configuraciones de dispositivos

  • Router R1
  • R2 del router
  • R3 del router
R1# show run
Building configuration...

Current configuration : 1632 bytes
!
version 15.2
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R1
!
boot-start-marker
boot-end-marker
!
!
enable secret 4 06YFDUHH61wAE/kLkDq9BGho1QM5EnRtoyr8cHAUg.2
!
no aaa new-model
memory-size iomem 15
!
ip cef
!
!
!
!
!
!
ipv6 unicast-routing
ipv6 cef
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
!
!
interface Embedded-Service-Engine0/0
no ip address
shutdown
!
interface GigabitEthernet0/0
no ip address
duplex auto
speed auto
ipv6 address FE80::1 link-local
ipv6 address 2001:DB8:ACAD:A::1/64
ipv6 eigrp 1
!
interface GigabitEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0/0
no ip address
ipv6 address FE80::1 link-local
ipv6 address 2001:DB8:ACAD:12::1/64
ipv6 eigrp 1
clock rate 128000
!
interface Serial0/0/1
no ip address
ipv6 address FE80::1 link-local
ipv6 address 2001:DB8:ACAD:13::1/64
ipv6 eigrp 1
!
ip forward-protocol nd
!
no ip http server
no ip http secure-server
!
!
ipv6 router eigrp 1
passive-interface GigabitEthernet0/0
eigrp router-id 1.1.1.1
!
!
!
!
control-plane
!
!
!
line con 0
password cisco
login
line aux 0
line 2
no activation-character
no exec
transport preferred none
transport input all
transport output pad telnet rlogin lapb-ta mop udptn v120 ssh
stopbits 1
line vty 0 4
password cisco
login
transport input all
line vty 5 15
password cisco
login
transport input all
!
scheduler allocate 20000 1000
!
end
R2# show run
Building configuration...

Current configuration : 1633 bytes
!
version 15.2
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R2
!
boot-start-marker
boot-end-marker
!
!
enable secret 4 06YFDUHH61wAE/kLkDq9BGho1QM5EnRtoyr8cHAUg.2
!
no aaa new-model
memory-size iomem 15
!
ip cef
!
!
!
!
!
!
ipv6 unicast-routing
ipv6 cef
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
!
!
interface Embedded-Service-Engine0/0
no ip address
shutdown
!
interface GigabitEthernet0/0
no ip address
duplex auto
speed auto
ipv6 address FE80::2 link-local
ipv6 address 2001:DB8:ACAD:B::1/64
ipv6 eigrp 1
!
interface GigabitEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0/0
no ip address
ipv6 address FE80::2 link-local
ipv6 address 2001:DB8:ACAD:12::2/64
ipv6 eigrp 1
!
interface Serial0/0/1
no ip address
ipv6 address FE80::2 link-local
ipv6 address 2001:DB8:ACAD:23::2/64
ipv6 eigrp 1
clock rate 2000000
!
ip forward-protocol nd
!
no ip http server
no ip http secure-server
!
!
ipv6 router eigrp 1
passive-interface GigabitEthernet0/0
eigrp router-id 2.2.2.2
!
!
!
!
control-plane
!
!
!
line con 0
password cisco
login
line aux 0
line 2
no activation-character
no exec
transport preferred none
transport input all
transport output pad telnet rlogin lapb-ta mop udptn v120 ssh
stopbits 1
line vty 0 4
password cisco
login
transport input all
line vty 5 15
password cisco
login
transport input all
!
scheduler allocate 20000 1000
!
end
R3# show run
Building configuration...

Current configuration : 1672 bytes
!
version 15.2
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R3
!
boot-start-marker
boot-end-marker
!
!
enable secret 4 06YFDUHH61wAE/kLkDq9BGho1QM5EnRtoyr8cHAUg.2
!
no aaa new-model
memory-size iomem 15
!
ip cef
!
!
!
!
!
!
ipv6 unicast-routing
ipv6 cef
multilink bundle-name authenticated
!
!
!
!
!
!
!
!
!
interface Embedded-Service-Engine0/0
no ip address
shutdown
!
interface GigabitEthernet0/0
no ip address
duplex auto
speed auto
ipv6 address FE80::3 link-local
ipv6 address 2001:DB8:ACAD:C::1/64
ipv6 eigrp 1
!
interface GigabitEthernet0/1
no ip address
shutdown
duplex auto
speed auto
!
interface Serial0/0/0
no ip address
ipv6 address FE80::3 link-local
ipv6 address 2001:DB8:ACAD:13::3/64
ipv6 eigrp 1
clock rate 2000000
!
interface Serial0/0/1
no ip address
ipv6 address FE80::3 link-local
ipv6 address 2001:DB8:ACAD:23::3/64
ipv6 eigrp 1
!
ip forward-protocol nd
!
no ip http server
no ip http secure-server
!
!
ipv6 router eigrp 1
passive-interface default
no passive-interface Serial0/0/0
no passive-interface Serial0/0/1
eigrp router-id 3.3.3.3
!
!
!
!
control-plane
!
!
!
line con 0
password cisco
login
line aux 0
line 2
no activation-character
no exec
transport preferred none
transport input all
transport output pad telnet rlogin lapb-ta mop udptn v120 ssh
stopbits 1
line vty 0 4
password cisco
login
transport input all
line vty 5 15
password cisco
login
transport input all
!
scheduler allocate 20000 1000
!
end

 

Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
¿Tienes otra pregunta? Por favor comentax