I have a connection with four nodes, A, B, C, D.
I want to send a large file from A to D and want to calculate the delay bandwidth product.
The bandwidth and delay, respectively, of each link is as follows:
A-B : 2gb/s, 10ms B-C : 2mb/s, 10ms C-D : 2gb/s, 10ms
My question is, to calculate the DBP, do I use the slowest link or add up all the links' bandwidths? That is, is my bandwidth product (4gb + 2mb)/s * 60ms or simply 2mb/s * 20ms? (Using the DBP formula of bytes/s * RTT).
My reasoning is that B-C will almost always be full, and the transfer of packets through link A-B and C-D are almost instantaneous, so I should just use the numbers of the B-C link. Is this correct?