JNCIP: IS-IS路由协议基础概念01
点击上文↑链接至YouTube收看高清版本实验视频
IS-IS路由协议标准参考文档列表
- ISO/IEC 10589 / RFC 1142
IS-IS Intra-Domain Routing Information Exchange Protocol - Internet draft (draft-ietf-isis-3way-03.txt) / RFC 3373
Three-Way Handshake for IS-IS Point-to-Point Adjacencies - Internet draft (draft-ietf-isis-traffic-02.txt) / RFC 3784
IS-IS extensions for traffic engineering - RFC 1195, Use of OSI IS-IS for Routing in TCP/IP and Dual Environments
- RFC 2763, Dynamic Hostname Exchange Mechanism for IS-IS
- RFC 2966, Domain-wide Prefix Distribution with Two-Level IS-IS
- RFC 2973, IS-IS Mesh Groups
JUNOS IS-IS路由协议排错及状态监控与测试命令集
- show isis interface – 查询IS-IS运行接口
- show isis routes – 查询IS-IS路由信息
- show isis spf – 查询IS-IS SPF算法
- show isis statistics – 查询IS-IS流量状态
- clear isis statistics – 重置IS-IS流量状态统计
- show isis database – 查询IS-IS链路状态数据库信息
- clear isis database – 重置IS-IS链路状态数据库
- show isis adjacency – 查询IS-IS邻接状态
- clear isis adjacency – 重置IS-IS邻接状态
JUNOS IS-IS路由协议配置命令举例
上面所提及的大部分文档,现在都可以在Google Book上面找到了。而当你计划在Juniper路由器上启用IS-IS路由协议的时候,你需要在路由器上的任一接口上配置ISO NET地址,一般情况下建议将NET (Network Entity Title)地址配置在环回接口上面。同时,你需要在所有将要运行IS-IS路由协议的接口上启用ISO地址族。另外,当你把一个接口在IS-IS路由协议内通告的时候,默认情况下该接口链路将同时在IS-IS Level-1和Level-2上运行。
[edit protocols isis]
nigel@junos# show
interface so-0/0/0.0 {
level 2 metric 10;
level 1 disable;
}
interface so-0/0/1.0 {
level 2 disable;
level 1 metric 10;
}
interface so-0/0/2.0 {
level 2 metric 10;
level 1 disable;
}
interface fxp0.0 {
disable;
}
interface lo0.0;
[edit interfaces]
nigel@junos# show
so-0/0/0 {
unit 0 {
family inet {
address 10.1.12.2/30;
}
family iso;
}
}
so-0/0/1 {
unit 0 {
family inet {
address 10.1.23.1/30;
}
family iso;
}
}
so-0/0/2 {
unit 0 {
family inet {
address 10.1.26.1/30;
}
family iso;
}
}
lo0 {
unit 0 {
family inet {
address 10.0.0.2/32;
}
family iso {
address 49.0002.1000.0000.0002.00;
}
}
}


十一月 5, 2008于3:51 上午
[...] Juniper实验: JUNOS IS-IS路由协议单区域配置 将网络策略设计与性能优化等因素暂时放到一边,而单纯考虑IS-IS在Juniper路由器上的运行的最简化配置。实际上,在实现的过程中并不会比OSPF复杂。关键的三个步骤在之前的JUNOS IS-IS路由协议配置命令举例中已经提及,包括: [...]