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

相关文章

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 多

React 笔记 父子组件传值 | 父组件调用子组件数据 | defaultProps | propsType合法性验证

1.通过props实现父组件像子组件传值 、方法、甚至整个父组件 传递整个父组件则   [变量名]={this} import Header from "./Header"render(){return(<Header msg={"我是props传递的数据"}/>)} import React,{Component} from "react";class Header extends

Java验证辛钦大数定理

本实验通过程序模拟采集大量的样本数据来验证辛钦大数定理。   实验环境: 本实验采用Java语言编程,开发环境为Eclipse,图像生成使用JFreeChart类。   一,验证辛钦大数定理 由辛钦大数定理描述为: 辛钦大数定理(弱大数定理)  设随机变量序列 X1, X2, … 相互独立,服从同一分布,具有数学期望E(Xi) = μ, i = 1, 2, …, 则对于任意正数ε ,