diff options
| author | vivek <vivek@cumulusnetworks.com> | 2017-05-15 14:34:04 -0700 | 
|---|---|---|
| committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-07-12 14:36:46 -0400 | 
| commit | 128ea8abbd38eddd2a9bfa18b596acd95f081353 (patch) | |
| tree | 3fec4b7e64cbd3a6beee108938cd673f11573649 /bgpd/bgp_ecommunity.h | |
| parent | 0ee26848f37d44ca5f1285e05f06bedd975a851c (diff) | |
bgpd: EVPN route handling
Core EVPN route handling functionality. This includes support for the
following:
- interface with zebra to learn about local VNIs and MACIPs as well as
to install remote VTEPs (per VNI) and remote MACIPs
- create/update/delete EVPN type-2 and type-3 routes
- attribute creation, route selection and install
- route handling per VNI and for the global routing table
- parsing of received EVPN routes and handling by route type
- encoding attributes for EVPN routes and EVPN prefix creation (for
Updates)
Signed-off-by: Vivek Venkatraman <vivek@cumulusnetworks.com>
Reviewed-by:   Donald Sharp <sharpd@cumulusnetworks.com>
Reviewed-by:   Daniel Walton <dwalton@cumulusnetworks.com>
Diffstat (limited to 'bgpd/bgp_ecommunity.h')
| -rw-r--r-- | bgpd/bgp_ecommunity.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/bgpd/bgp_ecommunity.h b/bgpd/bgp_ecommunity.h index 8981ea3465..9281c0d995 100644 --- a/bgpd/bgp_ecommunity.h +++ b/bgpd/bgp_ecommunity.h @@ -32,12 +32,15 @@  #define ECOMMUNITY_ROUTE_TARGET             0x02  #define ECOMMUNITY_SITE_ORIGIN              0x03 +/* Low-order octet of the Extended Communities type field for EVPN types */  #define ECOMMUNITY_EVPN_SUBTYPE_MACMOBILITY  0x00  #define ECOMMUNITY_EVPN_SUBTYPE_ESI_LABEL    0x01  #define ECOMMUNITY_EVPN_SUBTYPE_ES_IMPORT_RT 0x02  #define ECOMMUNITY_EVPN_SUBTYPE_ROUTERMAC    0x03  #define ECOMMUNITY_EVPN_SUBTYPE_DEF_GW       0x0d +#define ECOMMUNITY_EVPN_SUBTYPE_MACMOBILITY_FLAG_STICKY 0x01 +  /* Low-order octet of the Extended Communities type field for OPAQUE types */  #define ECOMMUNITY_OPAQUE_SUBTYPE_ENCAP     0x0c  | 
