edited by
508 views
4 votes
4 votes

Consider three IP networks A,B and C. Host $H_A$ in network A sends messages each containing 200 bytes of application data to a host $H_C$ in network C. This passes through an intermediate network B . The maximum packet size, including 20 byte IP header, in each network is:

  • A: 1000 bytes
  • B: 100 bytes
  • C: 200 bytes

The network A and B are connected through a 512Kps link, while B and C are connected by a 1 Mbps link (bps = bits per second). What is the rate at which application data is transferred to host $H_C$ ? Ignore errors, acknowledgements, and other overheads.

edited by

1 Answer

1 votes
1 votes

Here MTU is 100 which is required to be consider.

Which means 20+80.

Now, 200B data from application layer is coming, at TCP 20B of header is Added.

At Network Layer Also ip header is added, so, it becomes [20+220]B.

Fragmentation has to be done in Network B, three fragments are

[20+80]   [20+80]  [20+60]

efficiency = 200B/220+20*3 =0.76

Data Rate = 0.76* 512 Kbps (consider bottleneck BW)

=393.84Kbps

Related questions

0 votes
0 votes
1 answer
4