[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.

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.

Configuring Authentication

You can set a password to authenticate IS-IS hello packets, and you can configure HMAC MD5 authentication for IS-IS interfaces.

isis authentication-key

isis message-digest-key

Configuring Link-State Metrics

You can configure the metric (cost) for an IS-IS interface.

isis metric

Setting the CSNP Interval

You can set the advertised complete sequence number PDU (CSNP) interval for an IS-IS interface.

isis csnp-interval

Configuring Hello Packet Parameters

You can set the hello interval and the hello multiplier for IS-IS hello packets.

isis hello-interval
    isis hello-multiplier

Configuring LSP Parameters

You can configure the transmission interval, retransmission interval, and retransmission throttle interval for LSPs on an interface-specific basis.

isis lsp-interval

isis retransmit-interval

isis retransmit-throttle-interval

Setting the Designated Router Priority

You can set the priority for the designated IS-IS router that you have elected to use.

isis priority

Configuring Passive Interfaces

You can configure an IS-IS passive interface. A passive interface only advertises its IP address in its LSPs; it does not send or receive IS-IS packets.

Optionally, you can set a route tag for an IS-IS passive interface by including the tag keyword and a numeric tag value in the passive-interface command.

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-subif)#ip router isis floor12 
host1(config-subif)#exit 
host1(config)#interface atm 2/1.1
host1(config-subif)#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.

Configuring Adjacency

You can configure the type (level) of adjacency you want to use on an IS-IS interface.

isis circuit-type

Configuring Route Tags for IS-IS Interfaces

To configure a route tag for the IP addresses on an IS-IS interface:

  1. Specify an IS-IS routing process, and access Router Configuration mode.
  2. host1(config)#router isis engineering
    
    host1(config-router)#
    
    
    
  3. Configure a NET for the IS-IS process.
  4. host1(config-router)#net 47.0010.0000.0000.0000.0001.0001.1111.1111.1111.00
    
    
    
  5. Configure the router to accept and generate only new-style TLV tuples with a wider metric field. New-style TLV tuples include TLV type 135, which contains the route tag.
  6. host1(config-router)#metric-style wide
    
    
    
  7. Exit Router Configuration mode.
  8. host1(config-router)#exit
    
    
    
  9. Specify the interface on which you want to route IS-IS.

The procedure assumes that at least one IP address is already configured on this interface.

host1(config)#interface atm 2/2.1

  1. Configure a route tag for the interface.
  2. host1(config-subif)#isis tag 221
    
    
    
  3. Specify the IS-IS process to apply to the interface.
  4. host1(config-subif)#ip router isis engineering
    
    
    
  5. (Optional) Access Privileged Exec mode, and verify the route tag assignment.
  6. host1(config-subif)#exit
    
    host1(config)#exit
    
    host1#show isis database detail
    

isis tag

Summary Example

host1(config-router)#passive-interface loopback 0
host1(config-if)#interface atm 8/0 
host1(config-if)#isis tag 55 
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]