BGP策略实验

配好ip后,在R1 R2 R3上起ospf

BGP策略实验_第1张图片 

BGP策略实验_第2张图片

BGP策略实验_第3张图片

 配置bgp

BGP策略实验_第4张图片

BGP策略实验_第5张图片

BGP策略实验_第6张图片

BGP策略实验_第7张图片

 查看bgp邻居表

BGP策略实验_第8张图片

 宣告全网内24网段的用户路由,查看bgp路由表

BGP策略实验_第9张图片

BGP策略实验_第10张图片

检查连通性的时候要用 ping -a +源环回 +目的环回。因为只宣告了24网段,也就是环回

 1.使用PV策略

 然后在bgp中R2入方向调用即可

验证

BGP策略实验_第11张图片

2.使用AS_Path策略

 由于从R2走的as-path属性多于从R3走,所以路由会从R3走BGP策略实验_第12张图片

验证

BGP策略实验_第13张图片

走的是R3

 3.使用MED

将通往192.168.12.0/24的路由从R2走的med调大,从R3走的med调小,路由就会从R3走

在R2和R3上分别做策略

R2

 在bgp中,在R4出方向上调用

 

R3

 R4出方向上调用

 验证

BGP策略实验_第14张图片

4.5.使用LP

到达1.0网段,从R2走的优先级调大,到达2.0网段,从R3走的优先级调大

从R2走

BGP策略实验_第15张图片

从R3走

BGP策略实验_第16张图片

验证

BGP策略实验_第17张图片

 

7.AS策略

使用正则

BGP策略实验_第18张图片

 之前的bgp表

BGP策略实验_第19张图片

修改后的bgp表

8.使用community

[r4]route-policy com permit node 10
[r4-route-policy]apply community 400:11
[r4-route-policy]q
[r4]bgp 400
[r4-bgp]net 192.168.3.0 24 route-policy com
[r4-bgp]peer 24.0.0.2 advertise-community
[r4-bgp]peer 34.0.0.3 advertise-community

[r2]bgp 123
[r2-bgp]peer 1.1.1.1 ad    
[r2-bgp]peer 1.1.1.1 advertise-community

[r3]bgp 123
[r3-bgp]peer 1.1.1.1 ad    
[r3-bgp]peer 1.1.1.1 advertise-community

[r1]bgp 123
[r1-bgp]peer 15.0.0.5 ad    
[r1-bgp]peer 15.0.0.5 advertise-community
 

[r5]bgp 500
[r5-bgp]peer 15.0.0.1 route-policy com import

验证

BGP策略实验_第20张图片

你可能感兴趣的:(网络)