Category Archives: EIGRP

EIGRP Default Information

Configuration d`une interface lo10 et annonce en tant que « default network » : BB3(config)#int lo10 BB3(config-if)#ip address 33.33.33.33 255.0.0.0 BB3(config)#ip default-network 33.0.0.0 Vérifications: BB3#show ip route 33.33.33.0 Routing entry for 33.0.0.0/8 Known via « connected », distance 0, metric 0 (connected, via interface), … Continue reading

Posted in EIGRP | Leave a comment

EIGRP STUB

Les AS 100, 200, 300 et 400 redistribuent leurs tables de routage : BB3#show ip route eigrp 1.0.0.0/24 is subnetted, 1 subnets D EX 1.1.1.0 [175/20665600] via 10.1.113.3, 00:29:22, Ethernet0 2.0.0.0/24 is subnetted, 1 subnets D EX 2.2.2.0 [175/21177600] via … Continue reading

Posted in EIGRP | Leave a comment

EIGRP route tag

l`AS 400 redistribue ces routes dans l`AS 300 en les taguant : R4(config)#route-map Redis-400-300 permit 10 R4(config-route-map)#set tag 400 R4(config)#router eigrp 300 R4(config-router)#redistribute eigrp 400 route-map Redis-400-300 Vérifications : BB3#show ip route 10.1.156.0 Routing entry for 10.1.156.0/24 Known via « eigrp … Continue reading

Posted in EIGRP | Leave a comment

Distance administrative EIGRP

Modification des distances administratives du protocole EIGRP. par défaut : 90 pour les routes Internes 170 pour les routes Externes BB3#show ip protocols | inc Dis Gateway Distance Last Update Distance: internal 90 external 170 BB3#show ip route eigrp 1.0.0.0/24 … Continue reading

Posted in EIGRP | Leave a comment

EIGRP maximum hopcount

Modification du nombre de saut max (par défaut : 100) R3#show ip protocols Routing Protocol is « eigrp 300 » Outgoing update filter list for all interfaces is not set Incoming update filter list for all interfaces is not set Default networks … Continue reading

Posted in EIGRP | Leave a comment

Authentification Eigrp

Mise en place d`une authentification Eigrp entre R1 et R3 R3(config)#key chain R1-R3 R3(config-keychain)#key 1 R3(config-keychain-key)#key-string CISCO12345 R3(config)int s1/2 R3(config-if)#ip authentication key-chain eigrp 300 R1-R3 R3(config-if)#ip authentication mode eigrp 300 md5 R1(config)#key chain R1-R3 R1(config-keychain)#key 1 R1(config-keychain-key)#key-string CISCO12345 R1(config)int s0/1 … Continue reading

Posted in EIGRP | Leave a comment

EIGRP loadbalancing

    Le routeur R4 n`utilise qu`un seul next hop pour atteindre le sous-réseau 6.6.6.0/24 :       R4#show ip route eigrp 400 5.0.0.0/24 is subnetted, 1 subnets D 5.5.5.0 [90/2297856] via 10.1.44.5, 01:48:32, Serial0/0 6.0.0.0/24 is subnetted, 1 … Continue reading

Posted in EIGRP | Leave a comment

EIGRP summarisation

    R2#show ip route eigrp 300 1.0.0.0/24 is subnetted, 1 subnets D EX 1.1.1.0 [170/2297856] via 10.1.12.1, 01:33:55, Serial0/0 3.0.0.0/24 is subnetted, 1 subnets D 3.3.3.0 [90/2809856] via 10.1.12.1, 01:33:55, Serial0/0 4.0.0.0/24 is subnetted, 1 subnets D 4.4.4.0 [90/2809856] … Continue reading

Posted in EIGRP | Leave a comment

Calcul du metric EIGRP

Le calcul du metric EIGRP est le résultat composite de 5 paramétrés : La bande passante La Charge Le Délais La Fiabilité Par défaut, K1 et K3 sont à 1, et le reste à zéro, réduisant la formule à : … Continue reading

Posted in EIGRP | Leave a comment

EIGRP Timers

modification des timers « hello » et « hold-time » entre BB1 et R1   R1(config)#int fa0/0 R1(config-if)#ip hello-interval eigrp 100 1 R1(config-if)#ip hold-time eigrp 100 3 BB1(config)#int e0 BB1(config-if)#ip hello-interval eigrp 100 1 BB1(config-if)#ip hold-time eigrp 100 3 Vérifications : R1#sh ip eigrp … Continue reading

Posted in EIGRP | Leave a comment