BGP综合实验

实验拓扑

划分IP地址的拓扑

实验要求

1,AS1存在两个环回,一个地址为192.168.1.0/24该地址不能在任何协议中宣告
    AS3中存在两个环回,一个地址为192.168.2.0/24该地址不能在任何协议中宣告,最终要求这两个环回可以互相通讯
2,整个AS2的Ip地址为172.16.0.0/16,请合理划分
3,AS间的骨干链路IP地址随意定制
4.使用BGP协议让整个网络所有设备的环回可以互相访问
5.减少路由条自数量,避免环路出现

实验思路

1、合理划分IP地址,配置IP地址及环回接口。

2、在AS2当中启动OSPF,作为BGP协议的基础

3、启动BGP协议建立邻居关系,使得整个BGP协议可以使得BGP路由可达。

4、减少路由条目,可以使用配置一条空接口路由来完成。

5、通过再AR1与AR8上创建GRE隧道,来实现192.168.1.0/24与192.168.2.0/24的环回接口进行通讯。

实验步骤

1.划分网段


R1 - R2之间划分的网段为 --- 12.0.0.0/24

R7 - R8之间划分的网段为 --- 23.0.0.0/24

AS2内的网段

172.16.0.0/16

可划分为172.16.0.0/24 --- 作为P2P网络的网段保留

可划分为172.16.1.0/24 --- 作为AS内的骨干链路

进一步划分

              R2 - R3之间划分的网段 172.16.1.0/29

              R3 - R4之间划分的网段 172.16.1.8/29

              R2 - R5之间划分的网段 172.16.1.16/29

              R4 - R7之间划分的网段 172.16.1.24/29

              R5 - R6之间划分的网段 172.16.1.32/29

              R6 - R7之间划分的网段 172.16.1.40/29

R2 - R7的环回网段划分为:172.16.2.0/24、172.16.3.0/24、172.16.4.0/24、172.16.5.0/24、172.16.6.0/24、172.16.7.0/24。

2.配置IP地址

R1

        

R2

R3

R4

R5

R6

R7

R8

3.AS2配置OSPF

R2

[r2]ospf 1 router-id 2.2.2.2
[r2-ospf-1]a 0
[r2-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255
 

R3

[r3]ospf 1 router-id 3.3.3.3
[r3-ospf-1]a 0
[r3-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255
 

R4

[r4]ospf 1 router-id 4.4.4.4
[r4-ospf-1]a 0
[r4-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255
 

R5

[r5]ospf 1 router-id 5.5.5.5
[r5-ospf-1]a 0
[r5-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255
 

R6

[r6]ospf 1 router-id 6.6.6.6
[r6-ospf-1]a 0
[r6-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255
 

R7

[r7]ospf 1 router-id 7.7.7.7
[r7-ospf-1]a 0
[r7-ospf-1-area-0.0.0.0]network 172.16.0.0 0.0.255.255

测试


4.配置BGP

[r1]bgp 1 
[r1-bgp]route-select
[r1-bgp]router-id 1.1.1.1  
[r1-bgp]peer 12.0.0.2 as 2
 

[r2]bgp 64512  
[r2-bgp]route-select
[r2-bgp]router-id 2.2.2.2  
[r2-bgp]confederation id 2   
[r2-bgp]confederation peer-as 64513
[r2-bgp]peer 12.0.0.1 as 1  
[r2-bgp]peer 172.16.3.1 as 64512   
[r2-bgp]peer 172.16.3.1 connect-interface LoopBack 0   
[r2-bgp]peer 172.16.5.1 as 64513  
[r2-bgp]peer 172.16.5.1 connect-interface LoopBack 0
[r2-bgp]peer 172.16.5.1 ebgp-max-hop 2  
[r2-bgp]peer 172.16.3.1 next-hop-local
[r2-bgp]peer 172.16.5.1 next-hop-local
 

[r3]bgp 64512
[r3-bgp]router-id 3.3.3.3 
[r3-bgp]confederation id 2
[r3-bgp]peer 172.16.2.1 as 64512  
[r3-bgp]peer 172.16.2.1 connect-interface LoopBack 0 
[r3-bgp]peer 172.16.4.1 as 64512 
[r3-bgp]peer 172.16.4.1 connect-interface LoopBack 0
 

[r4]bgp 64512
[r4-bgp]router-id 4.4.4.4 
[r4-bgp]confederation id 2
[r4-bgp]confederation peer-as 64513
[r4-bgp]peer 172.16.3.1 as 64512
[r4-bgp]peer 172.16.3.1 connect-interface LoopBack 0
[r4-bgp]peer 172.16.7.1 as 64513
[r4-bgp]peer 172.16.7.1 connect-interface LoopBack 0
[r4-bgp]peer 172.16.7.1 ebgp-max-hop 2
 

[r5]bgp 64513
[r5-bgp]router-id 5.5.5.5  
[r5-bgp]confederation id 2
[r5-bgp]confederation peer-as 64512
[r5-bgp]peer 172.16.2.1 as 64512
[r5-bgp]peer 172.16.2.1 connect-interface LoopBack 0
[r5-bgp]peer 172.16.2.1 ebgp-max-hop 2
[r5-bgp]peer 172.16.6.1 as 64513
[r5-bgp]peer 172.16.6.1 connect-interface LoopBack 0
 

[r6]bgp 64513
[r6-bgp]router-id 6.6.6.6   
[r6-bgp]confederation id 2
[r6-bgp]peer 172.16.5.1 as 64513  
[r6-bgp]peer 172.16.5.1 connect-interface LoopBack 0
[r6-bgp]peer 172.16.7.1 as 64513
[r6-bgp]peer 172.16.7.1 connect-interface LoopBack 0
 

[r7]bgp 64513
[r7-bgp]router-id 7.7.7.7   
[r7-bgp]confederation id 2
[r7-bgp]confederation peer-as 64512 
[r7-bgp]peer 172.16.6.1 as 64513
[r7-bgp]peer 172.16.6.1 connect-interface LoopBack 0  
[r7-bgp]peer 172.16.4.1 as 64512 
[r7-bgp]peer 172.16.4.1 connect-interface LoopBack 0
[r7-bgp]peer 172.16.4.1 ebgp-max-hop 2
[r7-bgp]peer 23.0.0.2 as 3
[r7-bgp]peer 172.16.4.1 next-hop-local
[r7-bgp]peer 172.16.6.1 next-hop-local
 

[r8]bgp 3   
[r8-bgp]router-id 8.8.8.8    
[r8-bgp]peer 23.0.0.1 as 2
 

检测

5、发布路由

[r1]bgp 1
[r1-bgp]network 192.168.11.0 24

[r8]bgp 3
[r8-bgp]network 192.168.8.0 24
 

6、配置路由反射器

[r3]bgp 64512    
[r3-bgp]peer 172.16.2.1 reflect-client 
 

[r6]bgp 64513
[r6-bgp]peer 172.16.7.1 reflect-client
 

7、做空接口、汇总以及宣告

[r2]ip route-static 172.16.0.0 21 NULL 0   
[r2]bgp 64512 
[r2-bgp]network 172.16.0.0 21
 

[r7]ip route-static 172.16.0.0 22 NULL 0 
[r7]bgp 64513
[r7-bgp]network 172.16.0.0 22

8、建立GRE隧道

【R1】ip route-static 192.168.2.0 255.255.255.0 192.168.20.2

【R8】ip route-static 192.168.1.0 255.255.255.0 192.168.20.1

测试

  • 24
    点赞
  • 11
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值