y4mch1 / TCP-UDP

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TCP

  1. What is the IP address and TCP port number used by the client computer (source) that is transferring the file to gaia.cs.umass.edu?

Open up your terminal and type this command ping gaia.csumass.edu

IP address from the client computer is 192.168.86.68 and the port is 55639

  1. What is the IP address of gaia.cs.umass.edu? On what port number is it sending and receiving TCP segments for this connection?

IP Destination = 128.119.245.12 and Destination Port = 80

  1. What is the sequence number of the TCP SYN segment that is used to initiate the TCP connection between the client computer and gaia.cs.umass.edu? What is it in this TCP segment that identifies the segment as a SYN segment?Will the TCP receiver in this session be able to use Selective Acknowledgments?

Number of the TCP SYN segment adalah seq = 0 atau seq (raw) = 4236649187. Flags 0x002(SYN) that identifies the segment as a SYN segment. Yes, it will, because SACK allowed in SYN Segment.

  1. What is the sequence number of the SYNACK segment sent by gaia.cs.umass.edu to the client computer in reply to the SYN? What is it in the segment that identifies the segment as a SYNACK segment? What is the value of theAcknowledgementfield in the SYNACK segment? How did gaia.cs.umass.edu determine that value?

Sequence Number is 0 and Sequence Number (raw) is 1068969752. 0x012 (SYN, ACK) identifies the segment as a SYNACK segment. Acknowledgment number is 4236649188. From sequence number segmen SYN before, that is 4236649187, plus by one (ACK=Seq no+1).

  1. What is the sequence number of the TCP segment containing the header of the HTTP POST command? How many bytes of data are contained in the payload (data) field of this TCP segment? Did all of the data in the transferred file alice.txt fit into this single segment?

Sequence Number: 152041 and Sequence Number (raw): 4236801228, it has TCP payload (1385 bytes) and alice.txt 149kb, no it wont, because the packet was sent by MIME multipart.

  1. Consider the TCP segment containing the HTTP “POST”as the first segment in the data transfer part of the TCP connection.

At what time was the firstsegment(the onecontaining the HTTP POST) in the data-transfer part of the TCP connection sent?

First pakcet was on 4th frame which means 0.24047 seconds.

At what timewas the ACK for this firstdata-containing segment received?

0.052671 seconds

What is the RTT for this first data-containing segment?

0.028624 seconds

What is the RTT value the seconddata-carrying TCP segment and its ACK? 0.028628 seconds

  1. What is the length (headerplus payload) ofeach ofthe first fourdata-carrying TCP segments?

frame: 4 : length = 32 + 1448 = 1480 bytes

frame: 5 : length = 32 + 1448 = 1480 bytes

frame: 6 : length = 32 + 1448 = 1480 bytes

frame: 7 : length = 32 + 1448 = 1480 bytes

  1. What is the minimum amount of available buffer space advertised to the client by gaia.cs.umass.eduamong these first fourdata-carrying TCP segments7? Does the lack of receiver buffer space ever throttle the senderfor these first four data-carrying segments?

Minimum amount of available buffer space adalah 131712. It is found that the receiver buffer space never throttles the sender because the window size value is always greater than the length of the segment being sent.

  1. Are there any retransmitted segments in the trace file? What did you check for (in the trace) in order to answer this question?

Yes, there are, Retransmitted segments can be detected via sequence number. When resending, there are packets where the sequence number of the next packet is not greater than the sequence number of the previous packet.

  1. How much data does the receiver typically acknowledgein an ACK among the first ten data-carrying segments sent from the client to gaia.cs.umass.edu? Can you identify cases where the receiver is ACKing every other received segment (see Table 3.2 in the text) among these first ten data-carrying segments?

the receiver typically acknowledge in an ACK among the first ten data-carrying segments sent from the client to gaia.cs.umass.edu is 1448 bytes in an ack. if the data is doubled then that segment is acking every other received segment. for example in second segment, the data is doubled from 1448 to 2896 bytes. so the receiver is acking every other received segment.

UDP

  1. Select one UDP packet from your trace. From this packet, determine how many fields there are in the UDP header. (You shouldn’t look in the textbook! Answer these questions directly from what you observe in the packet trace.) Name these fields.

Packet number : 5, SSDP (Simple Service Discovery Protocol), 4 field, source port, destination port, length, dan checksum.

  1. What is the length (in bytes) of each of the UDP header fields?

Source Port : 2 bytes, Destination Port : 2 bytes,Length : 2 bytes,Checksum : 2 bytes. Total 8 bytes.

  1. The value in the Length field is the length of what? (You can consult the text for this answer). Verify your claim with your captured UDP packet.

The length field in a UDP packet is the size of the combined UDP header and UDP payload. From the packet above, it is found that the length of the UDP header is 8 bytes and the total length is 43 bytes so the length of the UDP payload is 43 - 8 = 35 bytes

  1. What is the maximum number of bytes that can be included in a UDP payload? (Hint: the answer to this question can be determined by your answer to 2. above)

The maximum bytes that can be included in the UDP payload is (2^16-1) bytes including header bytes. So, the maximum bytes that can be included in the UDP payload is (2^16-1)-8 = 65527 bytes

  1. What is the largest possible source port number?

65535, because the port is represented with 16 bits so the possible numbers are between 0 to 65535 (2^16 - 1)

  1. What is the protocol number for UDP? 17

  2. a. What is the packet number of the first of these two UDP segments in the trace file? b. What is the packet number of the second of these two UDP segments in the trace file? c. Describe the relationship between the port numbers in the two packets

a. 15

b. 17

c. The source port for packet 15 is the destination port for packet 17 and it can be applied in the opposite.

About