11.ospf第十一试验 ospf的路由重发布
ospf的路由重发布_职场_03条件:
R1,R2 12.1.1.0/24     EIGRP 100
R2,R3 23.1.1.0/24     OSPF 100
R2,R5 25.1.1.0/24     RIP V2
R1,R4 192.168.1.0/24 EIGRP 90
配置R1
router eigrp 100
redistribute eigrp 90 metric 10000 100 255 1 1500(把100重发布到90中去)
network 1.1.1.0 0.0.0.255
network 12.1.1.0 0.0.0.255
no auto-summary
router eigrp 90
redistribute eigrp 100 metric 10000 100 255 1 1500(把90重发布到100中去)
network 192.168.1.0
auto-summary
10000    100    255      1     1500
带宽     延时   可信度 负载    MTU
配置R2:
router eigrp 100
redistribute rip metric 10000 100 1 255 1500
redistribute ospf 100 metric 10000 100 1 255 1500
network 12.1.1.0 0.0.0.255
no auto-summary
router ospf 100
router-id 2.2.2.2
log-adjacency-changes
redistribute eigrp 100 metric-type 1 subnets (设置进入ospf中的类型为 E1
redistribute rip metric 30 subnets(可以是子网信息存在在路由表中不是用则只有主网地址存在)
network 2.2.2.2 0.0.0.0 area 0
network 23.1.1.1 0.0.0.0 area 0
default-metric 40(修改Metric值 但是如果不是用默认那么此修改无效!)
router rip
version 2
redistribute eigrp 100 metric 3
redistribute ospf 100 metric 4
network 25.0.0.0
no auto-summary
总结路由重发布:
Ospfeigrprip中改动默认metric时候使用 default-metric命令
Subnets 字段的使用 一定要在ospf发布中加入 以免信息中只有主网地址出现