Wireshark Lab: TCP v7.0

0. 实验文件地址

http://www-net.cs.umass.edu/wireshark-labs/Wireshark_TCP_v7.0.pdf
Wireshark Lab: TCP v7.0_第1张图片

序号(seq):用来标识从TCP发送端向TCP接收端发送的数据字节流。 它表示在这个报文段中的第一个数据字节。

举个例子:以下是一个文件被分成几个报文段
Wireshark Lab: TCP v7.0_第2张图片
第一个报文段的序号为 0 , 第二个报文段的序号为 1000

确认序号(seq + 1):包含发送确认的一端所期望收到的下一个序号。因此,确认序号应该是 上次已成功收到的数据字节序号加1。还是看上图例子,假如接收端已经收到了第一个报文段(序号为0~999),那么它期望下一次接收的序号应该为1000,则该接收端的确认序号为1000。

下面是标志位对应的功能:

  1. URG:紧急指针有效。
  2. ACK:确认序号有效。
  3. PSH:接收方应尽快将这个报文段交给应用层。
  4. RST:重新连接。
  5. SYN:同步序号用来发起一个连接。
  6. FIN:发送端完成任务。

套接字 : 一个IP地址和一个端口号组合。

Wireshark Lab: TCP v7.0_第3张图片
SYN = 1表示正在建立连接,SYN = 0表示连接已建立。
client_isnserver_isn都是随机生成的,目的就是为了防止被恶意攻击。

1. Capturing a bulk TCP transfer from your computer to a remote server

Wireshark Lab: TCP v7.0_第4张图片
Wireshark Lab: TCP v7.0_第5张图片
Wireshark Lab: TCP v7.0_第6张图片

Packets Display

Wireshark Lab: TCP v7.0_第7张图片

2. A first look at the captured trace

Question & Answer

Wireshark Lab: TCP v7.0_第8张图片
Wireshark Lab: TCP v7.0_第9张图片

  1. The IP address of the client computer is 192.168.1.102. The TCP port number is 1161.
  2. The IP address is 128.119.245.152. The TCP port number is 80.
    Wireshark Lab: TCP v7.0_第10张图片
  3. Sorry, I don’t create my own trace.

3. TCP Basics

Question & Answer

Wireshark Lab: TCP v7.0_第11张图片
Wireshark Lab: TCP v7.0_第12张图片

Wireshark Lab: TCP v7.0_第13张图片

  1. The sequence number of the TCP SYN segment is 0. Flags in the segment that identifies the segment as a SYN segment.

Wireshark Lab: TCP v7.0_第14张图片
5. The sequence number of the SYNACK segment is 0. The value of the Acknowledgement field in the SYNACK segment is 1. Flags identifies the segment as a SYNACK segment.Wireshark Lab: TCP v7.0_第15张图片

  1. The sequence number of the TCP segment containing the HTTP POST command is 1. Wireshark Lab: TCP v7.0_第16张图片
    Wireshark Lab: TCP v7.0_第17张图片

Wireshark Lab: TCP v7.0_第18张图片

Wireshark Lab: TCP v7.0_第19张图片
Wireshark Lab: TCP v7.0_第20张图片
Wireshark Lab: TCP v7.0_第21张图片
7. The sequence numbers of the first six segments in the TCP connection are 1, 566, 2026, 3486, 4946, 6406.
8. The length of the first segment is 565, others are 1460.Wireshark Lab: TCP v7.0_第22张图片

  1. 5840.No throttle is made due to the lack of buffer space.Wireshark Lab: TCP v7.0_第23张图片

  2. There is no retransmmited segment in the trace file.Wireshark Lab: TCP v7.0_第24张图片

  3. 164090 bytes.

  4. 164090 / 5.297341 = 30975.92

4. TCP congestion control in action

Question & Answer

Wireshark Lab: TCP v7.0_第25张图片
13. To be continue
14. To be continue

你可能感兴趣的:(#,Wireshark实验,计算机网络)