博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
48-高级路由:BGP 联邦实验
阅读量:5996 次
发布时间:2019-06-20

本文共 1632 字,大约阅读时间需要 5 分钟。

一、实验拓扑:

48-高级路由:BGP 联邦实验
二、实验要求:
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 联邦实验

转载于:https://blog.51cto.com/13856092/2137893

你可能感兴趣的文章
《社会调查数据管理——基于Stata 14管理CGSS数据》一3.5 中国综合社会调查
查看>>
手把手 | 初学者如何用Chainer为漫画上色 深度学习帮你逆袭漫画家(附代码)...
查看>>
《敏捷软件开发:原则、模式与实践(C#版.修订版)》—第1章1.1节敏捷联盟
查看>>
如何管理 Vim 插件
查看>>
重走LFS之路:(七) 基础系统编译准备
查看>>
Java核心技术卷I基础知识3.8.2 条件语句
查看>>
《Java和Android开发学习指南(第2版)》—— 1.4 集成开发环境
查看>>
《无人机DIY》——2.11 三轴直升机
查看>>
【转】移除ios自带button样式
查看>>
《Axure RP8 网站和APP原型制作 从入门到精通》一2.2 竞争分析
查看>>
Go程序设计语言1.2 命令行参数
查看>>
在Nodejs中贯彻单元测试
查看>>
《Java编码指南:编写安全可靠程序的75条建议》—— 指南9:防止LDAP注入
查看>>
《SQL初学者指南(第2版)》——2.3 注释
查看>>
京东消息中间件演进之路:三次更迭,八大突破
查看>>
八年数据库转型之路:技术易改,匠心永存
查看>>
这是一份全球科技公司清洁能源成绩单,腾讯和百度就这么输给了阿里
查看>>
2017我在逻辑思维
查看>>
【Hadoop Summit Tokyo 2016】当Spark邂逅智能电表
查看>>
Java HashMap类基础
查看>>