Configure Static Route BFD on Tenant VRF

Provide a border-leaf IP (on which the VRF is instantiated) for the VRF SR-BFD (Static Route – BFD) configuration.

About this task

Follow this procedure to configure a static route BFD on tenant VRF.

Procedure

  1. To configure static route BFD on Tenant VRF when you create a VRF, run the following command:
    efa tenant vrf create --name <vrf-name> --tenant <tenant-name> 
        --ipv6-static-route-bfd <border-leaf-ip, destination-ip, source-ip, bfd-min-tx, bfd-min-rx, bfd-multiplier> 
        --ipv4-static-route-bfd <border-leaf-ip, destination-ip, source-ip, bfd-min-tx, bfd-min-rx, bfd-multiplier>
  2. To configure static route BFD on Tenant VRF when you create a VRF, run the following command:
    efa tenant vrf update –name <vrf-name> --tenant <tenant-name> 
        --operation <static-route-bfd-add|static-route-bfd-delete> 
        --ipv6-static-route-bfd <border-leaf-ip, destination-ip, source-ip, bfd-min-tx, bfd-min-rx, bfd-multiplier>
        --ipv4static-route-bfd  <border-leaf-ip, destination-ip, source-ip, bfd-min-tx, bfd-min-rx, bfd-multiplier>

Example

The following example creates static route BFD on tenant VRF:
efa tenant vrf create --name VRF1 --tenant tenant1
     --ipv6-static-route-bfd BL1-IP,1001::2,1001::1,100,200,5
     --ipv6-static-route-bfd BL2-IP,1011::2,1011::1,100,200,5
     --ipv6-static-route-bfd BL1-IP,1002::2, 1002::1
     --ipv6-static-route-bfd BL2-IP,1012::2, 1012::1
     --ipv4-static-route-bfd BL1-IP,13.0.0.1,13.0.0.9,200,300,6
     --ipv4-static-route-bfd BL2-IP,13.0.1.1,13.0.1.9,200,300,6
     --ipv4-static-route-bfd BL1-IP,13.0.0.2,13.0.0.10
     --ipv4-static-route-bfd BL2-IP,13.0.1.2,13.0.1.10