当前位置: 首页 > news >正文

HCIP之PPP协议(PAP认证,CHAP认证)、GRE、MGRE综合实验

实验过程

一、IP配置
[r1]interface Serial 4/0/0
[r1-Serial4/0/0]ip ad 15.1.1.1 24
[r1]interface GigabitEthernet 0/0/0
[r1-GigabitEthernet0/0/0]ip ad 192.168.1.1 24
r2]interface Serial 4/0/0
[r2-Serial4/0/0]ip ad 25.1.1.2 24
[r2]interface GigabitEthernet 0/0/0
[r2-GigabitEthernet0/0/0]ip ad 192.168.2.1 24
[r3]interface Serial 4/0/0
[r3-Serial4/0/0]ip ad 35.1.1.3 24
[r3]interface GigabitEthernet 0/0/0
[r3-GigabitEthernet0/0/0]ip ad 192.168.3.1 24
[r4]interface GigabitEthernet 0/0/0
[r4-GigabitEthernet0/0/0]ip ad 45.1.1.4 24
[r4]interface GigabitEthernet 0/0/1
[r4-GigabitEthernet0/0/1]ip ad 192.168.4.1 24
[r5]interface Serial 4/0/1
[r5-Serial4/0/1]ip ad 15.1.1.5 24
[r5]interface Serial 3/0/1
[r5-Serial3/0/1]ip ad 25.1.1.5 24
[r5]interface Serial 4/0/0
[r5-Serial4/0/0]ip ad 35.1.1.5 24
[r5]interface GigabitEthernet 0/0/0
[r5-GigabitEthernet0/0/0]ip ad 45.1.1.5 24

二、缺省路由
[r1]ip route-static 0.0.0.0 0 15.1.1.5
[r2]ip route-static 0.0.0.0 0 25.1.1.5
[r3]ip route-static 0.0.0.0 0 35.1.1.5
[r4]ip route-static 0.0.0.0 0 45.1.1.5

三、R1与R5之间的PAP认证
主认证方
[r5]aaa
[r5-aaa]local-user wangdaye password cipher wdy12345
Info: Add a new user.
[r5-aaa]local-user wangdaye service-type ppp
[r5]interface Serial  4/0/1
[r5-Serial4/0/1]ppp authentication-mode pap 
被认证方
[r1]interface Serial 4/0/0
[r1-Serial4/0/0]ppp pap local-user wangdaye password cipher wdy12345
[r1-Serial4/0/0]shutdown 
[r1-Serial4/0/0]undo shutdown 

四、R2和R5的CHAP认证
主认证方
[r5]interface Serial 3/0/1
[r5-Serial3/0/1]ppp authentication-mode chap 
被认证方
[r2]interface Serial 4/0/0
[r2-Serial4/0/0]ppp chap user wangdaye 
[r2-Serial4/0/0]ppp chap password cipher wdy12345
[r2-Serial4/0/0]shutdown
[r2-Serial4/0/0]undo shutdown

五、更改R3和R5之间的链路协议
[r3]interface Serial 4/0/0
[r3-Serial4/0/0]display th
[V200R003C00]
#
interface Serial4/0/0
 link-protocol ppp
 ip address 35.1.1.3 255.255.255.0 
#
return
[r3-Serial4/0/0]link-protocol hdlc
[r5]interface Serial 4/0/0
[r5-Serial4/0/0]link-protocol hdlc 
 
六、R1、R2、R3 构建一个MGRE环境
R1:
[r1]interface Tunnel 0/0/0
[r1-Tunnel0/0/0]ip ad 10.1.1.1 24
[r1-Tunnel0/0/0]tunnel-protocol gre p2mp 
[r1-Tunnel0/0/0]nhrp network-id 100
R2:
[r2]interface Tunnel 0/0/0
[r2-Tunnel0/0/0]ip ad 10.1.1.2 24
[r2-Tunnel0/0/0]tunnel-protocol gre p2mp 
[r2-Tunnel0/0/0]source Serial 4/0/0
[r2-Tunnel0/0/0]nhrp network-id 100
[r2-Tunnel0/0/0]nhrp entry 10.1.1.1 15.1.1.1 register
R3
[r3]interface Tunnel 0/0/0
[r3-Tunnel0/0/0]ip ad 10.1.1.3 24
[r3-Tunnel0/0/0]tunnel-protocol gre p2mp 
[r3-Tunnel0/0/0]source Serial 4/0/0
[r3-Tunnel0/0/0]nhrp network-id 100
[r3-Tunnel0/0/0]nhrp entry 10.1.1.1 15.1.1.1 register 

七、R1与R4GRE配置
R1
[r1]interface Tunnel 0/0/1
[r1-Tunnel0/0/1]ip ad 10.1.2.1 24
[r1-Tunnel0/0/1]tunnel-protocol gre
[r1-Tunnel0/0/1]source 15.1.1.1
[r1-Tunnel0/0/1]destination 45.1.1.4
R4
[r4]interface Tunnel 0/0/1
[r4-Tunnel0/0/1]ip ad 10.1.2.4 24
[r4-Tunnel0/0/1]tunnel-protocol gre 
[r4-Tunnel0/0/1]source 45.1.1.4
[r4-Tunnel0/0/1]destination 15.1.1.1

八、RIP传递路由
[r1]rip
[r1-rip-1]v 2
[r1-rip-1]undo s    
[r1-rip-1]undo summary
[r1-rip-1]network 192.168.1.0 
[r1-rip-1]network 10.0.0.0
[r2]rip 
[r2-rip-1]version 2
[r2-rip-1]undo summary 
[r2-rip-1]network 192.168.2.0
[r2-rip-1]network 10.0.0.0
[r3]rip    
[r3-rip-1]version 2
[r3-rip-1]undo su    
[r3-rip-1]network 192.168.3.0
[r3-rip-1]network 10.0.0.0
[r4]rip    
[r4-rip-1]v 2
[r4-rip-1]undo summary 
[r4-rip-1]network 192.168.4.0
[r4-rip-1]network 10.0.0.0

打开伪广播关闭rip水平分割
[r1]interface Tunnel 0/0/0
[r1-Tunnel0/0/0]nhrp entry multicast dynamic 
[r1-Tunnel0/0/0]undo rip split-horizon
[r2]interface tun 0/0/0
[r2-Tunnel0/0/0]undo rip split-horizon
[r3]interface t 0/0/0
[r3-Tunnel0/0/0]undo rip split-horizon

九、NAT配置
[r1]acl 2000
[r1-acl-basic-2000]rule permit source 192.168.1.0 0.0.0.255
[r1]interface Serial 4/0/0
[r1-Serial4/0/0]nat outbound 2000
[r2]acl 2000
[r2-acl-basic-2000]rule permit source 192.168.2.0 0.0.0.255
[r2]interface Serial 4/0/0
[r2-Serial4/0/0]nat outbound 2000
[r3]acl 2000
[r3-acl-basic-2000]rule permit source 192.168.3.0 0.0.0.255
[r3]interface Serial 4/0/0
[r3-Serial4/0/0]nat outbound 2000
[r4]acl 2000
[r4-acl-basic-2000]rule permit source 192.168.4.0 0.0.0.255
[r4-acl-basic-2000]q
[r4]interface GigabitEthernet 0/0/0
[r4-GigabitEthernet0/0/0]nat outbound 2000

 实验结果测试

查看配置完的nhrp表

ping通测试 

 

 

学习之路无终点,知识海洋无尽头,但你的努力,将照亮你的前行之路!

相关文章:

  • 北京网站建设多少钱?
  • 辽宁网页制作哪家好_网站建设
  • 高端品牌网站建设_汉中网站制作
  • git -.gitignore不生效的问题
  • React 18【实用教程】(2024最新版)
  • 从dev分支合并到master分支
  • Vue 3项目安装Element-Plus
  • el-table表格 及其el-pagination分页 封装及其使用
  • 【深度学习】sdxl的Lora训练技巧
  • day07:用户下单、订单支付
  • JUnit 单元测试
  • three完全开源扩展案例05-围栏着色器
  • 微信小程序 - 在视图组件上绑定函数并携带参数(事件对象自定义属性传参)
  • mysql-造数据/列转行
  • Tomcat部署、优化、压力测试
  • Python实现招聘数据采集 ,并做可视化分析
  • Gson使用TypeAdapterFactory和TypeAdapter实现Json中的Key统一修改
  • Web漏洞扫描工具(AWVS、Goby)
  • 2017届校招提前批面试回顾
  • el-input获取焦点 input输入框为空时高亮 el-input值非法时
  • ES6系统学习----从Apollo Client看解构赋值
  • HashMap ConcurrentHashMap
  • IE报vuex requires a Promise polyfill in this browser问题解决
  • iOS编译提示和导航提示
  • js算法-归并排序(merge_sort)
  • JS正则表达式精简教程(JavaScript RegExp 对象)
  • Laravel深入学习6 - 应用体系结构:解耦事件处理器
  • React as a UI Runtime(五、列表)
  • 复杂数据处理
  • 缓存与缓冲
  • 精益 React 学习指南 (Lean React)- 1.5 React 与 DOM
  • 让你的分享飞起来——极光推出社会化分享组件
  • 十年未变!安全,谁之责?(下)
  • 我与Jetbrains的这些年
  • 项目实战-Api的解决方案
  • 在electron中实现跨域请求,无需更改服务器端设置
  • 3月7日云栖精选夜读 | RSA 2019安全大会:企业资产管理成行业新风向标,云上安全占绝对优势 ...
  • TPG领衔财团投资轻奢珠宝品牌APM Monaco
  • 国内开源镜像站点
  • ​Redis 实现计数器和限速器的
  • #知识分享#笔记#学习方法
  • (5)STL算法之复制
  • (C++17) std算法之执行策略 execution
  • (Matlab)遗传算法优化的BP神经网络实现回归预测
  • (Redis使用系列) Springboot 实现Redis 同数据源动态切换db 八
  • (Repost) Getting Genode with TrustZone on the i.MX
  • (附源码)计算机毕业设计SSM疫情下的学生出入管理系统
  • (十八)Flink CEP 详解
  • (一)Spring Cloud 直击微服务作用、架构应用、hystrix降级
  • (原創) 如何讓IE7按第二次Ctrl + Tab時,回到原來的索引標籤? (Web) (IE) (OS) (Windows)...
  • (正则)提取页面里的img标签
  • (转载)Google Chrome调试JS
  • .axf 转化 .bin文件 的方法
  • .NET / MSBuild 扩展编译时什么时候用 BeforeTargets / AfterTargets 什么时候用 DependsOnTargets?
  • .NET Core/Framework 创建委托以大幅度提高反射调用的性能
  • .net Signalr 使用笔记
  • .NET6 命令行启动及发布单个Exe文件
  • .Net多线程Threading相关详解