HCIP BGP(一)

发布时间:2024年01月17日

任务:

1.R1上有两个环回,分别为192.168.1.0/24&192.168.2.0/24,只允许学到汇总&1.0

2.R7上有两个环回172.16.1.0/24&172.16.2.0/24,要求全部宣告,但是只有2.0可以通过

3.全网可达

拓扑图如下:

第一步,配置IP&环回地址

以R1为例,R2~R7同理

interface LoopBack 0
ip address 1.1.1.1 32
interface GigabitEthernet 0/0/0
ip address 12.1.1.1 24
interface LoopBack 1
ip address 192.168.1.1 24
interface LoopBack 2
ip address 192.168.2.1 24

第二步,配置RIP

以R1为例,R2同理

rip 1
versiong 2
network 12.0.0.0
network 1.0.0.0
network 192.168.1.0
network 192.168.2.0

第三步,配置OSPF

以R3为例,R4~R7同理

ospf 1 router-id 3.3.3.3
area 0
network 3.3.3.3 0.0.0.0
network 34.1.1.1 0.0.0.0

第四步,设置BGP

以R1为例,R2~R7同理

bgp 100
router-id 1.1.1.1
peer 2.2.2.2 as-number 100
peer 2.2.2.2 connect-interface LoopBack 0

配置重发布

R2

import-route rip 1

R3,R5同理

import-route ospf 1

R6

import-route ospf 2

修改本地连接

R3

peer 5.5.5.5 next-hop-local

R5

peer 3.3.3.3 next-hop-local

R6

peer 7.7.7.7 next-hop-local

R2

peer 1.1.1.1 next-hop-local

设置抑制列表

R2

ip ip-prefix xx permit 192.168.1.0 24
route-policy yy permit node 10
if-match ip-prefix xx
quit
bgp 100
aggregate 192.168.0.0 22 detail-suppressed suppress-policy yy

R6

ip ip-prefix xx permit 172.16.1.1 32
route-policy yy deny node 10
if-match ip-prefix xx
quit
route-policy yy deny node 20
quit
bgp 102
peer 56.1.1.1 route-policy yy export

文章来源:https://blog.csdn.net/GaoXianGaoXian/article/details/135655063
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。