IS-IS多区域配置

  实验TOP:


 一.案例要求:使用IS-IS路由协议完成以上拓扑的配置,使全网互通。我们只是为了研究IS-IS多区域的路由转发,不考虑IP地址的浪费问题。

二.实验步骤1.       配置R1的接口地址,并宣告IS-IS协议

R1(config)#int f1/0

R1(config-if)#ip add 192.168.1.1 255.255.255.0

R1(config-if)#no shut

R1(config)#int s0/0

R1(config-if)#ip add 192.168.2.1 255.255.255.0

R1(config-if)#no shut

R1(config-if)#exit

R1(config)#router isis  进入ISIS配置模式,tag为空

R1(config-router)#is-type level-1     配置本区域为L1级别

R1(config-router)#net 49.0001.1111.1111.1111.00   区域49.0001 systemid=1111.1111.1111 .00代表上层协议使IP

R1(config-router)#exit

R1(config)#int f1/0

R1(config-if)#ip router isis      在接口上应用tag 为空的ISIS进程

R1(config-if)#int s0/0

R1(config-if)#ip router isis

 2.       在R2上配置ISIS区域和接口地址,并将ISIS进程应用的接口

r2(config)#hostname R2

R2(config)#router isis

R2(config-router)#net 49.0001.2222.2222.2222.00

R2(config-router)#is-type level-1-2    定义49.0002区域为L1/L2等级,它是L1和L2交换路由信息的中间者,此时R2相当于OSPF完全末节区域的ABR,它向L1区域中注入一条0.0.0.0/0的路由R2(config-router)#exit

R2(config)#int s0/0

R2(config-if)#ip add 192.168.2.2 255.255.255.0

R2(config-if)#no shut

R2(config-if)#ip router isis

R2(config-if)#int s0/1

R2(config-if)#ip add 192.168.3.1 255.255.255.0

R2(config-if)#no shut

R2(config-if)#ip router isis 

3.       在R3上配置ISIS区域,接口地址,并将ISIS进程绑定到接口

Router(config)#hostname R3

R3(config)#router isis

R3(config-router)#net 49.0002.3333.3333.3333.00

R3(config-router)#is-type level-2

R3(config-router)#exit

R3(config)#int s0/0

R3(config-if)#ip add 192.168.3.2 255.255.255.0

R3(config-if)#no shut

R3(config-if)#ip router isis

R3(config-if)#int s0/1

R3(config-if)#ip add 192.168.4.1 255.255.255.0

R3(config-if)#no shut

R3(config-if)#ip router isis

 4.       在R4上配置ISIS区域,接口地址,并将ISIS进程应用到接口

R4(config)#router isis

R4(config-router)#net 49.0003.4444.4444.4444.00

R4(config-router)#is-type level-1-2

R4(config-router)#exit

R4(config)#int s0/0

R4(config-if)#ip add 192.168.4.2 255.255.255.0

R4(config-if)#no shut

R4(config-if)#ip router isis

R4(config-if)#int s0/1

R4(config-if)#ip add 192.168.5.1 255.255.255.0

R4(config-if)# no shut

R4(config-if)#ip router isis 

小结:其实我们每配置好以太路由器就可以show ip route 看一下该路由器是否可以学到IS-IS区域的路由

 5.       在R5上配置ISIS区域,接口地址,并将IS-IS区域应用到接口

 

Router(config)#hostname R5

R5(config)#router isis

R5(config-router)#net 49.0003.5555.5555.5555.001

R5(config-router)#is-type level-1

R5(config-router)#exit

R5(config)#int s0/0

R5(config-if)#ip add 192.168.5.2 255.255.255.0

R5(config-if)#no shut

R5(config-if)#ip router isis

R5(config-if)#int f1/0

R5(config-if)#ip add 192.168.6.1 255.255.255.0

R5(config-if)#no shut

R5(config-if)#ip router isis                                                             

一.测试实验结果:分别在R1,R2,R3,R4,R5上show ip routeR1 

 

  

 

 

全网六条路由,它直连两条(C标志),从R1那学到一条(L1标志),从R3那学到3条(L2标志)

 

 

 

 

 

R3是L2区域(骨干区域),它只能收到L2类型的路由,分别由R2和R4传送给它

 

R4和R5的路由信息再次省略

你可能感兴趣的:(IS-IS,多区域配置)