• ISIS协议的基础配置实验,原来做ISIS基础配置还可以这么有趣


    今天我们来做一下isis协议的基础配置,首先按照惯例,已经给大家准备好了拓扑图,拓扑如下图一所示:

    (看不清楚的同学点开放大看哦)

    实验说明:

    1、配置IP地址

    2、根据图示划分ISIS区域、system-id以及路由器级别,比如R1的system-id为0000.0000.0001

    3、在路由器互联的端口运行ISIS 1,将R5的LOOP0接口通告进ISIS

    4、验证:检查路由器之间的ISIS邻居关系

    5、验证:R6可以ping通R5的loop0接口

    具体配置:

    1、配置IP地址

    R1

    interface g0/0/2

    ip add 10.1.16.1 24

    interface g0/0/0

    ip add 10.1.12.1 24

    interface g0/0/1

    ip add 10.1.13.1 24

    R2

    interface g0/0/0

    ip add 10.1.12.2 24

    interface g0/0/1

    ip add 10.1.24.2 24

    R3

    interface g0/0/1

    ip add 10.1.13.3 24

    interface g0/0/0

    ip add 10.1.34.3 24

    R4

    interface g0/0/0

    ip add 10.1.24.4 24

    interface g0/0/1

    ip add 10.1.34.4 24

    interface g0/0/2

    ip add 10.1.45.4 24

    R5

    interface g0/0/0

    ip add 10.1.45.5 24

    interface loopback 0

    ip add 10.1.5.5 32

    R6

    interface g0/0/0

    ip add 10.1.16.6 24

    2、根据图示划分ISIS区域、system-id以及路由器级别

    R6

    isis 1

    network-entity 49.0001.0000.0000.0006.00 //配置NET地址,指定System-id和area-id

    is-level level-1 //指定R6路由器级别为level-1

    R1

    isis 1

    network-entity 49.0001.0000.0000.0001.00

    is-level level-1-2

    R2

    isis 1

    network-entity 49.0002.0000.0000.0002.00

    is-level level-2

    R3

    isis 1

    network-entity 49.0002.0000.0000.0003.00

    is-level level-2

    R4

    isis 1

    network-entity 49.0002.0000.0000.0004.00

    is-level level-2

    R5

    isis 1

    network-entity 49.0003.0000.0000.0005.00

    is-level level-2

    3、在路由器互联的端口运行ISIS 1,将R5的LOOP0接口通告进ISIS

    R6

    interface g0/0/0

    isis enable 1 //1为isis的进程号

    R1

    interface g0/0/0

    isis enable 1

    interface g0/0/1

    isis enable 1

    interface g0/0/2

    isis enable 1

    R2

    interface g0/0/0

    isis enable 1

    interface g0/0/1

    isis enable 1

    R3

    interface g0/0/0

    isis enable 1

    interface g0/0/1

    isis enable 1

    R4

    interface g0/0/0

    isis enable 1

    interface g0/0/1

    isis enable 1

    interface g0/0/2

    isis enable 1

    R5

    interface g0/0/0

    isis enable 1

    interface loopback 0

    isis enable 1

    4、验证:检查路由器之间的ISIS邻居关系

    命令行:display isis peer

    R1有3个isis邻居

    R4有3个isis邻居

    5、验证:R6可以ping通R5的loop0接口

    还有负载均衡

  • 相关阅读:
    spring data jpa在mysql分页中的实例(一次访问同时获取数据和总数)
    论文分享|Arxiv2024‘复旦|如何让LLM说不?
    为什么使用前端框架
    CVE-2023-38831漏洞实例
    window远程部署:doccano——文本标注工具
    Win10系统无法登录Xbox live的四种解决方法
    什么是 MyBatis?与 Hibernate 的区别
    Grafana系列-GaC-1-Grafana即代码的几种实现方式
    工厂模式代码实例详解
    c++ openssl实现https
  • 原文地址:https://blog.csdn.net/CCIE21820/article/details/126108451