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

    还有负载均衡

  • 相关阅读:
    Java 入门基础知识
    Docker--harbor私有仓库部署与管理
    POSO论文原理详解和实际应用
    最小系统板 STM32入门,点亮 LED 灯(STM32F103C6T6)
    ffmpeg从一个视频中提取音频
    【MySQL】 Linux平台MySQL安装
    【UV打印机】电气之负压系统(二)
    Linux-awk和printf
    OPPO手机如何添加日程桌面插件?
    Android 7 btsnoop代码介绍
  • 原文地址:https://blog.csdn.net/CCIE21820/article/details/126108451