news 2026/4/17 6:35:13

PPP+isis综合练习

作者头像

张小明

前端开发工程师

1.2k 24
文章封面图
PPP+isis综合练习

AR1 完整规范配置

# 基础配置 undo terminal monitor undo terminal logging undo terminal debugging sysname AR1 undo info-center enable user-interface console 0 idle-timeout 0 quit # 开启DHCP dhcp enable # 环回口配置 interface LoopBack0 ip address 10.47.11.1 255.255.255.255 quit # DHCP地址池 ip pool 1 network 10.47.1.0 mask 255.255.255.0 quit # 串口S1/0/0配置(PPP + PAP + IS-IS) interface Serial1/0/0 ip address 10.47.1.1 255.255.255.0 remote address 10.47.1.2 ppp pap local-user hrz password cipher hrz isis enable 1 isis peer-ip-ignore isis authentication-mode md5 123 quit # IS-IS配置 isis 1 cost-style wide is-level level-2 network-entity 0100.0000.0000.0001.00 interface LoopBack0 isis enable 1 quit

AR2 完整规范配置

# 基础配置 undo terminal monitor undo terminal logging undo terminal debugging sysname AR2 undo info-center enable user-interface console 0 idle-timeout 0 quit # 环回口配置 interface LoopBack0 ip address 10.47.12.1 255.255.255.255 quit # AAA认证配置 aaa local-user abc password cipher abc local-user abc service-type ppp local-user hrz password cipher hrz local-user hrz service-type ppp quit # DHCP地址池 ip pool 1 network 10.47.2.0 mask 255.255.255.0 quit # 串口S1/0/0(PPP协商 + PAP认证 + IS-IS) interface Serial1/0/0 ip address ppp-negotiate ppp authentication-mode pap isis enable 1 isis peer-ip-ignore isis authentication-mode md5 123 quit # 串口S1/0/1(PPP + CHAP + IS-IS) interface Serial1/0/1 ip address 10.47.2.2 255.255.255.0 remote address pool 1 ppp authentication-mode chap isis enable 1 isis peer-ip-ignore isis authentication-mode md5 456 quit # IS-IS配置 isis 1 cost-style wide is-level level-2 network-entity 0100.0000.0000.0002.00 interface LoopBack0 isis enable 1 quit

AR3 完整规范配置

# 基础配置 undo terminal monitor undo terminal logging undo terminal debugging sysname AR3 undo info-center enable user-interface console 0 idle-timeout 0 quit # 环回口配置 interface LoopBack0 ip address 10.47.13.1 255.255.255.255 quit # 串口S1/0/1(PPP协商 + CHAP + IS-IS) interface Serial1/0/1 ip address ppp-negotiate ppp chap user abc ppp chap password cipher abc isis enable 1 isis peer-ip-ignore isis authentication-mode md5 456 quit # IS-IS配置 isis 1 cost-style wide is-level level-2 network-entity 0100.0000.0000.0003.00 interface LoopBack0 isis enable 1 quit
版权声明: 本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若内容造成侵权/违法违规/事实不符,请联系邮箱:809451989@qq.com进行投诉反馈,一经查实,立即删除!
网站建设 2026/4/17 6:33:19

星链引擎微服务网关:统一接入与鉴权体系的设计与落地

摘要在企业级微服务架构规模化落地过程中,多服务分散接入、接口协议不统一、鉴权逻辑冗余、流量管控缺失等问题,严重影响系统的可维护性、安全性与可扩展性。星链引擎微服务网关基于 Spring Cloud Gateway 与 Netty 构建,整合统一接入、鉴权认…

作者头像 李华
网站建设 2026/4/17 6:31:13

基于Sapera SDK的DALSA CameraLink采集卡二次开发实战

1. 环境搭建与SDK配置 第一次接触DALSA采集卡开发时,我花了两天时间才把开发环境跑通。现在回想起来,其实只要抓住几个关键点就能快速上手。首先确保你的Windows系统是64位版本,我推荐使用Windows 10专业版,这个环境最稳定。开发工…

作者头像 李华
网站建设 2026/4/17 6:30:12

mybatis-plus保存数据实现公共字段自动填充

公共的实体类如下:import com.baomidou.mybatisplus.annotation.FieldFill; import com.baomidou.mybatisplus.annotation.TableField; import com.fasterxml.jackson.annotation.JsonFormat; import com.zhou.common.utils.SessionUtil; import io.swagger.annotat…

作者头像 李华