码迷,mamicode.com
首页 > 其他好文 > 详细

48-高级路由:BGP 联邦实验

时间:2018-07-07 17:55:00      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:multi   ocp   size   process   route   network   bcb   src   邻居   

一、实验拓扑:
技术分享图片
二、实验要求:
1、使用私有AS号在一个主AS内建立两个子AS,R3与R2在子AS之间建立逻辑EBGP关系;
2、该拓扑部署联邦需要把R1、R2、R3的BGP路由进程全部删除重新部署;
3、验证:R2是否可以学到4.4.4.4的路由;R4路由器建立BGP邻居关系是如何建立的?
三、命令部署:
R1配置:
R1(config)#no router bgp 123
R1(config)#router bgp 65001
R1(config-router)#bgp router-id 1.1.1.1
R1(config-router)#bgp confederation identifier 123

R1(config-router)#neighbor 3.3.3.3 remote-as 65001
R1(config-router)#neighbor 3.3.3.3 update-source loopback 0
R1(config-router)#neighbor 3.3.3.3 next-hop-self

R1(config-router)#neighbor 14.1.1.4 remote-as 4

R2配置:
R2(config)#no router bgp 123
R2(config)#router bgp 65002
R2(config-router)#bgp router-id 2.2.2.2

R2(config-router)#bgp confederation identifier 123
R2(config-router)#bgp confederation peers 65001

R2(config-router)#neighbor 3.3.3.3 remote-as 65001
R2(config-router)#neighbor 3.3.3.3 update-source loopback 0
R2(config-router)#neighbor 3.3.3.3 ebgp-multihop

R3配置:
R3(config)#no router bgp 123
R3(config)#router bgp 65001
R3(config-router)#bgp router-id 3.3.3.3

R3(config-router)#bgp confederation identifier 123
R3(config-router)#bgp confederation peers 65002

R3(config-router)#neighbor 1.1.1.1 remote-as 65001
R3(config-router)#neighbor 1.1.1.1 update-source loopback 0

R3(config-router)#neighbor 2.2.2.2 remote-as 65002
R3(config-router)#neighbor 2.2.2.2 update-source loopback 0
R3(config-router)#neighbor 2.2.2.2 ebgp-multihop 255

四、验证:
R2#show ip bgp
Network Next Hop Metric LocPrf Weight Path
*> 4.4.4.0/24 1.1.1.1 0 100 0 (65001) 4 I

R4#show ip bgp summary
Neighbor V AS MsgRcvd MsgSent TblVer InQ OutQ Up/Down State/PfxRcd
14.1.1.1 4 123 16 180 2 0 0 00:14:24
技术分享图片

48-高级路由:BGP 联邦实验

标签:multi   ocp   size   process   route   network   bcb   src   邻居   

原文地址:http://blog.51cto.com/13856092/2137893

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!