I'm trying to get my head around the metric calculation for EIGRP.
So the way i see it is as follows:
Default equation is:
M = [K1 * bandwidth + (K2 * bandwidth) / (256 - load) + K3 * delay] * [K5 / (reliability + K4)]
ok now if we are using the default K values which are k1, k3 = 1 and k2, k4, k5 = 0 then the equation would look like this
M = [1 * bandwidth + (0 * bandwidth) / (256 - load) + 1 * delay] * [0 / (reliability + 0)]
which can be simplified down to this:
M = bandwidth / (256 - load) + delay
Is that correct so far?
I have been reading from this site
http://www.cisco.com/warp/public/103/eigrp-toc.html#theoryofoperation
and it says that the equation can be simplified down to:
metric = bandwidth + delay
Now with my example above, the simplified equation was:
M = bandwidth / (256 - load) + delay
so im assuming that on the cisco site the equation is metric = bandwidth + delay because by default EIGRP only uses bandwidth and delay to compute the metric, so this is why the (256 - load) is not in the equation.... is this correct?
thanks