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

使用ensp进行ppp协议综合实验

实验拓扑

实验划分

AR1的Serial3/0/0接口:192.168.1.1/24;

AR2的Serial3/0/0接口:192.168.1.2/24;

AR2的Serial3/0/1和4/0/0的聚合接口:192.168.2.2/24;

AR3的Serial3/0/0和3/0/1的聚合接口:192.168.2.3/24;

实验需求

1、R1和R2使用PPP链路直连,R2和R3把2条PPP链路捆绑为PPP MP直连
2、按照图示配置IP地址
3、R2对R1的PPP进行单向chap验证
4、R2和R3的PPP进行双向chap验证

实验结果

(1)、增加接口

设置里面下滑找到2SA添加接口

注意链接的线也需要使用Serial

(2)、配置接口IP并MP聚合R2和R3之间的链路

R1:

[R1]int s3/0/0
[R1-Serial3/0/0]ip address 192.168.1.1 24

R2:

[R2]int s 3/0/0	
[R2-Serial3/0/0]ip address 192.168.1.2 24
[R2]inter Mp-group 0/0/0
[R2-Mp-group0/0/0]ip ad 192.168.2.2 24
[R2-Mp-group0/0/0]q
[R2]inter ser3/0/1
[R2-Serial3/0/1]ppp mp Mp-group 0/0/0
[R2-Serial3/0/1]inter s4/0/0
[R2-Serial4/0/0]ppp mp Mp-group 0/0/0

R3:

[R3]inter Mp-group 0/0/0	
[R3-Mp-group0/0/0]ip address 192.168.2.3 24
[R3]inter s3/0/0
[R3-Serial3/0/0]ppp mp Mp-group 0/0/0
[R3-Serial3/0/0]inter s3/0/1
[R3-Serial3/0/1]ppp mp Mp-group 0/0/0

(3)、单向chap验证

R2做主验证方,R1做被验证方

R2:

[R2]aaa
[R2-aaa]local-user dumj password cipher 123456
[R2-aaa]local-user dumj service-type ppp
[R2]inter s3/0/0
[R2-Serial3/0/0]ppp authentication-mode chap

R1:

[R1]int s3/0/0
[R1-Serial3/0/0]ppp chap user dumj
[R1-Serial3/0/0]ppp chap password cipher 123456

验证:可以ping通,且接口双up

(4)、双向chap验证

R2做主验证方,R3做被验证方

R2:

[R2]aaa
[R2-aaa]local-user dumj password cipher 123456
[R2-aaa]local-user dumj service-type ppp
[R2]inter s3/0/1
[R2-Serial3/0/1]ppp authentication-mode chap
[R2-Serial3/0/1]int s4/0/0
[R2-Serial4/0/0]ppp authentication-mode chap

R3:

[R3]int s3/0/0
[R3-Serial3/0/0]ppp chap user dumj
[R3-Serial3/0/0]ppp chap password cipher 123456
[R3-Serial3/0/0]int s3/0/1
[R3-Serial3/0/1]ppp chap user dumj
[R3-Serial3/0/1]ppp chap password cipher 123456

R3做主验证方,R2做被验证方

R3:

[R3]aaa
[R3-aaa]local-user dumj password cipher 123456
[R3-aaa]local-user dumj service-type ppp
[R3]int s3/0/0
[R3-Serial3/0/0]ppp authentication-mode chap
[R3-Serial3/0/0]int s3/0/1
[R3-Serial3/0/1]ppp authentication-mode chap

R2:

[R2]int s3/0/1
[R2-Serial3/0/1]ppp chap user dumj
[R2-Serial3/0/1]ppp chap password cipher 123456
[R2-Serial3/0/1]inter s4/0/0
[R2-Serial4/0/0]ppp chap user dumj
[R2-Serial4/0/0]ppp chap password cipher 123456

http://www.kler.cn/a/521150.html

相关文章:

  • 二次封装的方法
  • 动手学深度学习-卷积神经网络-3填充和步幅
  • 初阶数据结构:链表(二)
  • 【OMCI实践】ONT上线过程的omci消息(二)
  • Vue.js 什么是 Vuex?
  • pyautogui操控Acrobat DC pro万能PDF转Word,不丢任何PDF格式样式
  • API接口开发淘宝商品数据一键解析获取商品信息编写
  • Linux Ubuntu 18.04下创建桌面快捷方式
  • 云原生:构建现代化应用的基石
  • 在亚马逊云科技上用Stable Diffusion 3.5 Large生成赛博朋克风图片(上)
  • 【深入理解FFMPEG】命令行阅读笔记
  • 基于微信小程序的外卖点餐系统设计与实现ssm+论文源码调试讲解
  • DeepSeek R1:AI领域的新突破与挑战
  • 【集合】ArrayList扩容机制的源码剖析
  • 航空开放系统架构OSA 与集成 IMA 概念解析
  • 安装 docker 详解
  • CSS all 属性
  • 单片机基础模块学习——DS1302时钟芯片
  • Linux 入门 常用指令 详细版
  • 第四节 提升专业和业务能力
  • mysql查询中常见函数
  • Day46:访问元组元素
  • Linux 系统错误处理简介
  • 基于语义-拓扑-度量表征引导的大语言模型推理的空中视觉语言导航
  • 好看的测试用例模板
  • 探索JavaScript前端开发:开启交互之门的神奇钥匙(二)