Tenant: VRF: static route

Users must provide the border-leaf ip (on which the VRF is instantiated) for the VRF SR (Static Route) and VRF SR-BFD (Static Route – BFD) configuration.

VRF Create

efa tenant vrf create --name <vrf-name> --tenant <tenant-name> 
                  --ipv6-static-route-next-hop <border-leaf-ip, destination, next-hop, distance> 
                  --ipv4-static-route-next-hop <border-leaf-ip, destination, next-hop, distance>

VRF Update

efa tenant vrf update –name <vrf-name> --tenant <tenant-name> 
                  --operation <static-route-add|static-route-delete> 
                  --ipv6-static-route-next-hop <border-leaf-ip, destination, next-hop, distance>
                  --ipv4-static-route-next-hop <border-leaf-ip, destination, next-hop, distance>

Example

efa tenant vrf create --name VRF1 --tenant tenant1
            --ipv6-static-route-next-hop BL1-IP,2000::/64,1001::2
            --ipv6-static-route-next-hop BL1-IP,2000::/64,1002::2
            --ipv6-static-route-next-hop BL2-IP,2001::/64,1001::2,4
            --ipv6-static-route-next-hop BL2-IP,2001::/64,1002::2
            --ipv4-static-route-next-hop BL1-IP,22.0.0.0/24,13.0.0.1,2
            --ipv4-static-route-next-hop BL1-IP,22.0.0.0/24,13.0.0.2
            --ipv4-static-route-next-hop BL2-IP,23.0.0.0/24,13.0.0.1 
            --ipv4-static-route-next-hop BL2-IP,23.0.0.0/24,13.0.0.2