I just need a walk through for d and e for problem 8 please. Thanks!
8. Referring to problem P7, suppose the HTML file refernces
eight very small objects on the same server. Neglecting
transmission times, how much time elapses with
a. Non-persistent HTTP with no parallel TCP connections?
b. Non-persistent HTTP with the browser configured for 5 parallel
connects?
c. Persistent HTTP?
In 8C, please consider both persistent HTTP with and without
pipelining; D. redo a. and c. assuming an object transmission delay
of Do and a direct link between server and client; E. redo a. and
c. assuming an object transmission delay of Do and m links between
server and client, whereby each link has a round-trip delay of RTT0
and employs store + forward transmission for each object
Question P7 for reference only:
Suppose within your Web browser you click on a link to obtain a Web
page. The IP address for the associated URL is not cached in your
local host, so a DNS lookup is necessary to obtain the IP address.
Supposed the n DNS servers are visited before you host receives the
IP address from DNS; the successive visits incur an RTT of RTT1,
..., RTTn. Further suppose that the Web page associated with the
link contains exactly one object, consisting of a small amount of
HTML text. Let RTT0 denote the RTT between the local host and the
server containing the object. Assuming zero transmission time of
the object, how much time elapses from when the client clicks on
the link until the client receives the object?
8 a. First query the DNS setup, once you have to setup the connection and then request 8 files:
RTT1 + RTT2 + RTT3 + ... + RTTn + 8 * 2 RTT0 = 18 RTT0 + RTT1 + ... + RTTn
8 b. First query the DNS setup, once you have to setup the connection. Then request 5 concurrently and then request rest 3 files:
RTT1 + RTT2 + RTT3 + ... + RTTn + 2 RTT0 + 2* 2 RTT0 = 6 RTT0 + RTT1 + ... + RTTn
8 c. First query the DNS setup, once you have to setup the connection and here receive all the 8 files without any extra request:
RTT1 + RTT2 + RTT3 + ... + RTTn + 2 RTT0 + RTT0 = 3 RTT0 + RTT1 + ... + RTTn
I just need a walk through for d and e for problem 8 please. Thanks! 8....
Please Help! thanks in advance 1. Suppose within your Web browser you click on a link to obtain a Web page. The IP address for the associated URL is not cached in your local host, so a DNS lookup is necessary to obtain the IP address. Suppose that n DNS servers are visited before your host receives the IP address from DNS; the successive visits incur a RTT (round-trip time) of RTT1, … , and RTTn. Further suppose that the...
Problem # 1 (30 points): Suppose within your Web browser you click on a link to obtain a web page Suppose that the IP address for the associated URL is not cached in your local host, so that a DNS look- up is necessary to obtain the IP address. Suppose that two (2) DNS servers are visited before your host receives the IP address from DNS; the successive visits incur an RTT of RTT1 and RTT2. Further suppose that the...
Suppose within your web browser you click on a link to obtain a web page. The IP address for the associated URL is not cached in your local host, so a DNS look up is necessary to obtain the given IP address. Further suppose that 3 DNS servers are visited before your host receives the IP address form DNS. The round trip time between the client and the ithDNS server is Ti(1≤i≤3), and that between the jthDNS server and the...
Suppose within your Web browser you click on a link to obtain a Web page. The IP address for the associated URL is not cached in your local host, so a DNS lookup is necessary to obtain the IP address. Suppose that n DNS servers are visited before your host receives the IP address from DNS; the successive visits incur an RTT of RT T1, ..., RT Tn. Further suppose that the Web page associated with the link contains exactly...
Consider a webpage consisting of a base HTML file and 2 embeded GIF objects on the same web server. The IP address for the server is initially not known to the client. Suppose that one DNS server in each class of DNS hierarchy should be visited before the client receives the IP address. Suppose the time needed to contact any (web or DNS) server and receive a response is RTT . How much time elapses from when the client clicks...
Suppose within your Web browser you click on a link to obtain a Web page. The content of the web page is not cached in the local caching server, and the IP address for the associated URL is not cached in your local host either, so that a DNS look-up is necessary to obtain the IP address. Suppose that n DNS servers need to be visited before your host receives the IP address from DNS, and each of successive visits...
Suppose within your Web browser you click on a link to obtain a Web page. The content of the web page is not cached in the local caching server, and the IP address for the associated URL is not cached in your local host either, so that a DNS look-up is necessary to obtain the IP address. Suppose that n DNS servers need to be visited before your host receives the IP address from DNS, and each of successive visits...
ANSWER NETWORKS QUESTIONS (MCQS AND CALCULATIONS) QUESTIONS ( 11 - 20) QUESTION 11 1. Consider the following excerpt from a simple server side UDP program: Server.py from socket import * sName=’127.0.0.1’ sSocket=socket(AF_INET,SOCK_DGRAM) sSocket.bind((sName, 12005)) while True: msg, cAddr =sSocket.recvfrom(2048) newMsg = msg.decode().lower() sSocket.sendto(*********************) What code could be used to replace the **********’s in line 8? newMsg.encode(), cAddr newMsg.encode() msg.encode(), cAddr msg.encode() none of the above 1 points QUESTION 12 For a client to obtain an IP address from the local...
on calculations can i see how did the expect come to the solution ,all the workout should be included QUESTION 1 A file of size F = 8 Gbits needs to be distributed to10 peers. Suppose the server has an upload rate of u = 68 Mbps, and that the 10 peers have upload rates of: u1 = 20 Mbps, u2 = 22 Mbps, u3 = 12 Mbps, u4 = 19 Mbps, u5 = 25 Mbps, u6 = 24 Mbps,...
1. Peristent vesus non-persistent TCP Connections/web page retrieval: This problem is a continuation of the problem in homework 4. Assume the Web server’s IP address is stored in your local DNS server’s cache and RTT0 = 5msec. The RTT for communication between the client and the Web server (RTTHTTP) is 100 msec. Transmission time = 0 for every packet. a. Calculate the total time to load the web page and 2 objects using the TCP Connections indicated assuming a persistent...