1. 程式人生 > >39-高級路由:BGP AS長度:R2入站方向增加

39-高級路由:BGP AS長度:R2入站方向增加

weight roc ado access shadow path color con mage

一、實驗拓撲:
技術分享圖片
二、實驗要求:
1、R2入站方向上部署set as-path prepend,使得4.4.4.0網段進入R2是增加AS長度;
2、驗證:R3上關於4.4.4.0條目最優路徑是否是R1?
三、命令部署:
R2(config)#access-list 10 permit 4.4.4.0 0.0.0.255
R2(config)#route-map pl permit 10
R2(config-route-map)#match ip address 10
R2(config-route-map)#set as-path prepend 5 6 7 8
R2(config-route-map)#route-map pl permit 1000

R2(config)#router bgp 123
R2(config-router)#neighbor 14.1.1.4 route-map pl in

四、驗證:
R2#show ip bgp
Network Next Hop Metric LocPrf Weight Path
**> 4.4.4.0/24 24.1.1.4 0 0 5 6 7 8 4 I

R3#show ip bgp

Network Next Hop Metric LocPrf Weight Path
*>i4.4.4.0/24 1.1.1.1 0 100 0 4 i

  • i 2.2.2.2 0 100 0 5 6 7 8 4 i

技術分享圖片

39-高級路由:BGP AS長度:R2入站方向增加