-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Overlay ECMP with BFD support #861
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9f58c56
Overlay ECMP with BFD support HLD
prsunny b9f1e94
Update Overlay ECMP with BFD.md
prsunny 1230d23
Update Overlay ECMP with BFD.md
prsunny 8ca1ac9
Update Overlay ECMP with BFD.md
prsunny a2c68f2
Updated for IPv6 test cases
prsunny 48f4cd0
Added testcases and scaling requirements
prsunny File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,329 @@ | ||
| # Overlay ECMP with BFD monitoring | ||
| ## High Level Design Document | ||
| ### Rev 1.1 | ||
|
|
||
| # Table of Contents | ||
|
|
||
| * [Revision](#revision) | ||
|
|
||
| * [About this Manual](#about-this-manual) | ||
|
|
||
| * [Definitions/Abbreviation](#definitionsabbreviation) | ||
|
|
||
| * [1 Requirements Overview](#1-requirements-overview) | ||
| * [1.1 Usecase](#11-usecase) | ||
| * [1.2 Functional requirements](#12-functional-requirements) | ||
| * [1.3 CLI requirements](#13-cli-requirements) | ||
| * [1.4 Warm Restart requirements ](#14-warm-restart-requirements) | ||
| * [2 Modules Design](#2-modules-design) | ||
| * [2.1 Config DB](#21-config-db) | ||
| * [2.2 App DB](#22-app-db) | ||
| * [2.3 Module Interaction](#23-module-interaction) | ||
| * [2.4 Orchestration Agent](#24-orchestration-agent) | ||
| * [2.5 Monitoring and Health](#25-monitoring-and-health) | ||
| * [2.6 BGP](#26-bgp) | ||
| * [2.7 CLI](#27-cli) | ||
| * [2.8 Test Plan](#28-test-plan) | ||
|
|
||
| ###### Revision | ||
|
|
||
| | Rev | Date | Author | Change Description | | ||
| |:---:|:-----------:|:------------------:|-----------------------------------| | ||
| | 0.1 | 09/09/2021 | Prince Sunny | Initial version | | ||
| | 1.0 | 09/13/2021 | Prince Sunny | Revised based on review comments | | ||
| | 1.1 | 10/08/2021 | Prince Sunny | BFD section seperated | | ||
| | 1.2 | 10/18/2021 | Prince Sunny/Shi Su | Test Plan added | | ||
| | 1.3 | 11/01/2021 | Prince Sunny | IPv6 test cases added | | ||
|
|
||
| # About this Manual | ||
| This document provides general information about the Vxlan Overlay ECMP feature implementation in SONiC with BFD support. This is an extension to the existing VNET Vxlan support as defined in the [Vxlan HLD](https://github.com/Azure/SONiC/blob/master/doc/vxlan/Vxlan_hld.md) | ||
|
|
||
|
|
||
| # Definitions/Abbreviation | ||
| ###### Table 1: Abbreviations | ||
| | | | | ||
| |--------------------------|--------------------------------| | ||
| | BFD | Bidirectional Forwarding Detection | | ||
| | VNI | Vxlan Network Identifier | | ||
| | VTEP | Vxlan Tunnel End Point | | ||
| | VNet | Virtual Network | | ||
|
|
||
|
|
||
| # 1 Requirements Overview | ||
|
|
||
| ## 1.1 Usecase | ||
|
|
||
| Below diagram captures the use-case. In this, ToR is a Tier0 device and Leaf is a Tier1 device. Vxlan tunnel is established from Leaf (Tier1) to a VTEP endpoint. ToR (Tier0), Spine (Tier3) are transit devices. | ||
|
|
||
|
|
||
|  | ||
|
|
||
| ### Packet flow | ||
|
|
||
| - The packets destined to the Tunnel Enpoint shall be Vxlan encapsulated by the Leaf (Tier1). | ||
| - Return packet from the Tunnel Endpoint (LBs) back to Leaf may or may not be Vxlan encapsualted. | ||
| - Some flows e.g. BFD over Vxlan shall require decapsulating Vxlan packets at Leaf. | ||
|
|
||
| ## 1.2 Functional requirements | ||
|
|
||
| At a high level the following should be supported: | ||
|
|
||
| - Configure ECMP with Tunnel Nexthops (IPv4 and IPv6) | ||
| - Support IPv6 tunnel that can support both IPv4 and IPv6 traffic | ||
| - Tunnel Endpoint monitoring via BFD | ||
| - Add/Withdraw Nexthop based on Tunnel or Endpoint health | ||
|
|
||
| ## 1.3 CLI requirements | ||
| - User should be able to show the Vnet routes | ||
| - This is an enhancement to existing show command | ||
|
|
||
| ## 1.4 Warm Restart requirements | ||
| No special handling for Warm restart support. | ||
|
|
||
| # 2 Modules Design | ||
|
|
||
| The following are the schema changes. | ||
|
|
||
| ## 2.1 Config DB | ||
|
|
||
| Existing Vxlan and Vnet tables. | ||
|
|
||
| ### 2.1.1 VXLAN Table | ||
| ``` | ||
| VXLAN_TUNNEL|{{tunnel_name}} | ||
| "src_ip": {{ip_address}} | ||
| "dst_ip": {{ip_address}} (OPTIONAL) | ||
| ``` | ||
| ### 2.1.2 VNET/Interface Table | ||
| ``` | ||
| VNET|{{vnet_name}} | ||
| "vxlan_tunnel": {{tunnel_name}} | ||
| "vni": {{vni}} | ||
| "scope": {{"default"}} (OPTIONAL) | ||
| "peer_list": {{vnet_name_list}} (OPTIONAL) | ||
| "advertise_prefix": {{false}} (OPTIONAL) | ||
| ``` | ||
|
|
||
| ## 2.2 APP DB | ||
|
|
||
| ### VNET | ||
|
|
||
| The following are the changes for Vnet Route table | ||
|
|
||
| Existing: | ||
|
|
||
| ``` | ||
| VNET_ROUTE_TUNNEL_TABLE:{{vnet_name}}:{{prefix}} | ||
| "endpoint": {{ip_address}} | ||
| "mac_address":{{mac_address}} (OPTIONAL) | ||
| "vni": {{vni}}(OPTIONAL) | ||
| ``` | ||
|
|
||
| Proposed: | ||
| ``` | ||
| VNET_ROUTE_TUNNEL_TABLE:{{vnet_name}}:{{prefix}} | ||
| "endpoint": {{ip_address1},{ip_address2},...} | ||
| "endpoint_monitor": {{ip_address1},{ip_address2},...} (OPTIONAL) | ||
| "mac_address":{{mac_address1},{mac_address2},...} (OPTIONAL) | ||
| "vni": {{vni1},{vni2},...} (OPTIONAL) | ||
| "weight": {{w1},{w2},...} (OPTIONAL) | ||
prsunny marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| “profile”: {{profile_name}} (OPTIONAL) | ||
prsunny marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ``` | ||
|
|
||
| ``` | ||
| key = VNET_ROUTE_TUNNEL_TABLE:vnet_name:prefix ; Vnet route tunnel table with prefix | ||
| ; field = value | ||
| ENDPOINT = list of ipv4 addresses ; comma separated list of endpoints | ||
| ENDPOINT_MONITOR = list of ipv4 addresses ; comma separated list of endpoints, space for empty/no monitoring | ||
| MAC_ADDRESS = 12HEXDIG ; Inner dst mac in encapsulated packet | ||
| VNI = DIGITS ; VNI value in encapsulated packet | ||
| WEIGHT = DIGITS ; Weights for the nexthops, comma separated (Optional) | ||
| PROFILE = STRING ; profile name to be applied for this route, for community | ||
| string etc (Optional) | ||
| ``` | ||
|
|
||
| ## 2.3 Module Interaction | ||
|
|
||
| Overlay routes can be programmed via RestAPI or gNMI/gRPC interface which is not described in this document. A highlevel module interaction is shown below | ||
prsunny marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
|  | ||
|
|
||
| ## 2.4 Orchestration Agent | ||
| Following orchagents shall be modified. | ||
|
|
||
| ### VnetOrch | ||
|
|
||
| #### Requirements | ||
|
|
||
| - Vnetorch to add support to handle multiple endpoints for APP_VNET_RT_TUNNEL_TABLE_NAME based route task. | ||
| - Reuse Nexthop tunnel based on the endpoint configuration. | ||
| - If there is already the same endpoint exists, use that as member for Nexthop group. | ||
| - Similar to above, reuse nexthop group, if multiple routes are programmed with the same set of nexthops. | ||
| - Provide support for endpoint modification for a route prefix. Require SAI support for SET operation of routes. | ||
| - Provide support for endpoint deletion for a route prefix. Orchagent shall check the existing entries and delete any tunnel/nexthop based on the new route update | ||
| - Ensure backward compatibility with single endpoint routes | ||
| - Use SAI_NEXT_HOP_GROUP_MEMBER_ATTR_WEIGHT for specifying weights to nexthop member | ||
| - Desirable to have per tunnel stats via sai_tunnel_stat_t | ||
|
|
||
| #### Detailed flow | ||
|
|
||
| VnetOrch is one of the critical module for supporting overlay ecmp. VnetOrch subscribes to VNET and ROUTE updates from APP_DB. | ||
|
|
||
| When a new route update is processed by the add operation, | ||
|
|
||
| 1. VnetOrch checks the nexthop group and if it exists, reuse the group | ||
| 2. For a new nexthop group member, add the ECMP member and identify the corresponding monitoring IP address. Create a mapping between the monitoring IP and nexthop tunnel endpoint. | ||
prsunny marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| 3. Initiate a BFD session for the monitoring IP if it does not exist | ||
| 4. Based on the BFD implementation (BfdOrch vs Control plane BFD), subscribe to BFD state change, either directly as subject observer (similar to port oper state notifications in orchagent) or via STATEDB update. | ||
prsunny marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| 5. Based on the VNET global configuration to advertise prefixes, indicate to STATEDB if the prefix must be advertised by BGP/FRR only if there is atleast one active nexthop. Remove this entry if there are no active nexthops indicated by BFD session down so that the network pfx is no longer advertised. | ||
|
|
||
| #### Monitoring Endpoint Mapping | ||
|
|
||
| VNET_ROUTE_TUNNEL_TABLE can provide monitoring endpoint IPs which can be different from the tunnel termination endpoints. VnetOrch creates a mapping for such endpoints and based on the monitoring endpoint (MonEP1) health, proceed with adding/removing nexthop tunnel endpoint (EP1) from the ECMP group for the respective prefix. It is assumed that for one tunnel termination endpoint (EP1), there shall be only one corresponding monitoring endpoint (MonEP1). | ||
|
|
||
| #### Pros of SWSS to handle route update based on tunnel nexthop health: | ||
|
|
||
| - No significant changes, if BFD session management is HW offload via SAI notifications or Control Plane assisted. | ||
| - Similar to NHFLAGS handling for existing route ECMP group | ||
| - Better performance in re-programming routes in ASIC instead of separate process to monitor and modify each route prefix by updating DB entries | ||
|
|
||
| ### Bfd HW offload | ||
|
|
||
| This design requires endpoint health monitoring by setting BFD sessions via HW offload. Details of BFD orchagent and HW offloading is captured in this [document](https://github.com/Azure/SONiC/blob/master/doc/bfd/BFD%20HW%20Offload%20HLD.md) | ||
|
|
||
|
|
||
| ## 2.5 Monitoring and Health | ||
|
|
||
| The routes are programmed based on the health of tunnel endpoints. It is possible that a tunnel endpoint health is monitored via another dedicated “monitoring” endpoint. Implementation shall enforce a “keep-alive” mechanism to monitor the health of end point and withdraw or reinstall the route when the endpoint is inactive or active respectively. | ||
| When an endpoint is deemed unhealthy, router shall perform the following actions: | ||
| 1. Remove the nexthop from the ECMP path. If all endpoints are down, the route shall be withdrawn. | ||
| 2. If 50% of the nexthops are down, an alert shall be generated. | ||
|
|
||
| ## 2.6 BGP | ||
|
|
||
| Advertise VNET routes | ||
| The overlay routes programmed on the device must be advertised to BGP peers. This can be achieved by the “network” command. | ||
|
|
||
| For example: | ||
| ``` | ||
| router bgp 1 | ||
| address-family ipv4 unicast | ||
| network 10.0.0.0/8 | ||
| exit-address-family | ||
| ``` | ||
|
|
||
| This configuration example says that network 10.0.0.0/8 will be announced to all neighbors. FRR bgpd doesn’t care about IGP routes when announcing its routes. | ||
|
|
||
|
|
||
| ## 2.7 CLI | ||
|
|
||
| The following commands shall be modified/added : | ||
|
|
||
| ``` | ||
| - show vnet routes all | ||
| - show vnet routes tunnel | ||
| ``` | ||
|
|
||
| Config commands for VNET, VNET Routes and BFD session is not considered in this design. This shall be added later based on requirement. | ||
|
|
||
| ## 2.8 Test Plan | ||
|
|
||
| Pre-requisite: | ||
|
|
||
| Create VNET and Vxlan tunnel as an below: | ||
|
|
||
| ``` | ||
| { | ||
| "VXLAN_TUNNEL": { | ||
| "tunnel_v4": { | ||
| "src_ip": "10.1.0.32" | ||
| } | ||
| }, | ||
|
|
||
| "VNET": { | ||
| "Vnet_3000": { | ||
| "vxlan_tunnel": "tunnel_v4", | ||
| "vni": "3000", | ||
| "scope": "default" | ||
| } | ||
| } | ||
| ``` | ||
| Similarly for IPv6 tunnels | ||
|
|
||
| ``` | ||
| { | ||
| "VXLAN_TUNNEL": { | ||
| "tunnel_v6": { | ||
| "src_ip": "fc00:1::32" | ||
| } | ||
| }, | ||
|
|
||
| "VNET": { | ||
| "Vnet_3001": { | ||
| "vxlan_tunnel": "tunnel_v6", | ||
| "vni": "3001", | ||
| "scope": "default" | ||
prsunny marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
| } | ||
| ``` | ||
|
|
||
| Note: It can be safely assumed that only one type of tunnel exists - i.e, either IPv4 or IPv6 for this use-case | ||
|
|
||
| For ```default``` scope, no need to associate interfaces to a VNET | ||
|
|
||
| VNET tunnel routes must be created as shown in the example below | ||
|
|
||
| ``` | ||
| [ | ||
| "VNET_ROUTE_TUNNEL_TABLE:Vnet_3000:100.100.2.1/32": { | ||
| "endpoint": "1.1.1.2", | ||
| "endpoint_monitor": "1.1.2.2" | ||
| } | ||
| ] | ||
| ``` | ||
|
|
||
| With IPv6 tunnels, prefixes can be either IPv4 or IPv6 | ||
|
|
||
| ``` | ||
| [ | ||
| "VNET_ROUTE_TUNNEL_TABLE:Vnet_3001:100.100.2.1/32": { | ||
| "endpoint": "fc02:1000::1", | ||
| "endpoint_monitor": "fc02:1000::2" | ||
| }, | ||
| "VNET_ROUTE_TUNNEL_TABLE:Vnet_3001:20c0:a820:0:80::/64": { | ||
| "endpoint": "fc02:1001::1", | ||
| "endpoint_monitor": "fc02:1001::2" | ||
| } | ||
| ] | ||
| ``` | ||
|
|
||
| ### Test Cases | ||
|
|
||
| #### Overlay ECMP | ||
|
|
||
| It is assumed that the endpoint IPs may not have exact match underlay route but may have an LPM underlay route or a default route. Test must consider both IPv4 and IPv6 traffic for routes configured as example shown above | ||
|
|
||
| | Step | Goal | Expected results | | ||
| |-|-|-| | ||
| |Create a tunnel route to a single endpoint a. Send packets to the route prefix dst| Tunnel route create | Packets are received only at endpoint a | | ||
| |Set the tunnel route to another endpoint b. Send packets to the route prefix dst | Tunnel route set | Packets are received only at endpoint b | | ||
| |Remove the tunnel route. Send packets to the route prefix dst | Tunnel route remove | Packets are not received at any ports with dst IP of b | | ||
| |Create tunnel route 1 with two endpoints A = {a1, a2}. Send packets to the route 1's prefix dst | ECMP route create | Packets are received at either a1 or a2 | | ||
| |Create tunnel route 2 to endpoint group A Send packets to route 2’s prefix dst | ECMP route create | Packets are received at either a1 or a2 | | ||
| |Set tunnel route 2 to endpoint group B = {b1, b2}. Send packets to route 2’s prefix dst | ECMP route set | Packets are received at either b1 or b2 | | ||
| |Send packets to route 1’s prefix dst. By removing route 2 from group A, no change expected to route 1 | NHG modify | Packets are received at either a1 or a2 | | ||
| |Set tunnel route 2 to single endpoint b1. Send packets to route 2’s prefix dst | NHG modify | Packets are recieved at b1 only | | ||
| |Set tunnel route 2 to shared endpoints a1 and b1. Send packets to route 2’s prefix dst | NHG modify | Packets are recieved at a1 or b1 | | ||
| |Remove tunnel route 2. Send packets to route 2’s prefix dst | ECMP route remove | Packets are not recieved at any ports with dst IP of a1 or b1 | | ||
| |Set tunnel route 3 to endpoint group C = {c1, c2, c3}. Ensure c1, c2, and c3 matches to underlay default route. Send 10000 pkt with random hash to route 3's prefix dst | NHG distribution | Packets are distributed equally across c1, c2 and c3 | | ||
| |Modify the underlay default route nexthop/s. Send packets to route 3's prefix dst | Underlay ECMP | No change to packet distribution. Packets are distributed equally across c1, c2 and c3 | | ||
| |Remove the underlay default route. | Underlay ECMP | Packets are not recieved at c1, c2 or c3 | | ||
| |Re-add the underlay default route. | Underlay ECMP | Packets are equally recieved at c1, c2 or c3 | | ||
|
|
||
| #### BFD and health monitoring | ||
|
|
||
| TBD | ||
|
|
||
| #### BGP advertising | ||
|
|
||
| TBD | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.