简单的路由重分布实验(rip和ospf重分布)

简单的路由重分布实验(rip和ospf重分布)
简单的路由重分布实验(rip和ospf重分布) 1、网络拓扑,R1,R2,R3相连Router1 S0/0 <----> Router2 S0/0Router2 S0/1 <----> Router3 S0/12、具体配置R1配置R1>enR1#config teR1#config terminal R1(config)#interface serial 0/0R1(config-if)#ip add 14.0.0.1 255.255.255.252       //s0/0接口地址R1(config-if)#clock rate 64000R1(config-if)#no shutR1(config-if)#exitR1(config)#interface loopback 0R1(config-if)#ip add 10.0.0.1 255.255.255.255       //R1环回口接口地址R1(config-if)#no shutR1(config)#router rip                                               // 启用RIP协议R1(config-router)#version 2R1(config-router)#network 10.0.0.1                        //RIP宣告R1(config-router)#network 14.0.0.1 R1(config-router)#exitR2的配置R2>enR2#config terminal R2(config)#interface serial 0/0R2(config-if)#ip add 14.0.0.2 255.255.255.252             //R2 s0/0接口地址R2(config-if)#no shutR2(config-if)#exitR2(config)#interface serial 0/1R2(config-if)#ip add 15.0.0.1 255.255.255.252             //R2 s0/1接口地址R2(config-if)#clock rate 64000R2(config-if)#no shutR2(config)#interface loopback 0R2(config-if)#ip add 12.0.0.1 255.255.255.255             //R2 环回口接口地址R2(config-if)#no shutR2(config-if)#exitR2(config)#router rip                                                      //启用RIPR2(config-router)#version 2R2(config-router)#network 14.0.0.2                               //宣告RIPR2(config-router)#exitR2(config)#router ospf 100                                             //启用OSPFR2(config-router)#network 12.0.0.1 0.0.0.0 area 0         //宣告OSPFR2(config-router)#network 15.0.0.1 0.0.0.0 area 0R2(config)#router rip R2(config-router)#version 2R2(config-router)#redistribute ospf 100 metric 1               //将OSPF重分布到RIP中R2(config-router)#exitR2(config)#router ospf 100R2(config-router)#redistribute rip subnets                         //将RIP重分布到OSPF中R3的配置R3>enR3#config terminal R3(config)#interface serial 0/1R3(config-if)#ip add 15.0.0.2 255.255.255.252              //R3 s0/1接口地址R3(config-if)#no shutR3(config-if)#exitR3(config)#interface loopback 0R3(config-if)#ip add 13.0.0.1 255.255.255.255               //R3 环回口地址R3(config-if)#no shutR3(config-if)#exitR3(config)#router ospf 100                                              //启用OSPFR3(config-router)#network 13.0.0.1 0.0.0.0 area 0          //宣告OSPFR3(config-router)#network 15.0.0.2 0.0.0.0 area 03、show查看路由信息R1#show ip route Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static routeGateway of last resort is not set     10.0.0.0/32 is subnetted, 1 subnetsC       10.0.0.1 is directly connected, Loopback0R    12.0.0.0/8 [120/1] via 14.0.0.2, 00:00:13, Serial0/0R    13.0.0.0/8 [120/1] via 14.0.0.2, 00:00:13, Serial0/0     14.0.0.0/30 is subnetted, 1 subnetsC       14.0.0.0 is directly connected, Serial0/0R    15.0.0.0/8 [120/1] via 14.0.0.2, 00:00:13, Serial0/0 R2#show ip route Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static routeGateway of last resort is not setR    10.0.0.0/8 [120/1] via 14.0.0.1, 00:00:12, Serial0/0     12.0.0.0/32 is subnetted, 1 subnetsC       12.0.0.1 is directly connected, Loopback0     13.0.0.0/32 is subnetted, 1 subnetsO       13.0.0.1 [110/65] via 15.0.0.2, 00:30:31, Serial0/1     14.0.0.0/30 is subnetted, 1 subnetsC       14.0.0.0 is directly connected, Serial0/0     15.0.0.0/30 is subnetted, 1 subnetsC       15.0.0.0 is directly connected, Serial0/1R3#show ip route Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area        N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2       E1 - OSPF external type 1, E2 - OSPF external type 2       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2       ia - IS-IS inter area, * - candidate default, U - per-user static route       o - ODR, P - periodic downloaded static routeGateway of last resort is not setO E1 10.0.0.0/8 [110/164] via 15.0.0.1, 00:30:14, Serial0/1     12.0.0.0/32 is subnetted, 1 subnetsO       12.0.0.1 [110/65] via 15.0.0.1, 00:30:51, Serial0/1     13.0.0.0/32 is subnetted, 1 subnetsC       13.0.0.1 is directly connected, Loopback0     14.0.0.0/30 is subnetted, 1 subnetsO E1    14.0.0.0 [110/164] via 15.0.0.1, 00:26:55, Serial0/1     15.0.0.0/30 is subnetted, 1 subnetsC       15.0.0.0 is directly connected, Serial0/1

推荐阅读

    学习写字楼新选择6000元主流配置

    学习写字楼新选择6000元主流配置,,这种配置需要考虑双核心的办公和娱乐平台,充分考虑办公室的办公需求和娱乐需求,以约6000元的预算和cost-e

    酷睿I7 配置

    酷睿I7 配置,配置,玩家国度啦华硕 Rampage II Extreme(3800元)如果米不够,也可以把Extreme改为Gene,不过是小板内存推荐金士顿6G DDR3 2000骇

    提高3A四核羿龙II游戏配置的性能

    提高3A四核羿龙II游戏配置的性能,,以节能环保为主题的IT产业,目前3A低端平台处理器、主板芯片组、独立开发卡性能突出,特别是在与AMD的处理

    opporeno8参数配置及价格

    opporeno8参数配置及价格,面部,亿元,Oppo的荣誉2020年1月4日,接近屏幕关闭传感器是否支持双卡:支持oppor11splus什么时候上市的Oppo R11S P

    查看配置:酷睿i3530集展示办公平台

    查看配置:酷睿i3530集展示办公平台,,由于时间和精力的关系,我们不可能对所有的配置进行评论,希望我们能理解,我希望我们的评论能在那些需要帮

    3500元超额值学生娱乐结构的优化配置

    3500元超额值学生娱乐结构的优化配置,,作为一个DIY的主流用户领域的学生,每个用户51学生攒机的高峰。因为学生用户没有稳定的收入来源,攒机