Hi there,
My question is about delay in wide metrics. As far I undestand, the new delay is expressed in picoseconds, so 5000us will be 5000000000ps, right? However, why this doesn't accomplish in a loopback interface?
R1(config-if)#do sh int lo0 | i DLY
MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 5000 usec,
R1(config-if)#do sh ip eigrp top 150.1.1.1/32 | i delay
Total delay is 1250000 picoseconds -- Shouldn't be 5000000000picoseconds?
R1#sh ip int br | i Lo
Loopback0 150.1.1.1 YES NVRAM up up
If I manually change the delay by adding another 0, then, the rule applies as is expected:
R1(config-if)#delay 5000 -- (tens of ms)
R1(config-if)#do sh int lo0 | i DLY
MTU 1514 bytes, BW 8000000 Kbit/sec, DLY 50000 usec,
R1(config-if)#do sh ip eigrp top 150.1.1.1/32 | i delay
Total delay is 50000000000 picoseconds
What I'm missing??
Cheers!