BGP基础之weigh t属性
一试验说明:
在做本实验之前,我先简单说明一下w ei ght属性的一些概念。
1 weight属性是ci sco的私有属性,是一种选路属性,用来选择一条最优路径。
2 weight属性只对本地路由器有效。该属性不会被传递。
3 weight值的取值范围是0-65535。对于本路由器产生的路由,weight的默认值=32768;对于所有学到的路由,weight的默认值=0。
4 对于到同一目的地的多条路径来说,weight值越高的路径越优先
本实验就是来验证一下w eight值对于BG P选路的影响。拓扑图如上,试验步骤如下:
1 底层联通
2 在各个AS之间分别建立E BGP邻居
3 在AS4中将175.10.0.0网络宣告进BGP。
4 在RTC上观察到175.10.0.0的路径
5 在RTC上修改w eig ht值。使RTC选择RTB作为下一跳到达175.10.0.0网络。
―――――――――――――――――――――――――――――――――――――――
二试验配置
1 底层配置
底层已经联通,过程不再重复――――――――――――――――――――――――――――――――――
――
2 配置BGP
RTA#sh run | b r b
router bgp 100
no synchr oniza tion
neighb or 12.0.0.1 remote-as 4
neighb or 23.0.0.3 remote-as 300
no auto-summar y
――――――――――
RTE#sh run | b r b
router bgp 4
no synchr oniza tion
networ k 175.10.0.0 /将该网络宣告进BGP中。
mona
neighb or 12.0.0.2 remote-as 100
neighb or 14.0.0.4 remote-as 200
no auto-summar y
plea是什么意思
――――――――――
RTB#sh run | b r b
router bgp 200
no synchr oniza tion
neighb or 14.0.0.1 remote-as 4poop
neighb or 34.0.0.3 remote-as 300
no auto-summar y
――――――――――
RTC#sh run | b r btalk box
router bgp 300
no synchr oniza tion
neighb or 23.0.0.2 remote-as 100
neighb or 34.0.0.4 remote-as 200
no auto-summar y ――――――――――――――――――――――――――――――――――――――
3 在RTC上进行查看
david choi
RTC#sh ip bgp
Networ k Next Hop Metric LocPrf Weight Path
* 175.10.0.0 34.0.0.4 0 200 4 i *> 23.0.0.2 0 100 4 i
这时可以看到RTC选择RTA作为到达目标的下一跳。我们现在要做的就是在RTC上修改weight值,让RTC选择RTB作为到达目标的下一跳。――――――――――――――――――――――――――――――――――――――
4 在RTC上直接修改weight值
RTC(config)#router bgp 300
RTC(config-router)#neighb or 23.0.0.2 weight100
RTC(config-router)#neighb or 34.0.0.4 weight200
将RTB发来的路由的w eight值修改的大于RTA的。
RTC#sh ip bgp
Networ k Next Hop Metric LocPrf Weight Path
* 175.10.0.0 23.0.0.2 100 100 4 i *> 34.0.0.4 200 200 4 i
这时可以看到RTC现在选择RTB作为下一跳到达目标网络175.10.0.0
RTC#sh ip route
34.0.0.0/24 is subnet ted, 1 subnet s
C 34.0.0.0 is direct ly connec ted, Serial2/2
草莓用英语怎么说
B 175.10.0.0/16 [20/0] via 34.0.0.4, 00:11:24
23.0.0.0/24 is subnet ted, 1 subnet s
C 23.0.0.0 is direct ly connec ted, Serial2/1
aux是什么意思
查看路由表也可以看到,RTC到达175.10.0.0网络的下一跳是34.0.0.4(RTB)
这也证明了到同一目标网络的多条路径,weight值越大,则该路径越优先――――――――――――――――――――――――――――――――――
我们也可以用A S列表和r oute-map来修改weigh t。
首先建立一个A S列表
RTC(config)#ip as-path access-list 1 permit^100
这条语句的含义是匹配所有AS路径的字符串开始是100的路由条目。
然后建立ro ute-map
RTC(config)#route-map WEIGHT permit10
RTC(config-route-map)#matchas-path 1 /匹配AS列表1
RTC(config-route-map)#t weight100 /设定weig ht=100
这条语句的意义是将匹配上AS列表1的路由的w eigh t设为100
RTC(config)#route-map WEIGHT permit20
RTC(config-route-map)#t weight200
month是什么意思这条语句的意义是所有其它的路由的w eigh t设为200
最后在BGP进程中调用该rout e-map
RTC(config)#router bgp 300
RTC(config-router)#neighb or 23.0.0.2 route-map WEIGHT in中英互译
RTC(config-router)#neighb or 34.0.0.4 route-map WEIGHT in
RTC#sh ip bgp
Networ k Next Hop Metric LocPrf Weight Path
码头英文*> 175.10.0.0 34.0.0.4 200200 4 i
* 23.0.0.2 100100 4 i
可以看到这时RTC选择了RTB作为到达目标网络的下一跳,因为这条路由的w eig ht值比较大。