CCNP(BSCI)实验:配有OSPF协议帧中继Hub and Spoke点到点子接口

老子叫甜甜 提交于 2020-12-04 15:15:30

CCNP(BSCI)实验:配有OSPF协议帧中继Hub and Spoke点到点子接口
路由器上的预配置:
R1(config)#int lo0
R1(config-if)#ip add 1.1.1.1 255.255.255.0
R1(config-if)#int s3/0
R1(config-if)#en fr
R1(config-if)#no fr inv
R1(config-if)#no sh
R1(config-if)#int s3/0.1 p
R1(config-subif)#ip add 12.1.1.1 255.255.255.0
R1(config-subif)#fr int 102(dlci号)
R1(config-fr-dlci)#end
R1(config)#int s3/0.2 p
R1(config-subif)#ip add 13.1.1.1 255.255.255.0
R1(config-subif)#fr int 103
R1(config-fr-dlci)#end














R2(config)#int lo0
R2(config-if)#ip add 2.2.2.2 255.255.255.0
R2(config-if)#int s3/0
R2(config-if)#ip add 12.1.1.2 255.255.255.0
R2(config-if)#en fr
R2(config-if)#no fr inv
R2(config-if)#fr map ip 12.1.1.1 201 b
R2(config-if)#no sh
R3(config)#int lo0
R3(config-if)#ip add 3.3.3.3 255.255.255.0
R3(config)#int s3/0
R3(config-if)#en fr
R3(config-if)#no fr inv
R3(config-if)#ip add 13.1.1.3 255.255.255.0
R3(config-if)#fr map ip 13.1.1.1 301 b
R3(config-if)#no sh
R3(config-if)#end
实验过程:
第一步:在各路由器上配置ospf
R1(config)#router os 11
R1(config-router)#router-id 1.1.1.1
R1(config-router)#net 1.1.1.1 0.0.0.255 a 0
R1(config-router)#net 12.1.1.1 0.0.0.255 a 0
R1(config-router)#net 13.1.1.1 0.0.0.255 a 0
R1(config-router)#end























R2(config)#router os 11
R2(config-router)#net 2.2.2.2 0.0.0.255 a 0
R2(config-router)#net 12.1.1.2 0.0.0.255 a 0
R2(config-router)#end


R3(config)#router os 11
R3(config-router)#net 3.3.3.3 255.255.255.0 a 0
R3(config-router)#net 13.1.1.3 0.0.0.255 a 0
R3(config-router)#end
CCNP(BSCI)实验:配有OSPF协议帧中继Hub and Spoke点到点子接口
第四步:通过修改spoke端的两个物理接口的网络类型来使之与Hub端子接口相同
R3(config)#int s3/0
R3(config-if)#ip o n point-to-p
R3(config-if)#exit







R2(config)#int s3/0
R2(config-if)#ip o n point-to-p
R2(config-if)#
我们看到了两条日志
Nov 20 21:23:47.595: %OSPF-5-ADJCHG: Process 11, Nbr 3.3.3.3 on Serial3/0.2 from LOADING to FULL, Loading Done
Nov 20 21:24:32.107: %OSPF-5-ADJCHG: Process 11, Nbr 2.2.2.2 on Serial3/0.1 from LOADING to FULL, Loading Done
//这两条日志表示了邻居关系建立完成,接下来我们查看
第五步:查看邻居关系
R1#sh ip o n






Neighbor ID Pri State Dead Time Address Interface
3.3.3.3 0 FULL/ - 00:00:37 13.1.1.3 Serial3/0.2
2.2.2.2 0 FULL/ - 00:00:31 12.1.1.2 Serial3/0.1
//这里为点到点的网络类型,所以不选举DR与BDR
第六步:小小测试
R2#ping 3.3.3.3 so 2.2.2.2




Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 3.3.3.3, timeout is 2 seconds:
Packet sent with a source address of 2.2.2.2
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 12/54/80 ms
R2#




骐骥一跃,不能十步
驽马十驾,功在不舍

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!