Configure OSPFv3 on the CLIP Interface for a VRF Instance

Note

Note

This procedure only applies to the VSP 8600 Series.

About this task

Perform this task to configure an Open Shortest Path First Version 3 (OSPFv3) instance for a specific circuitless IP address on the Virtual Router Forwarding (VRF) instance.

Procedure

  1. Enter Global Configuration mode:

    enable

    configure terminal

  2. Create a VRF instance and specify a VRF name:

    ip vrf WORD<1-16>

  3. Enter VRF Router Configuration mode:

    router vrf WORD<1-16>

  4. Create an OSPFv3 instance on the specific VRF instance:

    ipv6 ospf

  5. Enable OSPFv3 on the specific VRF instance:

    ipv6 ospf enable

  6. Enter Loopback Interface Configuration mode:

    interface Loopback <1-256>

  7. Create the IPv6 loopback interface address for the specific VRF instance:

    ipv6 interface address WORD<0-255> vrf WORD<1-16>

  8. Create the OSPFv3 instance:

    ipv6 ospf [<1-256>] area {A.B.C.D}

  9. Enable the OSPFv3 instance:

    ipv6 ospf [<1-256>] enable

Example

Configuring the OSPFv3 instance on the loopback interface on the VRF test:

Switch:1>enable
Switch:1#configure terminal
Switch:1(config)#ip vrf test
Switch:1(config)#router vrf test
Switch:1(config-vrf)#ipv6 ospf
Switch:1(router-vrf)#ipv6 ospf enable
Switch:1(router-vrf)#interface Loopback 10
Switch:1(config-if)#ipv6 interface address 2001::10:10:0:1/128 vrf test
Switch:1(config-if)#ipv6 ospf 10 area 192.2.0.1
Switch:1(config-if)#ipv6 ospf 10 enable