<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: TCP Flag - Push in Network Security</title>
    <link>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437052#M856581</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yea.. The documet clearly says that for http and other traffic thru prosies will be set wil push to get necessary priorities, but am not clear &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jun 2010 15:08:13 GMT</pubDate>
    <dc:creator>manuadoor</dc:creator>
    <dc:date>2010-06-17T15:08:13Z</dc:date>
    <item>
      <title>TCP Flag - Push</title>
      <link>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437046#M856575</link>
      <description>&lt;P&gt;Small doubt Reg. TCP Flag, "PUSH". I was thought that this flag is set only to the last packet of a segmant, to tell the receving end to "PUSH" the data&amp;nbsp; to the application, so that the cached data will be moved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But recently I read that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;" This particular flag is used quite frequently at the beginning and end of a&amp;nbsp; data transfer, affecting the way the data is handled at both ends."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why it is required in the begining.. what is the use,,, ??&lt;/P&gt;</description>
      <pubDate>Mon, 11 Mar 2019 18:00:36 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437046#M856575</guid>
      <dc:creator>manuadoor</dc:creator>
      <dc:date>2019-03-11T18:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: TCP Flag - Push</title>
      <link>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437047#M856576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RFC 793 (TCP) defines the use of the Push flag.&amp;nbsp; See section 2.8:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;2.8.&amp;nbsp; Data Communication&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; The data that flows on a connection may be thought of as a stream of&lt;BR /&gt;&amp;nbsp; octets.&amp;nbsp; The sending user indicates in each SEND call whether the data&lt;BR /&gt;&amp;nbsp; in that call (and any preceeding calls) should be immediately pushed&lt;BR /&gt;&amp;nbsp; through to the receiving user by the setting of the PUSH flag.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; A sending TCP is allowed to collect data from the sending user and to&lt;BR /&gt;&amp;nbsp; send that data in segments at its own convenience, until the push&lt;BR /&gt;&amp;nbsp; function is signaled, then it must send all unsent data.&amp;nbsp; When a&lt;BR /&gt;&amp;nbsp; receiving TCP sees the PUSH flag, it must not wait for more data from&lt;BR /&gt;&amp;nbsp; the sending TCP before passing the data to the receiving process.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; There is no necessary relationship between push functions and segment&lt;BR /&gt;&amp;nbsp; boundaries.&amp;nbsp; The data in any particular segment may be the result of a&lt;BR /&gt;&amp;nbsp; single SEND call, in whole or part, or of multiple SEND calls.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; The purpose of push function and the PUSH flag is to push data through&lt;BR /&gt;&amp;nbsp; from the sending user to the receiving user.&amp;nbsp; It does not provide a&lt;BR /&gt;&amp;nbsp; record service.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; There is a coupling between the push function and the use of buffers&lt;BR /&gt;&amp;nbsp; of data that cross the TCP/user interface.&amp;nbsp; Each time a PUSH flag is&lt;BR /&gt;&amp;nbsp; associated with data placed into the receiving user's buffer, the&lt;BR /&gt;&amp;nbsp; buffer is returned to the user for processing even if the buffer is&lt;BR /&gt;&amp;nbsp; not filled.&amp;nbsp; If data arrives that fills the user's buffer before a&lt;BR /&gt;&amp;nbsp; PUSH is seen, the data is passed to the user in buffer size units.&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp; TCP also provides a means to communicate to the receiver of data that&lt;BR /&gt;&amp;nbsp; at some point further along in the data stream than the receiver is&lt;BR /&gt;&amp;nbsp; currently reading there is urgent data.&amp;nbsp; TCP does not attempt to&lt;BR /&gt;&amp;nbsp; define what the user specifically does upon being notified of pending&lt;BR /&gt;&amp;nbsp; urgent data, but the general notion is that the receiving process will&lt;BR /&gt;&amp;nbsp; take action to process the urgent data quickly.&lt;BR /&gt;&lt;/PRE&gt;&lt;DIV style="border: medium none; overflow: hidden; color: #000000; background-color: transparent; text-align: left; text-decoration: none;"&gt;&lt;BR /&gt;Read more: &lt;A href="http://www.faqs.org/rfcs/rfc793.html#ixzz0r7SWAjHm" style="color: #003399;"&gt;http://www.faqs.org/rfcs/rfc793.html#ixzz0r7SWAjHm&lt;/A&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In practice, many TCP senders use the Push flag to indicate the segment of data they have sent needs to be delivered to the receiver before awaiting additional data.&amp;nbsp; A common example of an application using the Push flag frequently is telnet.&amp;nbsp; When you use telent, what you type is generally sent character-by-character.&amp;nbsp; Each character should be delivered to the receiver without being queued up.&amp;nbsp; Therefore, for every character you type, if you look at the packet dump, you will notice the Push flag will be set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps answer your question.&amp;nbsp; If so, let us know by marking the question as answered.&amp;nbsp; And, if not, please ask clarifying questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;David.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2010 14:10:29 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437047#M856576</guid>
      <dc:creator>David White</dc:creator>
      <dc:date>2010-06-17T14:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: TCP Flag - Push</title>
      <link>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437048#M856577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yea.. I got it, another example would be realplayer streaming, but my doubt is that for normal traffic whether it will be set when the datatrasfer starts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ofcoz it must be send when finished to educate the receiver, "Finished, now you push to application from cache".&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I do understand that for telnet all the packet will be marked with push, so that it will immediately reflect in receivers application layer. One thing is that their will be send cache and receive cache,Anything related to send cache while push is set??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2010 14:17:51 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437048#M856577</guid>
      <dc:creator>manuadoor</dc:creator>
      <dc:date>2010-06-17T14:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: TCP Flag - Push</title>
      <link>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437049#M856578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure I am following your follow-up question.&amp;nbsp; There is nothing to prevent the sender from setting the Push flag in the beginning of a transmission. It is entirely up to the sender when it wants to set it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is your definition of "normal traffic"?&amp;nbsp; And what is the root problem we are trying to solve?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2010 14:23:44 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437049#M856578</guid>
      <dc:creator>David White</dc:creator>
      <dc:date>2010-06-17T14:23:44Z</dc:date>
    </item>
    <item>
      <title>Re: TCP Flag - Push</title>
      <link>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437050#M856579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By "Normal Traffic"&amp;nbsp; I meant the traffic which need not to set push flag (type of traffic where in cache wont be a problem, eg: ftp)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All I did is recently I tried to update my KB and read &lt;A href="http://www.firewall.cx/tcp-analysis-section-4.php"&gt;http://www.firewall.cx/tcp-analysis-section-4.php&lt;/A&gt; &lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.cisco.com/images/emoticons/wink.gif"&gt;&lt;/SPAN&gt; It says "This particular flag is used quite frequently at the beginning and end of a data&amp;nbsp; transfer, affecting the way the data is handled at both ends."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I wonder why it is to be set in the begining of a traffic?? ofcoz in telnet /real player all the packet will be set by "push". And for ftp and all push to be sent at the end of each segmant so that it will get transfered from the cache of receiving end to the ftp application!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2010 14:38:54 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437050#M856579</guid>
      <dc:creator>manuadoor</dc:creator>
      <dc:date>2010-06-17T14:38:54Z</dc:date>
    </item>
    <item>
      <title>Re: TCP Flag - Push</title>
      <link>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437051#M856580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think we can speak for the author of another article.&amp;nbsp; What I can say is that for TCP, once a connection is established, the&lt;/P&gt;&lt;P&gt; initiator requests something (for HTTP it would typically be a GET for a web page)&amp;nbsp; When that request is sent, the Push flag is usually set - and that is at the start/beginning of the TCP session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sincerely,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;David.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2010 14:53:27 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437051#M856580</guid>
      <dc:creator>David White</dc:creator>
      <dc:date>2010-06-17T14:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: TCP Flag - Push</title>
      <link>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437052#M856581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yea.. The documet clearly says that for http and other traffic thru prosies will be set wil push to get necessary priorities, but am not clear &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jun 2010 15:08:13 GMT</pubDate>
      <guid>https://community.cisco.com/t5/network-security/tcp-flag-push/m-p/1437052#M856581</guid>
      <dc:creator>manuadoor</dc:creator>
      <dc:date>2010-06-17T15:08:13Z</dc:date>
    </item>
  </channel>
</rss>

