今天复习了CCNP中的IS-IS章节,了解了概念之后最重要的还是动手实验了。在实验中体会所学的知识点是如何运用的是最重要的。学CISCO这么久,老是感觉自己的记性一日不如一日,不过没办法,不学习的话要实现IE梦想那真就成了天方夜谭了,给自己加油,兄弟们也一起啊!
首先看看这张实验拓扑图:
配置的步骤如下:
1.在路由器上启用ISIS路由协议。 命令router isis
2.配置路由器的NET地址。 格式为: NET 49.YYYY.XXXX.XXXX.XXXX.00,其中49表示本地管理(私有的意思),YYYY表示区域地址,XXXX.XXXX.XXXX表示系统地址,00是NESL字节,其等于0表示网络服务。
3.配置路由器的IS-IS类别。在ISIS协议配置模式下,IS-TYPE LEVEL-1/1-2/-2。
4.配置ISIS接口级别。在接口配置模式下:ISIS CIRCUIT-TYPE LEVEL-1/-2/-1-2。
5.在接口启动集成IS-IS。以便分发IP信息。
6.如有必要,对ISIS分发的路由信息进行汇总。(在LEVEL-1-2的路由器上进行,就像在OSPF的ABR路由器上进行汇总的理由一样。)SUMMARY ADDRESS A.B.C.D MASK
7.验证配置。show ip route , sh isis neighbour ,sh clns neighbour ,sh isis topology.
好了,来看一下具体配置吧:
——路由器R1的配置:
R1#sh run
Building configuration...
Current configuration : 1289 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R1
!
boot-start-marker
boot-end-marker
!
!
memory-size iomem 5
no aaa new-model
ip subnet-zero
!
!
ip cef
!
!
no ftp-server write-enable
!         
!
!
!
interface Loopback0
 ip address 192.168.1.1 255.255.255.0
 ip router isis 
 isis circuit-type level-1
!
interface Loopback1
 ip address 192.168.2.1 255.255.255.0
 ip router isis 
 isis circuit-type level-1
!
interface Loopback2
 ip address 192.168.3.1 255.255.255.0
 ip router isis 
 isis circuit-type level-1
!
interface Loopback3
 ip address 192.168.4.1 255.255.255.0
 ip router isis     在接口上启用CLNS路由功能。
 isis circuit-type level-1
!         
interface Serial0/0
 ip address 10.1.0.1 255.255.255.252
 ip router isis 
 clns router isis
 serial restart-delay 0
 isis circuit-type level-1
!
interface Serial0/1
 no ip address
 shutdown
 serial restart-delay 0
!
interface Serial0/2
 no ip address
 shutdown
 serial restart-delay 0
!
interface Serial0/3
 no ip address
 shutdown
 serial restart-delay 0
!
router isis 
 net 49.0001.1111.1111.1111.00
 is-type level-1
!
ip http server
ip classless
!
!
!
!
!
control-plane
!
!
line con 0
 transport preferred all
 transport output all
line aux 0
 transport preferred all
 transport output all
line vty 0 4
!
end
路由器R2的配置:
R2#sh run
Building configuration...
Current configuration : 958 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R2
!
boot-start-marker
boot-end-marker
!
!
memory-size iomem 5
no aaa new-model
ip subnet-zero
!
!
ip cef
!
!
no ftp-server write-enable
!         
!
!
!
interface Serial0/0
 ip address 10.1.0.2 255.255.255.252
 ip router isis 
clns router isis
 serial restart-delay 0
 isis circuit-type level-1
!
interface Serial0/1
 ip address 10.2.0.1 255.255.255.252
 ip router isis 
clns router isis
 serial restart-delay 0
 isis circuit-type level-2-only
!
interface Serial0/2
 no ip address
 shutdown
 serial restart-delay 0
!
interface Serial0/3
 no ip address
 shutdown 
 serial restart-delay 0
!
router isis 
 net 49.0001.2222.2222.2222.00
 summary-address 192.168.0.0 255.255.0.0   实现路由汇总
!
ip http server
ip classless
!
!
!
!
!
control-plane
!
!
line con 0
 transport preferred all
 transport output all
line aux 0
 transport preferred all
 transport output all
line vty 0 4
!
end
路由器R3的配置:
R3#sh run
Building configuration...
Current configuration : 944 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R3
!
boot-start-marker
boot-end-marker
!
!
memory-size iomem 5
no aaa new-model
ip subnet-zero
!
!
ip cef
!
!
no ftp-server write-enable
!         
!
!
!
interface Serial0/0
 ip address 10.2.0.2 255.255.255.252
 ip router isis 
clns router isis
 serial restart-delay 0
 isis circuit-type level-2-only
!
interface Serial0/1
 ip address 10.3.0.1 255.255.255.252
 ip router isis 
clns router isis
 serial restart-delay 0
 isis circuit-type level-2-only
!
interface Serial0/2
 no ip address
 shutdown
 serial restart-delay 0
!
interface Serial0/3
 no ip address
 shutdown 
 serial restart-delay 0
!
router isis 
 net 49.0020.3333.3333.3333.00
 is-type level-2-only
!
ip http server
ip classless
!
!
!
!
!
control-plane
!
!
line con 0
 transport preferred all
 transport output all
line aux 0
 transport preferred all
 transport output all
line vty 0 4
!
end
路由器R4的配置:
R4#sh run
Building configuration...
Current configuration : 1202 bytes
!
version 12.3
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname R4
!
boot-start-marker
boot-end-marker
!
!
memory-size iomem 5
no aaa new-model
ip subnet-zero
!
!
ip cef
!
!
no ftp-server write-enable
!         
!
!
!
interface Loopback0
 ip address 20.0.0.1 255.255.255.0
 ip router isis 
 isis circuit-type level-1
!
interface Loopback1
 ip address 20.0.1.1 255.255.255.0
 ip router isis
 isis circuit-type level-1
!
interface Loopback2
 ip address 20.0.2.1 255.255.255.0
 ip router isis 
 isis circuit-type level-1
!
interface Serial0/0
 ip address 10.3.0.2 255.255.255.252
 ip router isis 
clns router isis
 serial restart-delay 0
 isis circuit-type level-2-only
!
interface Serial0/1
 no ip address
 shutdown
 serial restart-delay 0
!
interface Serial0/2
 no ip address
 shutdown
 serial restart-delay 0
!
interface Serial0/3
 no ip address
 shutdown
 serial restart-delay 0
!
router isis 
 net 49.0002.4444.4444.4444.00
 summary-address 20.0.0.0 255.255.0.0  实现路由汇总
!
ip http server
ip classless
!         
!
!
!
!
control-plane
!
!
line con 0
 transport preferred all
 transport output all
line aux 0
 transport preferred all
 transport output all
line vty 0 4
!
end
所有配置都已结束,下面进行验证:
使用SH CLNS ROUTE观察CLNS路由情况:
路由器R1:
R1#sh clns route
Codes: C - connected, S - static, d - DecnetIV
       I - ISO-IGRP,  i - IS-IS,  e - ES-IS
       B - BGP,       b - eBGP-neighbor
C  49.0001.1111.1111.1111.00 [1/0], Local IS-IS NET
C  49.0001 [2/0], Local IS-IS Area
路由器R2:
R2#sh clns route
Codes: C - connected, S - static, d - DecnetIV
       I - ISO-IGRP,  i - IS-IS,  e - ES-IS
       B - BGP,       b - eBGP-neighbor
C  49.0001.2222.2222.2222.00 [1/0], Local IS-IS NET
C  49.0001 [2/0], Local IS-IS Area
i  49.0002 [110/20]
      via R3, Serial0/1
i  49.0020 [110/10]
      via R3, Serial0/1
路由器R3:
R3#sh clns route
Codes: C - connected, S - static, d - DecnetIV
       I - ISO-IGRP,  i - IS-IS,  e - ES-IS
       B - BGP,       b - eBGP-neighbor
C  49.0020.3333.3333.3333.00 [1/0], Local IS-IS NET
C  49.0020 [2/0], Local IS-IS Area
i  49.0001 [110/10]
      via R2, Serial0/0
i  49.0002 [110/10]
      via R4, Serial0/1
路由器R4:
R4#sh clns route
Codes: C - connected, S - static, d - DecnetIV
       I - ISO-IGRP,  i - IS-IS,  e - ES-IS
       B - BGP,       b - eBGP-neighbor
C  49.0002.4444.4444.4444.00 [1/0], Local IS-IS NET
C  49.0002 [2/0], Local IS-IS Area
i  49.0001 [110/20]
      via R3, Serial0/0
i  49.0020 [110/10]
      via R3, Serial0/0
看一下路由汇总的效果吧:
路由器R2为LEVEL-1-2的类型,再汇总中我们只对L2进行了汇总
R2#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area 
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route
Gateway of last resort is not set
20.0.0.0/16 is subnetted, 1 subnets
i L2    20.0.0.0 [115/30] via 10.2.0.2, Serial0/1
i L1 192.168.4.0/24 [115/20] via 10.1.0.1, Serial0/0
     10.0.0.0/30 is subnetted, 3 subnets
C       10.2.0.0 is directly connected, Serial0/1
i L2    10.3.0.0 [115/20] via 10.2.0.2, Serial0/1
C       10.1.0.0 is directly connected, Serial0/0
i L1 192.168.1.0/24 [115/20] via 10.1.0.1, Serial0/0
i L1 192.168.2.0/24 [115/20] via 10.1.0.1, Serial0/0
i L1 192.168.3.0/24 [115/20] via 10.1.0.1, Serial0/0
i su 192.168.0.0/16 [115/20] via 0.0.0.0, Null0
路由器R4:
R4#sh ip route
Codes: C - connected, S - static, R - RIP, M - mobile, B - BGP
       D - EIGRP, EX - EIGRP external, O - OSPF, IA - OSPF inter area 
       N1 - OSPF NSSA external type 1, N2 - OSPF NSSA external type 2
       E1 - OSPF external type 1, E2 - OSPF external type 2
       i - IS-IS, su - IS-IS summary, L1 - IS-IS level-1, L2 - IS-IS level-2
       ia - IS-IS inter area, * - candidate default, U - per-user static route
       o - ODR, P - periodic downloaded static route
Gateway of last resort is not set
20.0.0.0/8 is variably subnetted, 4 subnets, 2 masks
C       20.0.0.0/24 is directly connected, Loopback0
i su    20.0.0.0/16 [115/10] via 0.0.0.0, Null0
C       20.0.1.0/24 is directly connected, Loopback1
C       20.0.2.0/24 is directly connected, Loopback2
     10.0.0.0/30 is subnetted, 3 subnets
i L2    10.2.0.0 [115/20] via 10.3.0.1, Serial0/0
C       10.3.0.0 is directly connected, Serial0/0
i L2    10.1.0.0 [115/30] via 10.3.0.1, Serial0/0
i L2 192.168.0.0/16 [115/40] via 10.3.0.1, Serial0/0
观察ISIS邻居状况:
路由器R1:
R1#sh isis neighbors detail
System Id      Type Interface IP Address      State Holdtime Circuit Id
R2             L1   Se0/0     10.1.0.2        UP    27       00
  Area Address(es): 49.0001
  SNPA: *HDLC*              
  State Changed: 01:04:16
  Format: Phase V
路由器R2:
R2#SH ISIS NEIghbors DETail
System Id      Type Interface IP Address      State Holdtime Circuit Id
R1             L1   Se0/0     10.1.0.1        UP    28       00
  Area Address(es): 49.0001
  SNPA: *HDLC*              
  State Changed: 01:05:00
  Format: Phase V
R3             L2   Se0/1     10.2.0.2        UP    24       00
  Area Address(es): 49.0020
  SNPA: *HDLC*              
  State Changed: 01:04:29
  Format: Phase V
路由器R3
R3#SH ISIS NEIghbors DETail
System Id      Type Interface IP Address      State Holdtime Circuit Id
R2             L2   Se0/0     10.2.0.1        UP    28       01
  Area Address(es): 49.0001
  SNPA: *HDLC*              
  State Changed: 01:05:03
  Format: Phase V
R4             L2   Se0/1     10.3.0.2        UP    27       00
  Area Address(es): 49.0002
  SNPA: *HDLC*              
  State Changed: 01:04:35
  Format: Phase V
路由器R4:
R4#SH ISIS NEIghbors DETail
System Id      Type Interface IP Address      State Holdtime Circuit Id
R3             L2   Se0/0     10.3.0.1        UP    29       01
  Area Address(es): 49.0020
  SNPA: *HDLC*              
  State Changed: 01:05:02
  Format: Phase V
实验就做到这里吧。
欢迎大家光临我的博客!

本文转自 tiger506 51CTO博客,原文链接:http://blog.51cto.com/tiger506/105142,如需转载请自行联系原作者

CCNP之IS-IS实验相关推荐

  1. CCNP之重发布实验

    1234各有一个环回,2环回宣告在rip v2,4环回宣告在ospf配置:OSPF学环回学到的是/32位的掩码,因此在所有运行OSPF的环回接口上,把OSPF的工作方式改为点到点----即R3和R4 ...

  2. CCNP张SIR的视频教程(完全可以下载)

    自己硬盘空间比较小,先作个记录,有需要再下载 CCNP张SIR的视频教程,非常详细的讲解,网上找的. BCMSN: http://www.thesecondclass.cn/bbs/download/ ...

  3. 学习ccna,ccnp中如何提高英语问题

    转自[url]http://www.net130.com/[/url] 经常看到很多同学因为英语的问题犹豫不决,甚至是止步不前,促使我有了写点东西的想法. 其实,英语的好坏并不能决定你学习的成功和失败 ...

  4. Boson_Netsim_6使用方法

    使用说明:  netsim6.0只有在英文操作系统下才能释放出正确的pdf文件,大家可以到文档中心下载以下3个pdf文件:  SequentialLabs.pdf:解压后复制到安装目录下的\MyLab ...

  5. Cisco认证题库、中英文精选资料下载

    最新更新 最新CCNP认证考试指南 最新CCNA学习指南 破译思科之ccna CCNP试验总结 1000道CCNA基础知识题 最新CCNP的PPT CCNA实验手册与视频结合讲解 CCNP最新2007 ...

  6. CCNP实验:路由重分布注意事项

    CCNP实验:路由重分布注意事项之一.重分布基础: 大家都知道,一般来说一个组织或者一个跨国公司很少只使用一个路由协议,而如果一个公司同时运行了多个路由协议,或者一个公司和另外一个公司合并的时候两个公 ...

  7. CCNP之BSCI实验6:EIGRP验证

    CCNP之BSCI实验6:EIGRP验证 实验的目的: 1.       掌握EIGRP验证的配置. 实验拓扑: 实验步骤: 1.  按给出的拓扑图配置路由器的IP 2.  配置好EIGRP,自治号为 ...

  8. OSPFv2的综合实验试题分析第1例(CCNP阶段)

    OSPFv2的综合实验试题分析第1例 OSPF综合实验环境图与配置原则 配置必须遵守的事项: 1 如果没有特别申请,禁止使用静态路由.再发布等技术. 2 不允许使用需求中明确禁止的技术来完成实验 3 ...

  9. CCNP路由实验之八 路由重公布

     CCNP路由实验之八 路由重公布 在前面几个实验,已经学习了静态路由和动态路由.如今,我们要掌握怎样使它们在一个网络中融合,即路由重公布.路由重分布能够实现多种路由协议之间共享路由信息并进行路由 ...

最新文章

  1. Hubble.net 简介及与Lucene.net 对比测试
  2. 从玉农业蔬菜标准化-林裕豪:致力食品安全和质量管理体系
  3. SAP中Product Orders(生产订单)相关函数BAPI
  4. ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
  5. eclipse 自动提示卡断问题
  6. 二十一、K8s集群设置3-HTTPS-Cert-manager
  7. 在IE浏览器中url传参长度问题
  8. 进程调度算法C语言实现
  9. 计算机便签中字的大小,Windows便签字体怎么调整?电脑便签怎么改字体大小
  10. 组态王、力控、MCGS、瑞尔、杰控等国内组态软件一点看法 1
  11. 推荐10个易上手好用的H5网页编辑工具
  12. 微信小程序分享功能知识点
  13. MSP430 IO操作
  14. 如何做好测试用例的设计
  15. 表情包 AI 生成器:识别人脸情绪,自动配文字
  16. 数据结构例1.已知顺序表L的长度为n,试编写算法实现在顺序表中删除值为elem的数据元素
  17. 移动要停止2g信号服务器,中国移动彻底关闭2G网络,老年功能机还能用吗?
  18. 游戏开发设计模式与接口运用
  19. 六、最短路径——迪杰斯特拉(Dijkstra)算法
  20. obj2gltf格式转换详细过程

热门文章

  1. (int)a和(int)a的区别
  2. 认识 linux sysfs文件系统
  3. CentOS搭建C++开发环境
  4. solr教程 solr5.5
  5. WCF - WAS Hosting
  6. 柯里化(Curing)
  7. 单链表删除所有值为x的元素_C/C++编程笔记:如何使用C++实现单链表?单链表的基本定义...
  8. C 中的内存操作函数-memcpy 等(to be continued)
  9. php-fpm 没有启动脚本,php-fpm服务启动脚本
  10. centos6.8 安装mysql_Centos6.8通过yum安装mysql5.7