【hcip】BGP综合实验

目录

 1.拓扑图

 2.要求

 3.子网划分

4.基本配置

5.测试 


 1.拓扑图

【hcip】BGP综合实验_第1张图片

 2.要求

  • AS1存在两个环回,一个地址为192.168.1.0/24;AS3中存在两个环回,一个为192.168.2.0/24;
  • 整个AS2的IP地址为172.16.0.0/16,进行合理划分;
  • AS之间的骨干IP随意分配;
  • 使用BGP协议让整个网络所有设备的用户环回可以互相访问;
  • 减少路由条目数量,避免环路产生

 3.子网划分

首先,根据实验要求,将172.16.0.0/16全部划分为掩码为24的子网

172.16.0.0/24

172.16.1.0/24

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

...

建邻环回

172.16.0.1/32------r1

172.16.0.2/32------r2

172.16.0.3/32------r3

172.16.0.4/32------r4

172.16.0.5/32------r5

172.16.0.6/32------r6

172.16.0.7/32------r7

172.16.0.8/32------r8

业务还回

172.16.3.0/24------r3

172.16.4.0/24------r4

172.16.5.0/24------r5

172.16.6.0/24------r6

172.16.7.0/24------r7

4.基本配置

配置ospf,以r2为例

[r2]ospf 1 router-id 2.2.2.2   
[r2-ospf-1]area 0
[r2-ospf-1-area-0.0.0.0]network 172.16.1.1 0.0.0.0
[r2-ospf-1-area-0.0.0.0]network 172.16.1.21 0.0.0.0 
[r2-ospf-1-area-0.0.0.0]network 172.16.2.1 0.0.0.0   
[r2-ospf-1-area-0.0.0.0]network 172.16.0.2 0.0.0.0

[r2-ospf-1-area-0.0.0.0]network 12.1.1.2 0.0.0.0

配置bgp,以r2,r5为例,由于r2,r5处于联邦内,故启用BGP的私有AS号

[r2]bgp 64512
[r2-bgp]router-id 2.2.2.2

[r2-bgp]confederation id 2

[r2-bgp]confederation peer-as 64513

[r2-bgp]peer 12.1.1.1 as-number 1

[r2-bgp]peer 12.1.1.1 connect-interface LoopBack 0

[r2-bgp]peer 12.1.1.1 ebgp-max-hop 2

[r2-bgp]peer 172.16.0.3 as-number 64512

[r2-bgp]peer 172.16.0.3 connect-interface LoopBack 0

[r2-bgp]peer 172.16.0.5 as-number 64513

[r2-bgp]peer 172.16.0.5 connect-interface LoopBack 0

[r2-bgp]peer 172.16.0.5 ebgp-max-hop 2

[r2-bgp]peer 172.16.0.3 next-hop-local
[r2-bgp]peer 172.16.0.5 next-hop-local 

[r2]ip route-static 172.16.0.0 21 NULL 0             //BGP的聚合

[r2-bgp]network 172.16.0.0 21

[r2]int LoopBack 1
[r2-LoopBack1]ospf network-type broadcas      //让其他设备通过OSPF学习到的掩码是24的还回

 [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.0.4 as-number 64512
[r5-bgp]peer 172.16.0.4 connect-interface LoopBack 0
[r5-bgp]peer 172.16.0.4 ebgp-max-hop 2
[r5-bgp]peer 172.16.0.6 as-number 64513
[r5-bgp]peer 172.16.0.6 connect-interface LoopBack 0
[r5-bgp]peer 34.1.1.2 as-number 3
[r5-bgp]peer 172.16.0.4 next-hop-local
[r5-bgp]peer 172.16.0.6 next-hop-local
[r5]ip route-static 172.16.0.0 21 NULL 0
[r5-bgp]network 172.16.0.5 32

[r5-bgp]network 172.16.5.0 24

5.测试 

【hcip】BGP综合实验_第2张图片

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