BGP检查配置之前,我们向大家介绍了:BGP基本配置之中路由反射器实例的概述和基本配置
检查BGP之RA
- RA#sh ip bgp
- Network Next Hop Metric LocPrf Weight Path
- *> 1.1.1.0/24 0.0.0.0 0 32768 i
- *> 2.2.2.0/24 192.1.1.2 0 0 200 i
- *> 3.3.3.0/24 192.1.1.2 0 200 i
可以看到RA已经通过BGP学习到了各个虚拟接口,这两条路由下一跳均为192.1.1.2。这里需指出当AS边界路由器通过EBGP转发路由信息时,总是将这些路由信息的下一跳设定为自己。
检查BGP之RB
- RB#sh ip bgp
- Network Next Hop Metric LocPrf Weight Path
- *> 1.1.1.0/24 192.1.1.1 0 0 100 i
- *> 2.2.2.0/24 0.0.0.0 0 32768 i
- *>i3.3.3.0/24 193.1.1.2 0 100 0 i
可以看到RB也学习到了这些虚拟接口
检查BGP之RC
- RC#sh ip bgp
- Network Next Hop Metric LocPrf Weight Path
- *>i1.1.1.0/24 192.1.1.1 0 100 0 100 i
- *>i2.2.2.0/24 193.1.1.1 0 100 0 i
- *> 3.3.3.0/24 0.0.0.0 0 32768 i
RC也学习到了这些路由
检查BGP之RD
- RD#sh ip bgp
- Network Next Hop Metric LocPrf Weight Path
- *>i3.3.3.0/24 194.1.1.1 0 100 0 i
我们注意到这时RD并没有学习到1.1.1.0/24和2.2.2.0/24两个网段。这是因为在一个BGP域中,RC并不会将它通过RB学习到的路由转发给RD。这是我们需要将RC配置成路由反射器。配置如下:
- RC(config)# router bgp 200
- RC(config)#neighbor 193.1.1.1 route-reflector-client
- RC(config)#neighbor 194.1.1.2 route-reflector-client
这两条命令是将RB和RD设为RC的路由反射器客户端
BGP再次检查
我们再次在RD上进行验证,之前用 clear ip bgp * 重启BGP进程,稍等一会儿在RD上进行查看;
- RD#sh ip bgp
- Network Next Hop Metric LocPrf Weight Path
- *>i1.1.1.0/24 192.1.1.1 0 100 0 100 i
- *>i2.2.2.0/24 193.1.1.1 0 100 0 i
- *>i3.3.3.0/24 194.1.1.1 0 100 0 i
这时RD已经学习到了所有的虚拟接口,至此我们的路由反射器配置成功。下面我们将通过查看路由表来追踪这些路由信息。在这之前我们再次进入所有路由器的 BGP进程,输入: no synchronization 来取消BGP与IGP的同步关系,使得IGP能学到BGP中的路由信息,再次 clearip bgp * 和 clear ip route * 稍等片刻,等待BGP邻接关系再次建立后,我们在RB,RC,RD 分别用 sh iproute 就都能得到完整的路由信息了。以RC为例;
- RC#sh ip route
- Gateway of last resort is not set
- 1.0.0.0/24 is subnetted, 1 subnets
- B 1.1.1.0 [200/0] via 192.1.1.1, 02:08:19
- 2.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
- O 2.2.2.2/32 [110/11] via 193.1.1.1, 02:08:58, Ethernet0
- B 2.2.2.0/24 [200/0] via 193.1.1.1, 02:08:43
- 3.0.0.0/24 is subnetted, 1 subnets
- C 3.3.3.0 is directly connected, Loopback0
- C 193.1.1.0/24 is directly connected, Ethernet0
- O 192.1.1.0/24 [110/74] via 193.1.1.1, 02:08:58, Ethernet0
- C 194.1.1.0/24 is directly connected, Serial0
到现在为止,所有路由器的BGP表都已经完整,RB,RC,RD的IP路由表也已经完整,现在我们来看RA的路由表。
- RA#sh ip route
- Gateway of last resort is not set
- 1.0.0.0/24 is subnetted, 1 subnets
- C 1.1.1.0 is directly connected, Loopback0
- 2.0.0.0/24 is subnetted, 1 subnets
- B 2.2.2.0 [20/0] via 192.1.1.2, 02:18:43
- 3.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
- B 3.3.3.3/32 [20/11] via 192.1.1.2, 02:12:30
- B 3.3.3.0/24 [20/0] via 192.1.1.2, 02:18:43
- C 192.1.1.0/24 is directly connected, Serial0
我们可以看到在RA的路由表中并没有193.1.1.0/24和194.1.1.0/24这两个网段的路由,这是因为这两条路由是在AS200中通过OSPF发布的,因此R1当然无法学到。我们需要在AS边界路由器RB上将OSPF的路由信息重发布到BGP中;配置如下:
- RB(config)#router bgp 200
- RB(config)#redistribute ospf 1
再次来到RA中,
- RA#sh ip route
- Gateway of last resort is not set
- 1.0.0.0/24 is subnetted, 1 subnets
- C 1.1.1.0 is directly connected, Loopback0
- 2.0.0.0/24 is subnetted, 1 subnets
- B 2.2.2.0 [20/0] via 192.1.1.2, 02:26:51
- 3.0.0.0/8 is variably subnetted, 2 subnets, 2 masks
- B 3.3.3.3/32 [20/11] via 192.1.1.2, 02:20:39
- B 3.3.3.0/24 [20/0] via 192.1.1.2, 02:26:51
- B 193.1.1.0/24 [20/0] via 192.1.1.2, 02:20:38
- C 192.1.1.0/24 is directly connected, Serial0
- B 194.1.1.0/24 [20/74] via 192.1.1.2, 02:20:38
我们可以看到这两条路由已经被RA学习到了。
BGP基本配置中路由反射器的配置就介绍完了,希望大家已经掌握。
【编辑推荐】