EBGP管理距离20
IBGP管理距离200
一、建邻与宣告
BGP建邻与宣告分离
IBGP一般环回建邻,EBGP一般直连建邻
EBGP邻居关系存在多条路径时,也可以使用环回建邻,此时需要修改跳数(默认情况下跳数唯一)
R1(config)#router bgp 1
R1(config-router)#bgp router-id 1.1.1.1
R1(config-router)#neighbor 3.3.3.3 remote-as 2
R1(config-router)#neighbor 3.3.3.3 update-source lo 0
R1(config-router)#neighbor 3.3.3.3 ebgp-multihop //修改跳数为255
BGP的路由传递的是BGP路由表中的信息
查看BGP路由表
R1#show ip bgp
刷新路由表
R1#clear ip bgp * soft
宣告满足:1、被宣告路由必须在路由表中
2、被宣告路由必须和路由表中的前缀掩码一致
宣告必须为精确宣告,宣告的段必须与路由表一致(在路由表出现的路由让BGP传递出去)
宣告完成,将生成BGP表:用于装载所有本地发出和接收到的条目
BGP的路由表在收到路由以后需要检查该路由是否可达,如果不可达该路由一定不优,不优了可以人为强制修改下一跳
R1(config-router)#neighbor 3.3.3.3 next-hop-self
建邻的一种简便配置
R1(config)#router bgp 1
R1(config-router)#bgp router-id 1.1.1.1
R1(config-router)#neighbor kkk peer-group
R1(config-router)#neighbor kkk remote-as 1
R1(config-router)#neighbor kkk update-source lo 0
R1(config-router)#neighbor 2.2.2.2 peer-group kkk
R1(config-router)#neighbor 3.3.3.3 peer-group kkk
二、属性
1、Weight
思科私有,选路属性,默认此属性不传递,本路由器为32768,学习到的为0,适用于一台路由器选择某条路径的参数,多条路径weight大的优选,无视邻居属性
修改方式:
①
R1(config)#router bgp 1
R1(config-router)#neighbor 2.2.2.2 weight 1//修改该邻居所有传递过来的路由weight为1
②
R1(config)#ip prefix-list a permit 2.2.2.2/24
R1(config)#route-map we permit 10
R1(config-route-map)#match ip address prefix-list a
R1(config-route-map)#set weight 1
R1(config-route-map)#exi
R1(config)#route-map we permit 20
R1(config-route-map)#exi
R1(config)#router bgp 1
R1(config-router