Hi. I'm trying to solve an exercise, I have the solution, but I have some doubts about it. I have to calculate the latency*bandwidth of a network. This network is made up of the source and of the destination, which are linked with a
10Mbps network (10 micro-seconds propagation time) with a store-and-forward switch. The request is to calculate the latency between the first sent bit and the first arrived bit. I solved this way:
latency=2*10micro-seconds+5000bit/10Mbps+1bit/10Mbps
where 5000bits is the packet size. I added 1bit/10Mbps because I need the time to transfer the last bit from the switch to the destination. The solution I have in the book instead, adds another 5000bit/10Mbps so:
latency=2*10micro-seconds+2*5000bit/10Mbps
Why do they add two 5000bit/10Mbps? Is someone able to help me? Thanks for any help :-).
Luca