Configuración protocolo eigrp
A con tinuación se encuentra los pasos para configurar en un router el protocolo EIGRP:
En el ejemplo de configuración de una red con protocolo EIGRP se tiene los siguientes elementos:
|
ROUTER 1 |
ROUTER 2 |
ROUTER 3 |
ROUTER 4 |
|
Sistema autónomo: 222 Puerto Gigabitethernet: IP: 172.16.1.1 Máscara: 255.255.255.0 Puerto SERIAL 0/3/0: IP: 192.168.1.2 Máscara: 255.255.255.0 Puerto SERIAL 0/3/1: IP: 192.168.4.1 Máscara: 255.255.255.0 |
Sistema autónomo: 222 Puerto Gigabitethernet: IP: 172.16.2.1 Máscara: 255.255.255.0 Puerto SERIAL 0/3/0: IP: 192.168.1.1 Máscara: 255.255.255.0 Puerto SERIAL 0/3/1: IP: 192.168.2.1 Máscara: 255.255.255.0 |
Sistema autónomo: 222 Puerto Gigabitethernet: IP: 172.16.3.1 Máscara: 255.255.255.0 Puerto SERIAL 0/3/0: IP: 192.168.2.2 Máscara: 255.255.255.0 Puerto SERIAL 0/3/1: IP: 192.168.3.2 Máscara: 255.255.255.0 |
Sistema autónomo: 222 Puerto Gigabitethernet: IP: 172.16.4.1 Máscara: 255.255.255.0 Puerto SERIAL 0/3/0: IP: 192.168.4.2 Máscara: 255.255.255.0 Puerto SERIAL 0/3/1: IP: 192.168.3.1 Máscara: 255.255.255.0 |
Para permitir que el protocolo funcione correctamente en tu router Cisco, debes activar el proceso EIGRP , utilizando el comando de configuración global router eigrp <sistema autónomo>. El sistema autónomo, corresponde a los dispositivos que se encuentran una administración común. El valor del sistema autónomo es de 16 bits, por lo que puede ir de 1 a 65535.
El siguiente el video muestra la configuración de los 4 routers para el protocolo EIGRP:
PASO 1:
Realizar la configuración de los puertos de red LAN de los 4 router, en donde se debe configurar las redes locales de cada cliente.
ROUTER 2 2911 ISP:
Building configuration...
Current configuration : 978 bytes
!
version 15.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname R2
!
no ip cef
no ipv6 cef
!
license udi pid CISCO2911/K9 sn FTX1
!
spanning-tree mode pvst
!
interface GigabitEthernet0/0
ip address 172.16.2.1 255.255.255.0
duplex auto
speed auto
!
interface GigabitEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface GigabitEthernet0/2
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/3/0
ip address 192.168.1.1 255.255.255.0
clock rate 2000000
!
interface Serial0/3/1
ip address 192.168.2.1 255.255.255.0
clock rate 64000
!
interface Vlan1
no ip address
shutdown
!
router eigrp 222
network 172.16.2.0 0.0.0.255
network 192.168.1.0 0.0.0.3
network 192.168.2.0 0.0.0.3
auto-summary
!
ip classless
!
ip flow-export version 9
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
end
ROUTER 3 2911 ISP:
R3#sh run
Building configuration...
Current configuration : 980 bytes
!
version 15.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname R3
!
no ip cef
no ipv6 cef
!
license udi pid CISCO2911/K9 sn FTX1
!
spanning-tree mode pvst
!
interface GigabitEthernet0/0
ip address 172.16.3.1 255.255.255.0
duplex auto
speed auto
!
interface GigabitEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface GigabitEthernet0/2
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/3/0
ip address 192.168.2.2 255.255.255.0
clock rate 2000000
!
interface Serial0/3/1
ip address 192.168.3.2 255.255.255.0
clock rate 2000000
!
interface Vlan1
no ip address
shutdown
!
router eigrp 222
network 172.16.3.0 0.0.0.255
network 192.168.2.0 0.0.0.3
network 192.168.3.0 0.0.0.3
auto-summary
!
ip classless
!
ip flow-export version 9
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
end
ROUTER 4 2911 ISP:
Building configuration...
Current configuration : 982 bytes
!
version 15.1
no service timestamps log datetime msec
no service timestamps debug datetime msec
no service password-encryption
!
hostname Router
!
no ip cef
no ipv6 cef
!
license udi pid CISCO2911/K9 sn FTX1
!
spanning-tree mode pvst
!
interface GigabitEthernet0/0
ip address 172.16.4.1 255.255.255.0
duplex auto
speed auto
!
interface GigabitEthernet0/1
no ip address
duplex auto
speed auto
shutdown
!
interface GigabitEthernet0/2
no ip address
duplex auto
speed auto
shutdown
!
interface Serial0/3/0
ip address 192.168.4.2 255.255.255.0
clock rate 2000000
!
interface Serial0/3/1
ip address 192.168.3.1 255.255.255.0
clock rate 64000
!
interface Vlan1
no ip address
shutdown
!
router eigrp 222
network 172.16.4.0 0.0.0.255
network 192.168.3.0 0.0.0.3
network 192.168.4.0 0.0.0.3
auto-summary
!
ip classless
!
ip flow-export version 9
!
line con 0
!
line aux 0
!
line vty 0 4
login
!
end

No comments:
Post a Comment