Sungwon Jung wrote: > Thanks to Trustin. :-) > > As you said, I check TIME_WAIT of client side. > > -- > [client side] (9009 is server port) > $ netstat -an | grep 9009 | wc -l > 15084
Try this instead: netstat -an | grep TIME_WAIT | wc -l I think that will give you a truer picture on the client, since the client should be allocating ephemeral ports for the connection. See: http://www.ncftp.com/ncftpd/doc/misc/ephemeral_ports.html Also, if you run one client to the point where things hang up, then start a second client on a separate machine to the same server, does the second client also hang up? Cheers, Raman Gupta
