现在的位置: 首页 > 综合 > 正文

TCP中的Flag options

2012年11月30日 ⁄ 综合 ⁄ 共 1076字 ⁄ 字号 评论关闭

使用Network monitor来分析网络通讯包的时候, 经常会使用到TCP Flag这样的知识点.

 

5-18-2010 7-09-33 AM

 

那么这些Flag分别都代表什么意义呢?

=============

Urgent flag is used to identify incoming data as 'urgent'. Such incoming segments do not have to wait until the previous segments are consumed by the receiving end but are sent directly and processed immediately.

 

ACKnowledgement flag is used to acknowledge the successful receipt of packets.

 

Reset flag is used when a segment arrives that is not intended for the current connection. In other words, if you were to send a packet to a host in order to establish a connection, and there was no such service waiting to answer at the remote host, then the host would automatically reject your request and then send you a reply with the RST flag set. This indicates that the remote host has reset the connection.

 

SYN flag is initialy sent when establishing the classical 3-way handshake between two hosts.

 

FIN flag, standing for the word FINished. This flag is used to tear down the virtual connections created using the previous flag (SYN), so because of this reason, the FIN flag always appears when the last packets are exchanged between a connection.

 

TCP三次握手, 建立连接示意图

5-18-2010 7-17-11 AM

 

TCP中断连接, 过程示意图

5-18-2010 7-18-17 AM

 

资料来源:

TCP Analysis - Section 4:TCP Flag Options

http://www.firewall.cx/tcp-analysis-section-4.php

抱歉!评论已关闭.