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

bgp Confederation

时间:2020-07-29 15:03:34      阅读:55      评论:0      收藏:0      [点我收藏+]

标签:ems   传递   com   min   ibgp   多个   tps   ini   note   

netns-testbed

https://qiita.com/_norin_/items/f2c1b0158ee34abcdd0c

Confederation

 定义

  • 考虑到在AS内部的防环机制,iBGP之间传递路由只能有一跳。
  • 联邦,在一个AS之内,划分出多个子AS域,建立EBGP邻接关系,可以将路由母AS之内进行多跳的传递。

举个例子:

  • 拓扑R1-R2-R3-R4
  • R1在AS1,R2、R3、R4在AS2,R2,、R3在65002子AS,R4在65004子AS。
R1:
router bgp 1
 network 1.1.1.1 mask 255.255.255.255
 neighbor 12.1.1.2 remote-as 2
R2:
router bgp 65002                            # 宣告子AS号
 bgp router-id 2.2.2.2
 bgp confederation identifier 2             # 宣告主AS号
 neighbor 12.1.1.1 remote-as 1
 neighbor 23.1.1.3 remote-as 65002          # 使用子AS号指定邻居
R3:
router bgp 65002
 bgp router-id 3.3.3.3
 bgp confederation identifier 2
 bgp confederation peers 65004 
 neighbor 23.1.1.2 remote-as 65002
 neighbor 34.1.1.4 remote-as 65004
R4:
router bgp 65004
 bgp router-id 4.4.4.4
 bgp confederation identifier 2
 bgp confederation peers 65002 
 neighbor 34.1.1.3 remote-as 65002

可以将路由反射器和联邦联合使用,解决复杂问题

bgp Confederation

标签:ems   传递   com   min   ibgp   多个   tps   ini   note   

原文地址:https://www.cnblogs.com/dream397/p/13395970.html

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