0

I need to estimate the distance of a link having only delay values. How can I do that? I need to estimate this distance for ethernet and optical fiber links. I thought of doing it using the propagation speed over ethernet and fiber, but I don't know if it's correct and also I can't find those values anywhere.

For instance, one of my values is 0.7 ms. How much that corresponds (in length) in case of shared ethernet connection, and in case of optical fiber?

Any thoughts?

Thanks

winny
  • 13,064
  • 6
  • 46
  • 63
Matt193
  • 3
  • 1

2 Answers2

1

The speed of light in vacuum is about 0.3 m/ns, so in your 700 us delay, that's a distance of 700k * 0.3 = 210 km.

The speed of light in plastic insulated ethernet is 60-70% of that, and is similar for typical optical fibre, so 140 km.

Does your 0.7 ms include formatting and processing delays in the ethernet interfaces? That needs to be deducted from the calculated distance as well.

Neil_UK
  • 158,152
  • 3
  • 173
  • 387
0

Yes, you have to use the propagation speed of the cable. Wikipedia lists the value for CAT5 cable: 5.3ns/m. In general, you have to know the exact type of cable used (i.e. CAT5, CAT6, CAT6A). Then you'll be able to find the propagation speed, which is generally some large fraction of the speed of light, but it can be significantly lower (values of 60% speed of light are quite typical for coax cables, for example). Wikipedia has an article about this.

The propagation speed for optical cables seems to generally be on the order of 5µs/km, according to m2optics.

If your 0.7ms value came from a CAT5 ethernet cable, that cable would be 132km long (which then of course means that it can't be CAT5 but must rather be the optical cable). Using the value for the optical cable, we'd get 140km instead.

However, you have to keep in mind that this is for the cable alone. It doesn't include the latency generated by the transmitter, receiver, and (if present) other network hops on the route. You also have to distinguish between round-trip-time and one-way latency.

Jonathan S.
  • 14,865
  • 28
  • 50