Sun Ethernet Fabric Operating System OSPFv3 Administration Guide

Exit Print View

Updated: July 2015
 
 

Configure Redistributed Route Attributes

This example configures the IPv6 address prefix as 3333::, with a prefix length of 64. The metric value of 100 is applied to the route before it is advertised to the OSPFv3 domain, with a metric type of as Exttype1 and a tag of 10.

  1. Enter the Global Configuration mode in SEFOS1.
    SEFOS# configure terminal
    
  2. Enable OSPF globally in SEFOS1.
    SEFOS(config)# ipv6 router ospf
    
  3. Configure the OSPF router ID.
    SEFOS(config-router)# router-id 10.0.0.1
    
  4. Configure the ASBR router.
    SEFOS(config-router)# asbr router
    
  5. Configure the redistribution of static routes.
    SEFOS(config-router)# redistribute static
    
  6. Configure the redistribution configuration.
    SEFOS(config-router)# redist-config 3333:: 64 metric-value 100 metric-type asExttype1 tag 10
    
  7. View the effect of the configuration.
    SEFOS# show running-config ospf3
     
    Building configuration...
    ipv6 router ospf
    router-id 10.0.0.1
    ASBR Router
    passive-interface
    redistribute static
    redist-config 3333:: 64 metric-value 100 metric-type asExttype1 tag 10
    !
    interface vlan 11
    ipv6 ospf area 0.0.0.0
    ipv6 ospf passive-interface
    !
    interface vlan 10
    ipv6 ospf area 0.0.0.6
    ipv6 ospf passive-interface
    !
     
    end