MGRE中的OSPF综合实验

一实验要求

1:R6为ISP只能配置IP地址,R1-R5的环回为私有网络

2:R1/4/5为全连的MGRE结构, R1/2/3为星形的拓扑结构,R1为中心站点

3:所有的私网网段可以互相通讯,私有网段使用OSPF完成

二 配置思路

首先 ,先把各个环回结构,公网IP地址配置好。接着把缺省配置好实现公网全通。接着配置R1/4/5和R1/4/5的MGRE,把这两个隧道配置完成。配置完成后在所有设备上运行OSPF协议。运行完后,继续在tunnel接口下配置命令,使得各个设备拿到全部的拓扑结构,使得私网可以互相通讯。

三 IP地址规划

R1:

192.168.1.0/24环回接口 

16.1.1.0/24  GigabitEthernet 0/0/0 

61.1.1.0/24  GigabitEthernet 0/0/0

R2:

192.168.1.0/24环回接口

26.1.1.0/24  GigabitEthernet 0/0/0

R3:

192.168.3.0/24 环回接口

36.1.1.0/24  GigabitEthernet 0/0/0

R4:

192.168.4.0/24 环回接口

46.1.1.0/24  GigabitEthernet 0/0/0

R5:

192.168.4.0/24环回接口

56.1.1.0/24  GigabitEthernet 0/0/0

R6:

16.1.1.0/24  GigabitEthernet 0/0/0

61.1.1.0/24  GigabitEthernet 0/0/1

26.1.1.0/24  GigabitEthernet 0/0/2

36.1.1.0/24  GigabitEthernet 4/0/0

46.1.1.0/24  GigabitEthernet 4/0/1

56.1.1.0/24  GigabitEthernet 4/0/2

四 IP地址配置

R1:


interface GigabitEthernet0/0/0

 ip address 16.1.1.1 255.255.255.0 

interface GigabitEthernet0/0/1

 ip address 61.1.1.1 255.255.255.0 

interface LoopBack0

 ip address 192.168.1.1 255.255.255.0 

R2:

interface GigabitEthernet0/0/0

 ip address 26.1.1.1 255.255.255.0 

interface LoopBack0

 ip address 192.168.2.1 255.255.255.0 

R3:

interface GigabitEthernet0/0/0

 ip address 36.1.1.1 255.255.255.0 

interface LoopBack0

 ip address 192.168.3.1 255.255.255.0 

R4:

interface GigabitEthernet0/0/0

 ip address 46.1.1.1 255.255.255.0 

interface LoopBack0

 ip address 192.168.4.1 255.255.255.0 

R5:

interface GigabitEthernet0/0/0

 ip address 56.1.1.1 255.255.255.0 

interface LoopBack0

 ip address 192.168.5.1 255.255.255.0 

R6:

interface GigabitEthernet0/0/0

 ip address 16.1.1.2 255.255.255.0 

interface GigabitEthernet0/0/1

ip address 61.1.1.2 255.255.255.0 

interface GigabitEthernet0/0/2

ip address 26.1.1.2 255.255.255.0

interface GigabitEthernet4/0/0

ip address 36.1.1.2 255.255.255.0

interface GigabitEthernet4/0/1

ip address 46.1.1.2 255.255.255.0

interface GigabitEthernet4/0/2

ip address 56.1.1.2 255.255.255.0

五 MGRE的配置

R1/4/5

R1:
interface Tunnel0/0/0

 ip address 192.168.6.1 255.255.255.0 

 tunnel-protocol gre p2mp

 source 16.1.1.1

 ospf network-type broadcast #将OSPF的网络类型改为广播

 nhrp entry multicast dynamic #开启伪广播

 nhrp network-id 100

R4:
interface Tunnel0/0/0

 ip address 192.168.6.3 255.255.255.0
 
 tunnel-protocol gre p2mp

 source 46.1.1.1

 ospf network-type broadcast  #将OSPF的网络类型改为广播

 ospf dr-priority 0  #放弃OSPF选举

 nhrp entry multicast dynamic #开启伪广播

 nhrp network-id 100

 nhrp entry 192.168.6.1 16.1.1.1 register #向中心进行注册
R5:
interface Tunnel0/0/0

 ip address 192.168.6.2 255.255.255.0 

 tunnel-protocol gre p2mp

 source 56.1.1.1

 ospf network-type broadcast

 ospf dr-priority 0

 nhrp entry multicast dynamic

 nhrp network-id 100

 nhrp entry 192.168.6.1 16.1.1.1 register

 nhrp entry 192.168.6.3 46.1.1.1 register

R1/2/3

R1:
nterface Tunnel0/0/1

 ip address 192.168.7.1 255.255.255.0 

 tunnel-protocol gre p2mp

 source 61.1.1.1

 ospf network-type p2mp

 nhrp entry multicast dynamic

 nhrp network-id 101

R2:
interface Tunnel0/0/0

 ip address 192.168.7.2 255.255.255.0 

 tunnel-protocol gre p2mp

 source GigabitEthernet0/0/0

 ospf network-type p2mp

 ospf dr-priority 0

 nhrp network-id 101

 nhrp entry 192.168.7.1 61.1.1.1 register

 R3:
interface Tunnel0/0/0

 ip address 192.168.7.3 255.255.255.0 

 tunnel-protocol gre p2mp

 source GigabitEthernet0/0/0

 ospf network-type p2mp

 ospf dr-priority 0

 nhrp network-id 101

 nhrp entry 192.168.7.1 61.1.1.1 register

六 启动OSPF协议

R1:
  ospf 1 router-id 1.1.1.1
  area 0.0.0.0 

  network 192.168.1.0 0.0.0.0 

  network 192.168.1.0 0.0.0.255 

  network 192.168.6.1 0.0.0.0 

  network 192.168.7.1 0.0.0.0 
R2:
  ospf 1 router-id 2.2.2.2

  area 0.0.0.0 

  network 192.168.2.0 0.0.0.0 

  network 192.168.2.0 0.0.0.255
 
  network 192.168.7.2 0.0.0.0 
R3:
  ospf 1 router-id 3.3.3.3

  area 0.0.0.0 

  network 192.168.3.0 0.0.0.255
 
  network 192.168.7.3 0.0.0.0 
R4:
  ospf 1 router-id 4.4.4.4

  area 0.0.0.0
 
  network 192.168.4.0 0.0.0.255 

  network 192.168.6.3 0.0.0.0
R5:
  ospf 1 router-id 5.5.5.5
  
  area 0.0.0.0 

  network 192.168.5.0 0.0.0.255
 
  network 192.168.6.2 0.0.0.0 
  

七 实验运行截图

公网全通的截图

R1/4/5的MGRE截图

R1/2/3的MGRE截图

启动OSPF协议后的截图

八 实验总结

本次实验让我更加的了解了OSPF协议在MGRE环境中的配置命令,通过本次实验,我更加熟悉了OSPF的工作原理以及配置方法。也更加理解了MGRE如何在多个私网中,建立一个通道,实现通信。通过本次实验,不仅加深了我们对网络技术的理解,也提高了我们的实践操作能力。

  • 4
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
HCIP实验OSPF是指Open Shortest Path First,是一种内部网关协议(IGP),用于在自治系统(AS)内部进行路由选择。在HCIP实验OSPF的配置包括实验拓扑、子网划分、基本配置、MGRE环境配置、OSPF配置、路由汇总、特殊区域和NAT配置等。\[1\] 在实验,可以使用OSPF多进程重发布的方式解决重发布问题。例如,在非骨干区域a4,可以使用OSPF进程1和进程2进行重发布。R9的配置示例为: ospf 1 router-id 9.9.9.9 import-route ospf 2 area 0.0.0.3 network 172.16.136.2 0.0.0.0 ospf 2 router-id 9.9.9.9 asbr-summary 172.16.160.0 255.255.224.0 import-route ospf 1 area 0.0.0.4 network 172.16.160.1 0.0.0.0 network 172.16.168.1 0.0.0.0 \[2\] 另外,实验还涉及到AREA2/3的完全NSSA配置。例如,在AREA2,R6、R11和R12的配置示例为: R6: ospf 1 area 2 nssa no-summary R11: ospf 1 area 2 nssa R12: ospf 1 area 2 nssa \[3\] 此外,实验还包括NAT配置。例如,R3、R6和R7的NAT配置示例为: R3: acl 2000 rule 5 permit source 172.16.0.0 0.0.255.255 int s3/0/0 nat outbound 2000 R6: acl 2000 rule 5 permit source 172.16.0.0 0.0.255.255 int s4/0/0 nat outbound 2000 R7: acl 2000 rule 5 permit source 172.16.0.0 0.0.255.255 int s4/0/1 nat outbound 2000 \[3\] 以上是关于HCIP实验OSPF的一些配置示例。 #### 引用[.reference_title] - *1* *2* *3* [HCIP——OSPF综合大实验](https://blog.csdn.net/After_GlowX/article/details/118708375)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down28v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值