目录
一、本地优先级特性
二、配置命令:
三、图解:
四、BGP路由水平分割机制
BGP路由13条选路顺序:
- 权重——本地优先级——本地始发——最短AS-PATH——起源属性——MED属性——EBGP路由优于IBGP——八——九——十——十一——十二——十三
- 前六条规律:权本始 短起M
一、本地优先级特性
- 1.1 公有属性,默认值100
- 1.2 只能在IBGP邻居之间传递
- 1.3 适用于自身AS有两个出口路由器,选择其中一个出口时
- 1.4 从EBGP邻居学到的BGP路由本地优先级属性默认不显示,但默认值是100,从自己IBGP邻居学习到的是可以显示的,默认值也是100
- 1.5 数值越大越好
———————————————————————————————————————————————————
二、配置命令:
(和权重选路差不多)
r3(config)#ip prefix-list upaisen seq 1 permit 11.1.1.0/24 //前缀列表,主要匹配路由用的r3(config)#route-map aaa permit 10 //定义一个策略路由,名字为aaa
r3(config-route-map)#match ip address prefix-list upaisen //符合这个路由的
r3(config-route-map)#set local-preference 101 //设置他的本地优先级为101
r3(config-route-map)#exitr3(config)#route-map aaa permit 9999 //用这个放行其他的BGP路由,里面没有匹配什么,意味着默认匹配any!!!!r3(config)#router bgp 200
r3(config-router)#neighbor 23.1.1.2 route-map aaa in //从23.1.1.2收到路由执行route-map aaa策略
r3(config-router)#exitr3#clear ip bgp ipv4 unicast 100 soft //软收敛
r3(config)#route-map aaa permit 9999 //用这个放行其他的BGP路由,里面没有匹配什么,意味着默认匹配any!!!!
——————————————————————————————————————————————————
三、图解:
———————————————————————————————————————————————————
四、BGP路由水平分割机制
这个最优的BGP路由从R1学习到,我不会再把这个最优的BGP路由再重新更新给R1