Isis On Huawei Routers PDF
Isis On Huawei Routers PDF
ISIS is a link-state IGP protocol. It gathers routing information from adjacent neighbors and uses the
SPF algorithm to determine the best paths to destinations.
I wouldnt like to focus on the theory because you can find it in many sources.
Configure IP addresses of physical and loopback interfaces on all routers (it is omitted here):
[2]isis
[2-isis-1]network-entity 10.0020.0200.2002.00
[2]interface LoopBack 0
[2-LoopBack0]isis enable
[2]interface Ethernet2/0/0
[2-Ethernet2/0/0]isis enable
[2]interface GigabitEthernet0/0/0
[2-GigabitEthernet0/0/0]isis enable
[2]interface GigabitEthernet0/0/1
[2-GigabitEthernet0/0/1]isis enable
It should be noted at this point that routers 1, 2 and 3 are in area 10 and routers 4 and 5 in area 20.
Additionally you should remember about hierarchical structure of ISIS. In our case router 1 works as
level-1, routers 2 and 3 work as level-1-2 (by default) and routers 4 and 5 as level-2. Level-1 is an
equivalent of the stub area in OSPF. Level-1 routers have only a defult route to external destinations.
[1]isis
[1-isis-1]is-level level-1
[2]isis
[2-isis-1]is-level level-1-2
[3]isis
[3-isis-1]is-level level-1-2
[4]isis
[4-isis-1]is-level level-2
[5]isis
[5-isis-1]is-level level-2
0020.0200.2002.02-00
0020.0200.2002 - source ID
02 - pseudonode ID
00 - LSP number
Level-1 router:
Level-1-2 router:
Level-2 router:
A default route must exist in the Level-1 routing table and the next hop is a Level-1-2 router.
A Level-2 router must have all Level-1 and Level-2 routes. We can see it better in IP routing tables:
[1]display ip routing-table
Route Flags: R - relay, D - download to fib
------------------------------------------------------------------------------
Routing Tables: Public
Destinations : 14 Routes : 14
[2]dis ip routing-table
Route Flags: R - relay, D - download to fib
------------------------------------------------------------------------------
Routing Tables: Public
Destinations : 20 Routes : 20
[5]display ip routing-table
Route Flags: R - relay, D - download to fib
------------------------------------------------------------------------------
Routing Tables: Public
Destinations : 16 Routes : 16
ISIS cost for all interfaces is 10 by default. It can be changed manually by isis cost command.
Total Peer(s): 1
In this post I focused only on basic ISIS configuration. This protocol is widely used among ISPs. I will
spend more time in the future to show you more functions and ISIS configuration examples.