Manual:BGP Best Path Selection Algorithm

From MikroTik Wiki
Revision as of 10:33, 8 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

  • 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.
  • Prefer the path with the highest LOCAL_PREF.
A path without LOCAL_PREF attribute have a value of 100 by default.
  • Prefer the path with the shortest AS_PATH. (skipped if ignore-as-path-len set to yes)
The router does not compare AS_PATH attribute length if ignore-as-path-len parameter is set to yes for the respective BGP instance. 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.
  • Prefer the path that was locally originated via aggregate or network BGP subcommand
  • 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
  • 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
  • Prefer eBGP over iBGP paths
  • 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.
  • 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.
  • Prefer the path that comes from the lowest neighbor address]