CCIE学习(49)―― 路由重分发(二)

调用路由映射的路由重分发实例
通过调用路由映射, redistribute 命令可以设置哪些路由可以重分发。
配置目标:
对于由 OSPF EIGRP 的重分发,需满足:
1 )重分发下一跳地址为 15.1.1.5 R5 )的路由,其路由标识为 5
2 )重分发源自 R6 RID 6.6.6.6 )的 E1 路由,其路由标识为 6
3 )不重分发其他路由。
对于由 EIGRP OSPF 的重分发,需满足:
1 )重分发以 14.2 开头且掩码为 /23 /24 的路由,其 metric 设为 300
2 )不重分发其他以 14.2 开头的路由。
3 )重分发以 14.3 开头的路由,其路由标识为 99
4 )不重分发其他路由。
R1 的配置:
router eigrp 1
 redistribute ospf 1 route-map ospf-into-eigrp
 network 14.0.0.0
 default-metric 1544 5 1 1 1
 no auto-summary
!
router ospf 1
 router-id 1.1.1.1
 redistribute eigrp 1 subnets route-map eigrp-into-ospf
 network 15.0.0.0 0.255.255.255 area 0
!
ip access-list standard A-14-3-x-x
 permit 14.3.0.0 0.0.255.255
ip access-list standard A-15-1-1-5
 permit 15.1.1.5
ip access-list standard A-6-6-6-6
 permit 6.6.6.6
!
ip prefix-list e-into-o seq 5 permit 14.2.0.0/16 ge 23 le 24
!
route-map ospf-into-eigrp permit 10
 match ip next-hop A-15-1-1-5
 set tag 5
!
route-map ospf-into-eigrp permit 15
 match ip route-source A-6-6-6-6
 match route-type external type-1
 set tag 6
!
route-map eigrp-into-ospf permit 10
 match ip address prefix-list e-into-o
 set metric 300
!
route-map eigrp-into-ospf permit 18
 match ip address A-14-3-x-x
 set tag 99

你可能感兴趣的:(职场,Cisco,休闲,Redistribution)