• 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接口

    还有负载均衡

  • 相关阅读:
    CSS3基础1
    太极图形课——渲染——光线追踪实战第一部分呢
    Lake Shore M91快速霍尔测量仪
    ts流中的时间概念: pcr,pts,dts 实例解说
    【Linux】gcc和g++的区别
    Containerd shim 原理深入解读
    再论无为而治
    Kaggle学习之M5 直接单步预测
    Linux centos7安装部署KETTLE-9.3.0
    Feign(黑马程序员)
  • 原文地址:https://blog.csdn.net/CCIE21820/article/details/126108451