Manual:BGP Best Path Selection Algorithm

From MikroTik Wiki
Revision as of 09:44, 30 March 2010 by Marisb (talk | contribs)
Jump to navigation Jump to search

Introduction

Routers running Border Gateway Protocol (BGP) typically receive multiple paths to the destination. The BGP best path selection algorithm decides which is the best path to instal in the IP routing table and use for forwarding traffic.

Best path algorithm compares routes received by a single BGP instance. Routes installed by different BGP instances are compared by the general algorithm, i.e. route distances are compared and the route with lower distance is preferred.

Why Routers Ignore Paths

A router running BGP arranges all paths for the same prefix in a list that is later used to select the best path. Some paths in this list are not considered for the best path selection algorithm. Routers ignore paths in the following circumstances:

  • Paths from an external BGP (eBGP) neighbor if the local autonomous system (AS) appears in the AS_PATH attribute.
Such paths are not even installed in the BGP Routing Information Base (RIB) and thus do not consume memory. The same applies to any path that is discarded (action=discard) by the routing filters.

How Routers Select the best Path

  1. Router is ignoring received path if the route is not valid. Route is valid if:
    • NEXT_HOP of the route is valid and reachable
    • AS_PATH received from external peers does not contain the local AS
    • route is not rejected by routing filters

    For more information read nexthop selection and validation.

  2. The first path received is automatically considered 'best path'. Any further received paths are compared to first received to determine if the new path is better.
  3. Prefer the path with the highest WEIGHT.
    WEIGHT parameter is local to the router on which it is configured. A route without assigned WEIGHT have a default value of 0.
  4. Prefer the path with the highest LOCAL_PREF. It is used only within an AS.
    A path without LOCAL_PREF attribute have a value of 100 by default.
  5. Prefer the path with the shortest AS_PATH. (skipped if ignore-as-path-len set to yes)
    Each AS_SET counts as 1, regardless of the set size. The AS_CONFED_SEQUENCE and AS_CONFED_SET are not included in the AS_PATH length.
  6. Prefer the path that was locally originated via aggregate or BGP network
  7. Prefer the path with the lowest ORIGIN type.
    Interior Gateway Protocol (IGP) is lower than Exterior Gateway Protocol (EGP), and EGP is lower than INCOMPLETE
    in other words IGP < EGP < INCOMPLETE
  8. Prefer the path with the lowest multi-exit discriminator (MED).
    The router compare MED attribute only for paths that have the same neighboring (leftmost) AS. Paths without explicit MED value are treated as with MED of 0
  9. Prefer eBGP over iBGP paths
  10. Prefer the route that comes from the BGP router with the lowest router ID. If a route carries the ORIGINATOR_ID attribute, then the ORIGINATOR_ID is used instead of router ID.
  11. Prefer the route with the shortest route reflection cluster list. Routes without a cluster list are considered to have a cluster list of length 0.
  12. Prefer the path that comes from the lowest neighbor address