[Contents] [Prev] [Next] [Index] [Report an Error]


Configuring IS-IS Interface-Specific Parameters

You can change IS-IS interface-specific parameters; most can be configured independently of other attached routers. You are not required to alter any interface parameters; however, some parameters must be consistent across all routers in your network. If you change certain values from the defaults, you must configure them on multiple interfaces and routers.

You can configure IS-IS interfaces as follows:

In the following command guidelines, notice that many parameters are preset to a default value. If that parameter has been modified from its default, use the no version of the command to restore its default value.

    isis authentication-key

host1(config-if)#isis-authentication-key 0 red5flower6 

    isis circuit-type

host1(config-if)#isis circuit-type level-2-only

    isis csnp-interval

host1(config-if)#isis csnp-interval 30 level-1

    isis hello-interval
    isis hello-multiplier

host1(config-if)#isis hello-interval 6 level-1
host1(config-if)#isis hello-multiplier 10 level-1

    isis lsp-interval

host1(config-if)#isis lsp-interval 100

    isis message-digest-key

host1(config-if)#isis message-digest-key 3 hmac-md5 
wdi6c3s39n level-2 

    isis metric

host1(config-if)#isis metric 20 level-2

    isis priority

host1(config-if)#isis priority 80 level-1

    isis retransmit-interval

host1(config-if)#isis retransmit-interval 60

    isis retransmit-throttle-interval

host1(config-if)#isis retransmit-throttle-interval 300

    passive-interface

The following commands configure loopback 0 as a passive interface and enable IS-IS on subinterfaces atm 2/0.1 and atm 2/1.1. IS-IS advertises the IP address of loopback 0 in its link state PDUs, but runs only on atm 2/0.1 and atm 2/1.1:

host1(config)#router isis floor12
host1(config-router)#net 
47.0010.0000.0000.0000.0001.0001.1111.1111.1111.00
host1(config-router)#passive-interface loopback 0
host1(config-router)#exit
host1(config)#interface atm 2/0.1
host1(config-if)#ip router isis floor12
host1(config-if)#exit
host1(config)#interface atm 2/1.1
host1(config-if)#ip router isis floor12

You can override the passive-interface configuration simply by issuing the complementary command. For example, suppose you issue the following commands after the previous configuration:

host1(config-router)#passive-interface atm 2/0.1
host1(config-router)#exit
host1(config)#interface loopback 0
host1(config-if)#ip router isis floor12

Now IS-IS advertises the IP address of atm 2/0.1 in its link state PDUs, but runs only on loopback 0 and atm 2/1.1.

Summary Example

host1(config-router)#passive-interface loopback 0
host1(config-if)#interface atm 8/0.500
host1(config-if)#isis metric 20 level-2
host1(config-if)#isis csnp-interval 30 level-1
host1(config-if)#isis hello-interval 6 level-1
host1(config-if)#isis hello-multiplier 10 level-1
host1(config-if)#isis lsp-interval 100
host1(config-if)#isis retransmit-interval 60
host1(config-if)#isis retransmit-throttle-interval 300
host1(config-if)#isis priority 80 level-1
host1(config-if)#isis circuit-type level-2-only

[Contents] [Prev] [Next] [Index] [Report an Error]