我是靠谱客的博主 专一火车,最近开发中收集的这篇文章主要介绍eNSp中的MGRE实验详解 一看就会!第一步,给PC1,PC2,PC3配置ip第二步 ppp封装第三步:ACL第四步:在R1上,构建MGRE环境,R1为中心站点第五步,RIP第六步,验证,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

文章目录

    • 题目,如图
  • 第一步,给PC1,PC2,PC3配置ip
      • 然后给R1, ISP,R3 ,R4 接口配上ip
        • 并在R1,R3连接接口上配置hdlc协议
  • 第二步 ppp封装
      • PAP认证
      • CHAP认证
  • 第三步:ACL
  • 第四步:在R1上,构建MGRE环境,R1为中心站点
      • 在R1上查看nhrp
      • 可以看到获取成功
  • 第五步,RIP
      • 在R4上,查看RIP配置
      • 可以看到只有一条,是因为触发了水平分割机制,所以我们要在R1的Tunnel口关闭水平分割机制
      • 再到R4,上查看RIP配置
      • 可以看到都获取到了
  • 第六步,验证
      • 检查PC1 ping P2 ,PC3
      • PC2 Ping PC1,PC3
      • PC3 Ping PC1,PC2
      • 实验成功!

题目,如图

image-20220719141923312

第一步,给PC1,PC2,PC3配置ip

image-20220719142044758

image-20220719142101021

image-20220719142130484

然后给R1, ISP,R3 ,R4 接口配上ip

并在R1,R3连接接口上配置hdlc协议

R1:

[R1-GigabitEthernet0/0/1]ip address 192.168.1.1 24

[R1-Serial4/0/0]ip address 12.0.0.1 24

[R1-Serial4/0/0]link-protocol hdlc

ISP:

[ISP-Serial4/0/0]link-protocol hdlc

[ISP-Serial4/0/1]ip address 23.0.0.2 24

[ISP-Serial3/0/0]ip address 24.0.0.2 24

[ISP-LoopBack0]ip address 2.2.2.2 24

R3:

[R3-Serial4/0/0]IP address 23.0.0.1 24

[R3-GigabitEthernet0/0/1]ip address 192.168.2.1 24

R4:

[R4-Serial4/0/0]ip address 24.0.0.1 24

[R4-GigabitEthernet0/0/1]ip address 192.168.3.1 24

第二步 ppp封装

PAP认证

ISP:

[ISP]aaa

[ISP-aaa]local-user huawei password cipher huawei
[ISP-aaa]local-user huawei service-type ppp

[ISP-Serial4/0/1]ppp authentication-mode pap

[ISP-Serial3/0/0]ppp authentication-mode chap 

R3:

[R3-Serial4/0/0]ppp pap local-user huawei password cipher huawei

[R3-Serial4/0/0]shutdown 
[R3-Serial4/0/0]undo shutdown 

CHAP认证

R4:

[R4-Serial4/0/0]ppp chap user huawei
[R4-Serial4/0/0]ppp chap password cipher huawei

[R4-Serial4/0/0]shutdown 
[R4-Serial4/0/0]undo shutdown 

第三步:ACL

R1:

[R1]ip route-static 0.0.0.0 0 12.0.0.2

[R1]acl 2000
[R1-acl-basic-2000]rule 1 permit source any

[R1-Serial4/0/0]nat outbound 2000

R3:

[R3]ip route-static 0.0.0.0 0 23.0.0.2

[R3]acl 2000
[R3-acl-basic-2000]rule 1 permit source any

[R3-Serial4/0/0]nat outbound 2000

R4:

[R4]ip route-static 0.0.0.0 0 24.0.0.2

[R4]acl 2000
[R4-acl-basic-2000]rule 1 permit source any

[R4-Serial4/0/0]nat outbound 2000

第四步:在R1上,构建MGRE环境,R1为中心站点

R1

[R1]interface Tunnel 0/0/0

[R1-Tunnel0/0/0]ip address 10.1.1.1 24

[R1-Tunnel0/0/0]tunnel-protocol gre  p2mp

[R1-Tunnel0/0/0]source 12.0.0.1

[R1-Tunnel0/0/0]nhrp entry multicast dynamic 

[R1-Tunnel0/0/0]nhrp network-id 100

R3

[R3]interface Tunnel 0/0/0

[R3-Tunnel0/0/0]ip address 10.1.1.2 24

[R3-Tunnel0/0/0]tunnel-protocol gre p2mp

[R3-Tunnel0/0/0]source s4/0/0

[R3-Tunnel0/0/0]nhrp entry 10.1.1.1 12.0.0.1 register 

[R3-Tunnel0/0/0]nhrp network-id 100

R4

[R4]interface Tunnel 0/0/0

[R4-Tunnel0/0/0]ip address 10.1.1.3 24

[R4-Tunnel0/0/0]tunnel-protocol gre p2mp

[R4-Tunnel0/0/0]source s4/0/0 

[R4-Tunnel0/0/0]nhrp entry 10.1.1.1 12.0.0.1 register 

[R4-Tunnel0/0/0]nhrp network-id 100

在R1上查看nhrp

image-20220719144535530

可以看到获取成功

第五步,RIP

R1

[R1]rip 1

[R1-rip-1]version 2

[R1-rip-1]network 10.0.0.0
[R1-rip-1]network 192.168.1.0

R3

[R3]rip 1

[R3-rip-1]version 2

[R3-rip-1]network 10.0.0.0
[R3-rip-1]network 192.168.2.0

R4

[R4]rip 1

[R4-rip-1]version 2

[R4-rip-1]network 10.0.0.0
[R4-rip-1]network 192.168.3.0

在R4上,查看RIP配置

image-20220719144006251

可以看到只有一条,是因为触发了水平分割机制,所以我们要在R1的Tunnel口关闭水平分割机制

R1

[R1-Tunnel0/0/0]undo rip split-horizon 

再到R4,上查看RIP配置

image-20220719145147287

可以看到都获取到了

第六步,验证

检查PC1 ping P2 ,PC3

image-20220719145423319

PC2 Ping PC1,PC3

image-20220719145537518

PC3 Ping PC1,PC2

image-20220719145626421

实验成功!

最后

以上就是专一火车为你收集整理的eNSp中的MGRE实验详解 一看就会!第一步,给PC1,PC2,PC3配置ip第二步 ppp封装第三步:ACL第四步:在R1上,构建MGRE环境,R1为中心站点第五步,RIP第六步,验证的全部内容,希望文章能够帮你解决eNSp中的MGRE实验详解 一看就会!第一步,给PC1,PC2,PC3配置ip第二步 ppp封装第三步:ACL第四步:在R1上,构建MGRE环境,R1为中心站点第五步,RIP第六步,验证所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(47)

评论列表共有 0 条评论

立即
投稿
返回
顶部