<?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: ftp FIN_WAIT_2 and CLOSE_WAIT in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162635#M528249</link>
    <description>&lt;BR /&gt;MORE INFORMATION&lt;BR /&gt;TCP Connection States&lt;BR /&gt;Following is a brief explanation of this handshake. In this context the "client" is the peer requesting a connection and the "server" is the peer accepting a connection. Note that this notation does not reflect Client/Server relationships as an architectural principal. &lt;BR /&gt;&lt;BR /&gt;1. Connection Establishment&lt;BR /&gt;&lt;BR /&gt;â ¢ The client sends a SYN message which contains the server's port and the client's Initial Sequence Number (ISN) to the server (active open). &lt;BR /&gt;â ¢ The server sends back its own SYN and ACK (which consists of the client's ISN + 1). &lt;BR /&gt;â ¢ The Client sends an ACK (which consists of the server's ISN + 1). &lt;BR /&gt; &lt;BR /&gt;2. Connection Tear-down (modified three way handshake).&lt;BR /&gt;&lt;BR /&gt;â ¢ The client sends a FIN (active close). This is a now a half-closed connection. The client no longer sends data, but is still able to receive data from the server. Upon receiving this FIN, the server enters a passive close state. &lt;BR /&gt;â ¢ The server sends an ACK (which is the clients FIN sequence + 1) &lt;BR /&gt;â ¢ The server sends its own FIN. &lt;BR /&gt;â ¢ The client sends an ACK (which is server's FIN sequence + 1). Upon receiving this ACK, the server closes the connection. &lt;BR /&gt; &lt;BR /&gt;A half-closed connection can be used to terminate sending data while sill receiving data. Socket applications can call shutdown with the second argument set to 1 to enter this state. &lt;BR /&gt;Back to the top&lt;BR /&gt;&lt;BR /&gt;Netstat Output&lt;BR /&gt;The above TCP connection states can be monitored in a network trace under the TCP flags. It is also possible to determine the status of the connection by running the Netstat utility and looking at the State column. Netstat is shipped with Windows NT, Windows 95, and TCP/IP-32 for Windows for Workgroups. &lt;BR /&gt;&lt;BR /&gt;State explanations as shown in Netstat: &lt;BR /&gt;State Explanation&lt;BR /&gt;------------ --------------------------------------------------------&lt;BR /&gt;&lt;BR /&gt;SYN_SEND Indicates active open.&lt;BR /&gt;&lt;BR /&gt;SYN_RECEIVED Server just received SYN from the client.&lt;BR /&gt;&lt;BR /&gt;ESTABLISHED Client received server's SYN and session is established.&lt;BR /&gt;&lt;BR /&gt;LISTEN Server is ready to accept connection.&lt;BR /&gt;&lt;BR /&gt;NOTE: See documentation for listen() socket call. TCP sockets in listening state are not shown - this is a limitation of NETSTAT. For additional information, please see the following article in the Microsoft Knowledge Base: &lt;BR /&gt;134404 (&lt;A href="http://support.microsoft.com/kb/134404/EN-US/)" target="_blank"&gt;http://support.microsoft.com/kb/134404/EN-US/)&lt;/A&gt; NETSTAT.EXE Does Not Show TCP Listen Sockets &lt;BR /&gt;FIN_WAIT_1 Indicates active close.&lt;BR /&gt;&lt;BR /&gt;TIMED_WAIT Client enters this state after active close.&lt;BR /&gt;&lt;BR /&gt;CLOSE_WAIT Indicates passive close. Server just received first FIN from a client.&lt;BR /&gt;&lt;BR /&gt;FIN_WAIT_2 Client just received acknowledgment of its first FIN from the server.&lt;BR /&gt;&lt;BR /&gt;LAST_ACK Server is in this state when it sends its own FIN.&lt;BR /&gt;&lt;BR /&gt;CLOSED Server received ACK from client and connection is closed. &lt;BR /&gt;As an example, consider the following scenario: &lt;BR /&gt;&lt;BR /&gt;A socket application has been terminated, but Netstat reports the socket in a CLOSE_WAIT state. This could indicate that the client properly closed the connection (FIN has been sent), but the server still has its socket open. This could be the result of one instance (among all threads or processes) of the socket not being closed. &lt;BR /&gt;&lt;BR /&gt;NOTE: It is normal to have a socket in the TIME_WAIT state for a long period of time. The time is specified in RFC793 as twice the Maximum Segment Lifetime (MSL). MSL is specified to be 2 minutes. So, a socket could be in a TIME_WAIT state for as long as 4 minutes. Some systems implement different values (less than 2 minutes) for the MSL. &lt;BR /&gt;</description>
    <pubDate>Tue, 18 Mar 2008 00:55:28 GMT</pubDate>
    <dc:creator>skt_skt</dc:creator>
    <dc:date>2008-03-18T00:55:28Z</dc:date>
    <item>
      <title>ftp FIN_WAIT_2 and CLOSE_WAIT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162632#M528246</link>
      <description>Hi everyone!&lt;BR /&gt;&lt;BR /&gt;I have 2 servers in my office with services running on:&lt;BR /&gt;Server1 (rp3440): HP-UX 11.11 (FTP server / 10.8.7.22)&lt;BR /&gt;Server2 (rx2620): HP-UX 11.23 (FTP client / 10.8.7.32)&lt;BR /&gt;&lt;BR /&gt;There are many many transfering file jobs  running on these servers everyday. And last saturday, a guy in application team tell me that he find a problem on these servers:&lt;BR /&gt;And this is the results when I check:&lt;BR /&gt;On Server1 (FTP server):&lt;BR /&gt;# netstat -a | grep ftp&lt;BR /&gt;tcp        0      0  Server1.ftp           10.8.7.32.62505         FIN_WAIT_2&lt;BR /&gt;tcp        0      0  Server1.ftp           10.8.7.32.62198         FIN_WAIT_2&lt;BR /&gt;tcp        0      0  Server1.ftp           10.8.7.32.53139         FIN_WAIT_2&lt;BR /&gt;tcp        0      0  Server1.ftp           10.8.7.32.62768         FIN_WAIT_2&lt;BR /&gt;tcp        0      0  Server1.ftp           10.8.7.32.54354         FIN_WAIT_2&lt;BR /&gt;tcp        0      0  Server1.ftp           10.8.7.32.62591         FIN_WAIT_2&lt;BR /&gt;tcp        0      0  Server1.ftp           10.8.7.32.53241         FIN_WAIT_2&lt;BR /&gt;And on Server2 (FTP Client):&lt;BR /&gt;# netstat -a | grep ftp&lt;BR /&gt;tcp        0      0  Server2.53241            10.8.7.22.ftp           CLOSE_WAIT&lt;BR /&gt;tcp        0      0  Server2.53139            10.8.7.22.ftp           CLOSE_WAIT&lt;BR /&gt;tcp        0      0  Server2.62768            10.8.7.22.ftp           CLOSE_WAIT&lt;BR /&gt;tcp        0      0  Server2.62505            10.8.7.22.ftp           CLOSE_WAIT&lt;BR /&gt;tcp        0      0  Server2.62198            10.8.7.22.ftp           CLOSE_WAIT&lt;BR /&gt;tcp        0      0  Server2.62591            10.8.7.22.ftp           CLOSE_WAIT&lt;BR /&gt;tcp        0      0  Server2.54354            10.8.7.22.ftp           CLOSE_WAIT&lt;BR /&gt;&lt;BR /&gt;Anyone has experienced with this problem? I don't known why? Please help me to fix it?&lt;BR /&gt;&lt;BR /&gt;Thanks!</description>
      <pubDate>Mon, 17 Mar 2008 08:26:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162632#M528246</guid>
      <dc:creator>pacific_1</dc:creator>
      <dc:date>2008-03-17T08:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: ftp FIN_WAIT_2 and CLOSE_WAIT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162633#M528247</link>
      <description>It justs means that your ftp client are not closing the socket, may be they are doing something else.&lt;BR /&gt;&lt;BR /&gt;ftp uses 2 ports ftp and ftp-data, here it is ftp, so it is the command port which stays opened.&lt;BR /&gt;&lt;BR /&gt;ftpd had proably timedout, and ftp is on something else.&lt;BR /&gt;&lt;BR /&gt;if ftp is not working properly  hang somewhere, disk access, dns access for instance,&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Mar 2008 15:55:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162633#M528247</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2008-03-17T15:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: ftp FIN_WAIT_2 and CLOSE_WAIT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162634#M528248</link>
      <description>In my past experiences at least with telnet I have found that HPUX and others like to send/see two closes ( i.e. fin_wait_1 and fin_wait_2 ).  Mostly with windows products I have found that they exit on the first one and HPUX will wait for a about 2 hours before closing the second one.&lt;BR /&gt;&lt;BR /&gt;This also happens with finely programmed applications ( typically windows ) that do not follow the proper close protocols.&lt;BR /&gt;&lt;BR /&gt;You can adust the fin_wait timeout with ndd (man ndd) if it bothers you.  These do not hurt anything.  &lt;BR /&gt;&lt;BR /&gt;close_waits are the same, the client did not close the connection properly, just disappeared and HPUX is still waiting for the final close.&lt;BR /&gt;&lt;BR /&gt;you can test this.  start up an ftp from A to B , identify it in netstat, then kill -9 the client on A(circumventing the proper close sequence).&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 17 Mar 2008 16:40:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162634#M528248</guid>
      <dc:creator>Tim Nelson</dc:creator>
      <dc:date>2008-03-17T16:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: ftp FIN_WAIT_2 and CLOSE_WAIT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162635#M528249</link>
      <description>&lt;BR /&gt;MORE INFORMATION&lt;BR /&gt;TCP Connection States&lt;BR /&gt;Following is a brief explanation of this handshake. In this context the "client" is the peer requesting a connection and the "server" is the peer accepting a connection. Note that this notation does not reflect Client/Server relationships as an architectural principal. &lt;BR /&gt;&lt;BR /&gt;1. Connection Establishment&lt;BR /&gt;&lt;BR /&gt;â ¢ The client sends a SYN message which contains the server's port and the client's Initial Sequence Number (ISN) to the server (active open). &lt;BR /&gt;â ¢ The server sends back its own SYN and ACK (which consists of the client's ISN + 1). &lt;BR /&gt;â ¢ The Client sends an ACK (which consists of the server's ISN + 1). &lt;BR /&gt; &lt;BR /&gt;2. Connection Tear-down (modified three way handshake).&lt;BR /&gt;&lt;BR /&gt;â ¢ The client sends a FIN (active close). This is a now a half-closed connection. The client no longer sends data, but is still able to receive data from the server. Upon receiving this FIN, the server enters a passive close state. &lt;BR /&gt;â ¢ The server sends an ACK (which is the clients FIN sequence + 1) &lt;BR /&gt;â ¢ The server sends its own FIN. &lt;BR /&gt;â ¢ The client sends an ACK (which is server's FIN sequence + 1). Upon receiving this ACK, the server closes the connection. &lt;BR /&gt; &lt;BR /&gt;A half-closed connection can be used to terminate sending data while sill receiving data. Socket applications can call shutdown with the second argument set to 1 to enter this state. &lt;BR /&gt;Back to the top&lt;BR /&gt;&lt;BR /&gt;Netstat Output&lt;BR /&gt;The above TCP connection states can be monitored in a network trace under the TCP flags. It is also possible to determine the status of the connection by running the Netstat utility and looking at the State column. Netstat is shipped with Windows NT, Windows 95, and TCP/IP-32 for Windows for Workgroups. &lt;BR /&gt;&lt;BR /&gt;State explanations as shown in Netstat: &lt;BR /&gt;State Explanation&lt;BR /&gt;------------ --------------------------------------------------------&lt;BR /&gt;&lt;BR /&gt;SYN_SEND Indicates active open.&lt;BR /&gt;&lt;BR /&gt;SYN_RECEIVED Server just received SYN from the client.&lt;BR /&gt;&lt;BR /&gt;ESTABLISHED Client received server's SYN and session is established.&lt;BR /&gt;&lt;BR /&gt;LISTEN Server is ready to accept connection.&lt;BR /&gt;&lt;BR /&gt;NOTE: See documentation for listen() socket call. TCP sockets in listening state are not shown - this is a limitation of NETSTAT. For additional information, please see the following article in the Microsoft Knowledge Base: &lt;BR /&gt;134404 (&lt;A href="http://support.microsoft.com/kb/134404/EN-US/)" target="_blank"&gt;http://support.microsoft.com/kb/134404/EN-US/)&lt;/A&gt; NETSTAT.EXE Does Not Show TCP Listen Sockets &lt;BR /&gt;FIN_WAIT_1 Indicates active close.&lt;BR /&gt;&lt;BR /&gt;TIMED_WAIT Client enters this state after active close.&lt;BR /&gt;&lt;BR /&gt;CLOSE_WAIT Indicates passive close. Server just received first FIN from a client.&lt;BR /&gt;&lt;BR /&gt;FIN_WAIT_2 Client just received acknowledgment of its first FIN from the server.&lt;BR /&gt;&lt;BR /&gt;LAST_ACK Server is in this state when it sends its own FIN.&lt;BR /&gt;&lt;BR /&gt;CLOSED Server received ACK from client and connection is closed. &lt;BR /&gt;As an example, consider the following scenario: &lt;BR /&gt;&lt;BR /&gt;A socket application has been terminated, but Netstat reports the socket in a CLOSE_WAIT state. This could indicate that the client properly closed the connection (FIN has been sent), but the server still has its socket open. This could be the result of one instance (among all threads or processes) of the socket not being closed. &lt;BR /&gt;&lt;BR /&gt;NOTE: It is normal to have a socket in the TIME_WAIT state for a long period of time. The time is specified in RFC793 as twice the Maximum Segment Lifetime (MSL). MSL is specified to be 2 minutes. So, a socket could be in a TIME_WAIT state for as long as 4 minutes. Some systems implement different values (less than 2 minutes) for the MSL. &lt;BR /&gt;</description>
      <pubDate>Tue, 18 Mar 2008 00:55:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162635#M528249</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2008-03-18T00:55:28Z</dc:date>
    </item>
    <item>
      <title>Re: ftp FIN_WAIT_2 and CLOSE_WAIT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162636#M528250</link>
      <description>Pacific,&lt;BR /&gt;&lt;BR /&gt; You got this error often ?&lt;BR /&gt;&lt;BR /&gt;you can refer to this doc on how to clear the connection.&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www12.itrc.hp.com/service/cki/docDisplay.do?docLocale=en&amp;amp;docId=emr_na-c01003418-1" target="_blank"&gt;http://www12.itrc.hp.com/service/cki/docDisplay.do?docLocale=en&amp;amp;docId=emr_na-c01003418-1&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;WK</description>
      <pubDate>Tue, 18 Mar 2008 02:29:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162636#M528250</guid>
      <dc:creator>whiteknight</dc:creator>
      <dc:date>2008-03-18T02:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: ftp FIN_WAIT_2 and CLOSE_WAIT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162637#M528251</link>
      <description>Hi Pacific,&lt;BR /&gt;&lt;BR /&gt;Probably year ago I also faced this problem and it was even worse, because I had hundreds of FIN_WAIT_2 connections and the server was unable to open and serve new connections. I found document in the KB of HP which resolved my problem. &lt;BR /&gt;&lt;BR /&gt;This is the document:&lt;BR /&gt;How do I clear or prevent too many fin_wait_2 connections?&lt;BR /&gt;DocId: KBRC00015664 Updated: 5/30/06 12:57:00 PM&lt;BR /&gt;PROBLEM&lt;BR /&gt;&lt;BR /&gt;Too many idle fin_wait_2 connections. How can I get them cleared out or to time out?&lt;BR /&gt;&lt;BR /&gt;CONFIGURATION&lt;BR /&gt;hp9000 hp-ux 11.X&lt;BR /&gt;RESOLUTION&lt;BR /&gt;&lt;BR /&gt;There is an ndd parameter, post-patch PHNE_19375/11.0 and included in 11i,&lt;BR /&gt;that is called&lt;BR /&gt;&lt;BR /&gt;tcp_fin_wait_2_timeout&lt;BR /&gt;&lt;BR /&gt;This parameter sets the fin_wait_2 timer on 11.x to stop idle fin_wait_2&lt;BR /&gt;connections. It will not survive a reboot, so modification of the&lt;BR /&gt;/etc/rc.config.d/nddconf is a necessary.&lt;BR /&gt;&lt;BR /&gt;tcp_fin_wait_2_timeout specifies an interval, in milliseconds, after which the&lt;BR /&gt;TCP connection will be unconditionally killed. An appropriate reset segment&lt;BR /&gt;will be sent when the connection is killed.&lt;BR /&gt;&lt;BR /&gt;The default for tcp_fin_wait_2_timeout is 0, which allows the connection&lt;BR /&gt;to live forever, as long as the far side continues to answer keepalives.&lt;BR /&gt;&lt;BR /&gt;To enable the tcp_fin_wait_2 timer to timeout do the following:&lt;BR /&gt;&lt;BR /&gt;1. To get the current value (0 is turned off):&lt;BR /&gt;# ndd -get /dev/tcp tcp_fin_wait_2_timeout&lt;BR /&gt;0&lt;BR /&gt;&lt;BR /&gt;2. To set the value to 10 minutes:&lt;BR /&gt;# ndd -set /dev/tcp tcp_fin_wait_2_timeout 600000&lt;BR /&gt;&lt;BR /&gt;3. Check the setting:&lt;BR /&gt;# ndd -get /dev/tcp tcp_fin_wait_2_timeout&lt;BR /&gt;600000&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Note: (1000 ms in 1 second) * (60 seconds) * (10 minutes)= 600000 ms.&lt;BR /&gt;10 minutes is just an example but probably a good selection. Using a&lt;BR /&gt;setting less than 10 minutes is not recommended by HP and may cause data loss&lt;BR /&gt;with half-closed TCP connections.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Using the ndd on command line will not survive a reboot, so you need to update&lt;BR /&gt;&lt;BR /&gt;/etc/rc.config.d/nddconf&lt;BR /&gt;&lt;BR /&gt;with the parameter so that it will be set at boot time.&lt;BR /&gt;&lt;BR /&gt;TRANSPORT_NAME[0]=tcp&lt;BR /&gt;NDD_NAME[0]=tcp_fin_wait_2_timeout&lt;BR /&gt;NDD_VALUE[0]=600000&lt;BR /&gt;&lt;BR /&gt;Use this commend to read the nddconf file and implement the ndd's:&lt;BR /&gt;&lt;BR /&gt;# ndd -c&lt;BR /&gt;&lt;BR /&gt;NOTE: patches may be superceded, verify your patch levels via the patch&lt;BR /&gt;database on the IT resource Center.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;sve</description>
      <pubDate>Tue, 18 Mar 2008 07:50:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162637#M528251</guid>
      <dc:creator>Svetoslav Gyurov</dc:creator>
      <dc:date>2008-03-18T07:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: ftp FIN_WAIT_2 and CLOSE_WAIT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162638#M528252</link>
      <description>yes, i did the same ndd setting too.</description>
      <pubDate>Tue, 18 Mar 2008 09:44:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162638#M528252</guid>
      <dc:creator>skt_skt</dc:creator>
      <dc:date>2008-03-18T09:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: ftp FIN_WAIT_2 and CLOSE_WAIT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162639#M528253</link>
      <description>Tim -&lt;BR /&gt;&lt;BR /&gt;Those "two closes" are a standard, correct :) TCP connection tear-down sequence.  Sadly, with its heritage of supporting limited numbers of TCP endpoints, Windows has "trained" applications to use an "abortive" close of connections.  This can often cause problems and bypasses one of TCP's data integrity mechanisms.</description>
      <pubDate>Tue, 18 Mar 2008 16:25:20 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162639#M528253</guid>
      <dc:creator>rick jones</dc:creator>
      <dc:date>2008-03-18T16:25:20Z</dc:date>
    </item>
    <item>
      <title>Re: ftp FIN_WAIT_2 and CLOSE_WAIT</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162640#M528254</link>
      <description>once again, if a side of the connection is in fin wait 2 and the other in close wait state (client side) we are still half closed, and the problem if there is one is that client side doesn"t close the socket for whatever question.&lt;BR /&gt;&lt;BR /&gt;The real thing to identify there is why the applicatios doesn"t close the socket.&lt;BR /&gt;&lt;BR /&gt;in case of rcp for instance, it is normal because the application is doing a half close.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Mar 2008 10:22:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/4162640#M528254</guid>
      <dc:creator>Laurent Menase</dc:creator>
      <dc:date>2008-03-20T10:22:13Z</dc:date>
    </item>
    <item>
      <title>335394 connections closed (including 48427 drops)</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/6820659#M528255</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;FONT size="4"&gt;Hi all, In the hp-ux netstat -p tcp output I have a question about "335394 connections closed (including 48427 drops)".&lt;/FONT&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE&gt;&lt;FONT size="4"&gt;I want to know what including drops represent?Does it means the number of reset connections?&lt;/FONT&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Thu, 24 Dec 2015 07:01:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/ftp-fin-wait-2-and-close-wait/m-p/6820659#M528255</guid>
      <dc:creator>AndyHuang</dc:creator>
      <dc:date>2015-12-24T07:01:22Z</dc:date>
    </item>
  </channel>
</rss>

