ppp验证实验

2024-03-27 04:28
文章标签 验证 实验 ppp

本文主要是介绍ppp验证实验,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

8269f24bf3f74e81aad21703bfb87941.png

实际操作图

493ed48eaaea4926a2202fda98f2cc86.png

 

 1,IP划分分配


[r1]interface Serial 4/0/0

[r1-Serial4/0/0]ip add 192.168.1.1 24

[r2]interface Serial 4/0/0

[r2-Serial4/0/0]ip address 192.168.1.2 24

 

[r2]int Mp-group 0/0/0

[r2-Mp-group0/0/0]ip add 192.168.2.1 24

[r3]int Mp-group 0/0/0

[r3-Mp-group0/0/0]ip address 192.168.2.2 24

pp中mp使物理口合并IP划分给逻辑口上

2单项验证chap


[r2]aaa

[r2-aaa]local-user wangdaye password cipher wdy12345

Info: Add a new user.

[r2-aaa]local-user wangdaye service-type ppp

[r2]interface Serial 4/0/0

[r2-Serial4/0/0]ppp authentication-mode chap

 

[r1]interface Serial 4/0/0

[r1-Serial4/0/0]ppp chap user wangdaye

[r1-Serial4/0/0]ppp chap password cipher wdy12345

 

79b9099b368c4fe0959c6f2f2040cc17.png

 3双向验证chap


[r2]interface Serial 3/0/0

[r2-Serial3/0/0]ppp mp Mp-group 0/0/0

[r2]interface Serial 3/0/1

[r2-Serial3/0/1]ppp mp Mp-group 0/0/0

[r2]int Mp-group 0/0/0

 

[r3]interface Serial 4/0/0

[r3-Serial4/0/0]ppp mp Mp-group 0/0/0

[r3]interface Serial 4/0/1 

[r3-Serial4/0/1]ppp mp Mp-group 0/0/0

[r2]aaa

[r2-aaa]local-user fudaye password cipher fdy12345

[r2-aaa]local-user fudaye service-type ppp

[r2]interface Serial 3/0/0

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

[r2]interface Serial 3/0/1

[r2-Serial3/0/1]ppp authentication-mode chap 

[r2-Serial3/0/0]ppp chap user goudaye 

[r2-Serial3/0/0]ppp chap password cipher gdy12345

[r2-Serial3/0/1]ppp chap user goudaye 

[r2-Serial3/0/1]ppp chap password cipher gdy12345

 

[r3]aaa

[r3-aaa]local-user goudaye password cipher gdy12345

Info: Add a new user.

[r3-aaa]local-user goudaye service-type ppp 

[r3]interface Serial 4/0/1  

[r3-Serial4/0/1]ppp authentication-mode chap 

[r3]interface Serial 4/0/0 

[r3-Serial4/0/0]ppp authentication-mode chap 

[r3-Serial4/0/0]ppp chap user fudaye 

[r3-Serial4/0/0]ppp chap password cipher fdy12345

[r3]interface Serial 4/0/1 

[r3-Serial4/0/1]ppp chap user fudaye 

[r3-Serial4/0/1]ppp chap password cipher fdy12345

323794165c5d42bdad26157319604c3f.png

d1c4a48d937b441696f14da45f7d5dbe.png 

 

 

这篇关于ppp验证实验的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/850937

相关文章

opencv图像处理之指纹验证的实现

《opencv图像处理之指纹验证的实现》本文主要介绍了opencv图像处理之指纹验证的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学... 目录一、简介二、具体案例实现1. 图像显示函数2. 指纹验证函数3. 主函数4、运行结果三、总结一、

Python爬虫selenium验证之中文识别点选+图片验证码案例(最新推荐)

《Python爬虫selenium验证之中文识别点选+图片验证码案例(最新推荐)》本文介绍了如何使用Python和Selenium结合ddddocr库实现图片验证码的识别和点击功能,感兴趣的朋友一起看... 目录1.获取图片2.目标识别3.背景坐标识别3.1 ddddocr3.2 打码平台4.坐标点击5.图

Spring Security基于数据库验证流程详解

Spring Security 校验流程图 相关解释说明(认真看哦) AbstractAuthenticationProcessingFilter 抽象类 /*** 调用 #requiresAuthentication(HttpServletRequest, HttpServletResponse) 决定是否需要进行验证操作。* 如果需要验证,则会调用 #attemptAuthentica

C++ | Leetcode C++题解之第393题UTF-8编码验证

题目: 题解: class Solution {public:static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num &

C语言 | Leetcode C语言题解之第393题UTF-8编码验证

题目: 题解: static const int MASK1 = 1 << 7;static const int MASK2 = (1 << 7) + (1 << 6);bool isValid(int num) {return (num & MASK2) == MASK1;}int getBytes(int num) {if ((num & MASK1) == 0) {return

easyui同时验证账户格式和ajax是否存在

accountName: {validator: function (value, param) {if (!/^[a-zA-Z][a-zA-Z0-9_]{3,15}$/i.test(value)) {$.fn.validatebox.defaults.rules.accountName.message = '账户名称不合法(字母开头,允许4-16字节,允许字母数字下划线)';return fal

easyui 验证下拉菜单select

validatebox.js中添加以下方法: selectRequired: {validator: function (value) {if (value == "" || value.indexOf('请选择') >= 0 || value.indexOf('全部') >= 0) {return false;}else {return true;}},message: '该下拉框为必选项'}

STM32(十一):ADC数模转换器实验

AD单通道: 1.RCC开启GPIO和ADC时钟。配置ADCCLK分频器。 2.配置GPIO,把GPIO配置成模拟输入的模式。 3.配置多路开关,把左面通道接入到右面规则组列表里。 4.配置ADC转换器, 包括AD转换器和AD数据寄存器。单次转换,连续转换;扫描、非扫描;有几个通道,触发源是什么,数据对齐是左对齐还是右对齐。 5.ADC_CMD 开启ADC。 void RCC_AD

web群集--nginx配置文件location匹配符的优先级顺序详解及验证

文章目录 前言优先级顺序优先级顺序(详解)1. 精确匹配(Exact Match)2. 正则表达式匹配(Regex Match)3. 前缀匹配(Prefix Match) 匹配规则的综合应用验证优先级 前言 location的作用 在 NGINX 中,location 指令用于定义如何处理特定的请求 URI。由于网站往往需要不同的处理方式来适应各种请求,NGINX 提供了多种匹

HNU-2023电路与电子学-实验3

写在前面: 一、实验目的 1.了解简易模型机的内部结构和工作原理。 2.分析模型机的功能,设计 8 重 3-1 多路复用器。 3.分析模型机的功能,设计 8 重 2-1 多路复用器。 4.分析模型机的工作原理,设计模型机控制信号产生逻辑。 二、实验内容 1.用 VERILOG 语言设计模型机的 8 重 3-1 多路复用器; 2.用 VERILOG 语言设计模型机的 8 重 2-1 多