侧边栏壁纸
博主头像
落叶人生博主等级

走进秋风,寻找秋天的落叶

  • 累计撰写 130562 篇文章
  • 累计创建 28 个标签
  • 累计收到 9 条评论
标签搜索

目 录CONTENT

文章目录

CCNP(BSCI)实验:基础ISIS实验

2023-04-04 星期二 / 0 评论 / 0 点赞 / 78 阅读 / 2324 字

第一步:配置R1R1(config)#int lo0R1(config-if)#ip add 1.1.1.1 255.255.255.0R1(config-if)#no shR1(config-if)

.


第一步:配置R1
R1(config)#int lo0
R1(config-if)#ip add 1.1.1.1 255.255.255.0
R1(config-if)#no sh
R1(config-if)#int s2/1
R1(config-if)#ip add 192.168.0.1 255.255.255.0
R1(config-if)#no sh
R1(config-if)#ip router isis
R1(config-if)#router isis
R1(config-router)#NET 49.1111.1111.1111.1111.00
第二步:R2
R2(config)#int lo0
R2(config-if)#ip add 2.2.2.2 255.255.255.0
R2(config-if)#int s2/1
R2(config-if)#ip add 192.168.0.2 255.255.255.0
R2(config-if)#no sh
R2(config-if)#ip router isis
R2(config-if)#router isis
R2(config-router)#net 49.1111.2222.2222.2222.00
R2(config-if)#int f0/0
R2(config-if)#ip add 10.0.0.2 255.255.255.0
R2(config-if)#no sh
R2(config-if)#ip router isis
第三步:配置R3
R3(config)#int f0/0
R3(config-if)#ip add 10.0.0.3 255.255.255.0
R3(config-if)#no sh
R3(config-if)#ip router isis
R3(config-if)#router isis
R3(config-router)#net 49.1111.3333.3333.3333.00
第四步:show R1的路由表
Gateway of last resort is not set

1.0.0.0/24 is subnetted, 1 subnets
C 1.1.1.0 is directly connected, Loopback0
2.0.0.0/24 is subnetted, 1 subnets
i L1 2.2.2.0 [115/20] via 192.168.0.2, Serial2/1
3.0.0.0/24 is subnetted, 1 subnets
i L1 3.3.3.0 [115/30] via 192.168.0.2, Serial2/1
10.0.0.0/24 is subnetted, 1 subnets
i L1 10.0.0.0 [115/20] via 192.168.0.2, Serial2/1
C 192.168.0.0/24 is directly connected, Serial2/1

第五步:配置R1,isis接口认证,其他设备上也做相同配置
R1(config)#int s2/1
R1(config-if)#isis password cisco
R1(config-if)#
Mar 30 14:19:17.315: %CLNS-4-AUTHFAIL: ISIS: Serial IIH authentication failed
刚一配置,就出现了认证失败

第六步:配置区域认证,其他设备上也做相同配置
R1(config-router)#router isis
R1(config-router)#area cisco
Mar 30 14:24:37.995: ISIS-Upd: LSP authentication failed
第七步:配置域间认证,其他设备上也做相同配置
R1(config)#router isis
R1(config-router)#domain-password cisco
Mar 30 14:27:54.455: ISIS-Upd: LSP authentication failed

.

广告 广告

评论区