8.2 BGP路由属性详解

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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值