Hi all,
Can someone to explain the EIGRP metric why using BW with floating point to multiply 256?
As I knew we should rounded the floating point to integer.
BW = (10000000/30000) * 256 = 333.33333333333333333333333333333 *256
#rounded the BW to 333, so 333 * 256 = 85248
Delay = (1130/10) * 256 = 28928
Metric = BW + Delay = 114176
114176 does not match to below metric.
Then I calculate again with floating point value during calculate BW, but rounded the final result to integer is match, what;s wrong?
BW = (10000000/30000) * 256 = 333.33333333333333333333333333333 *256
BW = 85333.333333333333333333333333333
Delay = (1130/10) * 256 = 28928
Metric = BW + Delay = 114261.33333333333333333333333333
