Redistributing routes into IPv6 IS-IS

Routes can be redistributed for IPv6-IS-IS, and the routes to be redistributed can be specified.

About this task

The redistribution of static routes into IPv6 IS-IS is configured on device1. The redistribution of BGP routes into IPv6 IS-IS is configured on device2, and the BGP routes to be redistributed are specified.

Procedure

  1. On device1, enter the configure terminal command to access global configuration mode.
    device1# configure terminal
  2. Enter the router isis command to enter IS-IS router configuration mode and enable IS-IS on the device.
    device1(config)# router isis
    
  3. Enter the address-family ipv6 unicast command to enable ISIS address-family IPv6 unicast configuration mode.
    device1(config-isis-router)# address-family ipv6 unicast
    
  4. Enter the redistribute command with the static parameter to redistribute static routes.
    device1(config-router-isis-ipv6u)# redistribute static
    
  5. On device2, enter the configure terminal command to access global configuration mode.
    device2# configure terminal
  6. Enter the router isis command to enter IS-IS router configuration mode and enable IS-IS on the device.
    device2(config)# router isis
    
  7. Enter the address-family ipv6 unicast command to enable ISIS address-family IPv6 unicast configuration mode.
    device2(config-isis-router)# address-family ipv6 unicast
    
  8. Enter the redistribute command with the bgp and route-map parameters to redistribute BGP routes and specify a route map.
    device2(config-router-isis-ipv6u)# redistribute bgp route-map myroutemap
    

Example

The following example redistributes static routes into IPv6 IS-IS on a device.

device# configure terminal
device(config)# router isis
device(config-isis-router)# address-family ipv6 unicast
device(config-router-isis-ipv6u)# redistribute static

Example

The following example redistributes BGP routes into IPv6 IS-IS on a device and specifies a route map.

device# configure terminal
device(config)# router isis
device(config-isis-router)# address-family ipv6 unicast
device(config-router-isis-ipv6u)# redistribute bgp route-map myroutemap