EIGRP Metrics and K-values
EIGRP uses a composite metric to determine the best path to a destination. This metric is calculated using several K-values (K1 to K5), which represent different parameters:
- Bandwidth (K1): The slowest bandwidth along the path.
- Delay (K3): The cumulative interface delay along the path.
- Reliability (K2): A measure of the link's reliability.
- Load (K4): The current load on the link.
- MTU (K5): Minimum Transmission Unit (not used in metric calculation by default, but carried in updates).
The default EIGRP metric formula is:
Metric = 256 * (Bandwidth + Delay)
Where:
- Bandwidth is (10^7 / minimum bandwidth in Kbps)
- Delay is (cumulative delay in microseconds / 10)
By default, K2, K4, and K5 are set to 0, meaning reliability, load, and MTU are not considered in the metric calculation. These values can be changed, but it's generally not recommended as it can lead to routing inconsistencies.