This shows you the differences between two versions of the page.
pr:laboratoare:07 [2025/09/26 23:12] eduard.dumistracel |
pr:laboratoare:07 [2025/09/26 23:19] (current) eduard.dumistracel |
||
---|---|---|---|
Line 7: | Line 7: | ||
==== Topologie==== | ==== Topologie==== | ||
+ | {{ :pr:laboratoare:eigrp_topologie.png?600 |}} | ||
+ | Atenție! Toate IP-urile sunt deja puse pe dispozitive. | ||
* R1 - R2 -> 2001:db8:cafe::0440/125 | * R1 - R2 -> 2001:db8:cafe::0440/125 | ||
Line 18: | Line 20: | ||
* R6 - R7 -> 2001:db8:cafe::0478/125 | * R6 - R7 -> 2001:db8:cafe::0478/125 | ||
+ | Topologie: {{:pr:laboratoare:eigrp_initial.zip|}} | ||
==== Exerciții ==== | ==== Exerciții ==== | ||
Line 46: | Line 49: | ||
Implementați un prefix-list sau route-map pe R4 pentru a filtra anumite prefixe redistribuite. Verificați efectul asupra tabelelor de rutare din ambele părți. | Implementați un prefix-list sau route-map pe R4 pentru a filtra anumite prefixe redistribuite. Verificați efectul asupra tabelelor de rutare din ambele părți. | ||
+ | Exemplu 1 OSPF -> EIGRP | ||
+ | |||
+ | 1.Creezi prefix-list astfel incat sa permiti doar reteaua R1-R2 | ||
+ | |||
+ | * ipv6 prefix-list OSPF-TO-EIGRP seq 10 permit 2001:db8:cafe::0440/125 | ||
+ | * ipv6 prefix-list OSPF-TO-EIGRP seq 20 deny ::/0 le 128 | ||
+ | |||
+ | 2.Creezi route-map | ||
+ | |||
+ | * route-map RM-OSPF-TO-EIGRP permit 10 | ||
+ | * match ipv6 address prefix-list OSPF-TO-EIGRP | ||
+ | |||
+ | 3. Aplici route-map în redistribuire | ||
+ | |||
+ | * ipv6 router eigrp 10 | ||
+ | * no redistribute ospf 5 | ||
+ | * redistribute ospf 5 metric 100000 100 255 1 1500 route-map RM-OSPF-TO-EIGRP | ||
+ | |||
+ | 4. Verificați | ||
+ | * show ipv6 route eigrp -> Vei vedea doar prefixele permise (2001:db8:cafe::0440/122) | ||
+ | |||
+ | Exemplu 2 EIGRP -> OSPF | ||
+ | |||
+ | 1. Prefix-list (permit doar rețelele din zona R5–R6) | ||
+ | |||
+ | * ipv6 prefix-list EIGRP-TO-OSPF seq 10 permit 2001:db8:cafe::0460/123 le 128 | ||
+ | * ipv6 prefix-list EIGRP-TO-OSPF seq 20 deny ::/0 le 128 | ||
+ | |||
+ | 2. Route-map | ||
+ | |||
+ | * route-map RM-EIGRP-TO-OSPF permit 10 | ||
+ | * match ipv6 address prefix-list EIGRP-TO-OSPF | ||
+ | |||
+ | 3.Aplicare în redistribuire | ||
+ | |||
+ | * ipv6 router ospf 5 | ||
+ | * no redistribute eigrp 10 | ||
+ | * redistribute eigrp 10 route-map RM-EIGRP-TO-OSPF | ||
+ | * end | ||
==== Cuprins ==== | ==== Cuprins ==== | ||
* [[#topologie|Topologie]] | * [[#topologie|Topologie]] |