欢迎来到天天文库
浏览记录
ID:49650919
大小:243.50 KB
页数:15页
时间:2020-03-03
《CCNP必做实验之-BGP实验.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、BGP的多区域、最优路由、水平分割辅导:莫鸿鹏老师总结:张科贤实验目的:使R7通过BGP链路访问R4上的44.44.44.0/24网络,R4通过BGP网络能访问R7上的77.77.77.0/24网络(在RIP、OSPF、Static路由中不能宣告44.44.44.0和77.77.77.0的网络)(先不使用R1)1、将各个路由器的IP地址按照拓扑图配置2、按照拓扑图使用启用相应的路由协议,配置完成以后,测试通一区域内个路由器的连通性(特别是环回接口)。3、以上配置是底层的互通性,只有在底层能够连同的情况下才,才可以
2、继续配置BGP4、配置BGP的命令行如下:R7(config)#routerbgp700BGP进程号,一个路由器上只能启用一个BGP进程R7(config-router)#noauR7(config-router)#nosynchronizationR7(config-router)#bgprouter-id7.7.7.7R7(config-router)#neighbor5.5.5.5remote-as235此行命令是制定一个邻居,BGP的邻居需要认为指定,区域号用来辨别此BGP邻居类型是EBGP还是IBGPR
3、7(config-router)#neighbor5.5.5.5update-sourceloopback0BGP用环回接口建立邻居关系,获得更高的稳定性和冗余性,但是随之而来的是源检测的问题,用指定源地址的方法可以解决这个问题这是BGP协议的基本配置,并指定了邻居,在其它路由器上也做同样的操作R5(config)#routerbgp235R5(config-router)#noauR5(config-router)#nosynchronizationR5(config-router)#bgprouter-id5
4、.5.5.5R5(config-router)#neighbor7.7.7.7remote-as700R5(config-router)#neighbor7.7.7.7因为邻居关系是用环回接口建立的,即它们通亮是通过这个接口进行的,这和RouterID不同,它不只是标示,数据包会将源地址填写为此地址,所以想用环回接口建立邻居,邻居间环回接口的连通性非常必要update-sourcelo0R5(config-router)#neighbor2.2.2.2remote-as235R5(config-router)#n
5、eighbor2.2.2.2update-sourcelo0R2(config)#routerbgp235R2(config-router)#bgprouter-id2.2.2.2R2(config-router)#nosyR2(config-router)#noauR2(config-router)#neighbor5.5.5.5remote-as235R2(config-router)#neighbor5.5.5.5update-sourcelo0R2(config-router)#neighbor3.3.3
6、.3remote235R2(config-router)#neighbor3.3.3.3update-sourcelo0R3(config)#routerbgp235R3(config-router)#bgprouter-id3.3.3.3R3(config-router)#noauR3(config-router)#nosyR3(config-router)#neighbor2.2.2.2remote-as235R3(config-router)#neighbor2.2.2.2updatelo0R3(confi
7、g-router)#neig4.4.4.4remote400R3(config-router)#nei4.4.4.4update-sourcelo0R4(config)#routerbgp400R4(config-router)#noauR4(config-router)#nosyR4(config-router)#bgprouter-id4.4.4.4R4(config-router)#neighbor3.3.3.3remote-as235R4(config-router)#nei3.3.3.3updatelo
8、0设置好以后,我们来检查一下邻居的建立情况,检查邻居建立情况可以通过showipbgpneighbor,但是showipbgpneighbor显示比较多的参数,我们可以选择showipbgpsummary来查看简要的邻居建立情况。R7#shipbgpsuBGProuteridentifier7.7.7.7,localASnumber700BGPtableversionis
此文档下载收益归作者所有