操作BGP路由过滤(基于路由条目)实际案例(配图…

2008-02-23 04:55:54来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

路由能够基于网络号过滤到或来自于某个特定邻居的路由更新。由访问列表组成的过滤器被应用到所有发送到或来自于某个特定邻居的BGP更新上。 本案例中,我们在R1上配置一个distribute-list,防止1.0.0.0/8被通告入AS200中。 //// r1 //// int f2/0 ip ad 192.1.1.1 255.255.255.0 int f3/0 ip ad 193.1.1.1 255.255.255.0 int lo0 ip ad 1.1.1.1 255.255.255.0 int lo1 ip ad 2.2.2.2 255.255.255.0 router bgp 100 no syn neighbor 192.1.1.2 remote-as 200 neighbor 193.1.1.3 remote-as 200 network 1.0.0.0 network 1.0.0.0 neighbor 193.1.1.3 distribute-list 1 out access-list 1 deny 1.0.0.0 0.255.255.255 access-list 1 permit any //// r2 //// int f2/0 ip ad 192.1.1.2 255.255.255.0 int f4/0 ip ad 194.1.1.2 255.255.255.0 router os 1 netw 0.0.0.0 255.255.255.255 a 0 passive-interface f2/0 router bgp 200 no syn neighbor 192.1.1.1 remote-as 100 neighbor 194.1.1.4 remote-as 200 neighbor 195.1.1.3 remote-as 200 neighbor 194.1.1.4 next-hop-self //// r3 //// int f3/0 ip ad 193.1.1.3 255.255.255.0 int f5/0 ip ad 195.1.1.3 255.255.255.0 router os 1 netw 0.0.0.0 255.255.255.255 a 0 passive-interface f3/0 router bgp 200 no syn neighbor 193.1.1.1 remote-as 100 neighbor 195.1.1.4 remote-as 200 neighbor 195.1.1.4 next-hop-self neighbor 194.1.1.2 remote-as 200 //// r4 //// int f4/0 ip ad 194.1.1.4 255.255.255.0 int f5/0 ip ad 195.1.1.4 255.255.255.0 int lo0 ip ad 4.4.4.4 255.255.255.0 router os 1 netw 0.0.0.0 255.255.255.255 a 0 router bgp 200 no syn neighbor 194.1.1.2 remote-as 200 neighbor 195.1.1.3 remote-as 200 netw 4.0.0.0 验证: r2#sh ip bgp
Network Next Hop Metric LocPrf Weight Path
*> 1.0.0.0 192.1.1.1 0 0 100 i
* i2.0.0.0 193.1.1.1 0 100 0 100 i
*> 192.1.1.1 0 0 100 i
*>i4.0.0.0 194.1.1.4 0 100 0 i 由193.1.1.1学来的1.0.0.0/8路由条目已被过滤!

本新闻共2页,当前在第11 2

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:EzVPN Client 完整配置

下一篇:OSPF邻居认证实际案例(配图)+详细验证过程