BGP实验
作者:互联网
实验图
接口IP拓扑图
1.接口配置相应IP
2.启动OSPF协议并进行宣告
3.启动BGP协议,开始建立邻居
4.邻接建立完成,开始宣告路由
R1上bgp 1
network 10.1.1.0 255.255.255.0 —修改下一跳为本地地址
宣告完成后查看bgp路由表,发现R3和R5不优,而R2优,则需要在R2上修改下一跳
R2上bgp64512:
bgp 64512
peer 172.16.3.1 next-hop-local
peer 172.16.5.1 next-hop-local
此时再次查看R3,R5优,但R4,R7没有因为IGP水平分割,需要在R3,R6反射器
R3上bgp64512:
路由反射器
bgp 64512
peer 172.16.2.1 reflect-client -----172.16.2.1成为本地的客户端,同时本地成为RR
R6上bgp64513:
bgp 64513
peer 172.16.5.1 reflect-client
R7上bgp64513:
bgp 64513
peer 172.16.4.1 next-hop-local
peer 172.16.6.1 next-hop-local
R8上bgp3:
bgp 3
network 10.1.2.0 255.255.255.0
宣告完成后查看bgp路由表,R4和R6不优,R7优,需要在R7上修改下一跳
5.汇总减少路由条目
R2路由器:
ip route-static 172.16.0.0 21 NULL 0
bgp 64512
network 172.16.0.0 21
R7路由器:
ip route-static 172.16.0.0 21 NULL 0
bgp 64513
network 172.16.0.0 21
6.配置GRE
R1路由器:
interface Tunnel0/0/0
ip address 10.1.3.1 255.255.255.0
tunnel-protocol gre
source 10.1.1.1
destination 10.1.2.1
R8路由器:
interface Tunnel0/0/0
ip address 10.1.3.2 255.255.255.0
tunnel-protocol gre
source 10.1.2.1
destination 10.1.1.1
7.R1路由器与R8路由器配置静态路由
R1路由器:
ip route-static 192.168.2.0 24 10.1.3.2
R8路由器:
ip route-static 192.168.1.0 24 Tunnel 0/0/0
实验完成
标签:10.1,bgp,ip,BGP,实验,172.16,peer,路由器 来源: https://blog.csdn.net/weixin_45802536/article/details/122820838