From owner-freebsd-questions@FreeBSD.ORG Mon Mar 21 22:18:42 2005 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19F5716A4CE for ; Mon, 21 Mar 2005 22:18:42 +0000 (GMT) Received: from uni-sb.de (uni-sb.de [134.96.252.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41DF943D5D for ; Mon, 21 Mar 2005 22:18:41 +0000 (GMT) (envelope-from robertgogolok@web.de) Received: from cs.uni-sb.de (cs.uni-sb.de [134.96.252.31]) by uni-sb.de (8.13.3/2005020900) with ESMTP id j2LMIdGC016173; Mon, 21 Mar 2005 23:18:39 +0100 (CET) Received: from mail.cs.uni-sb.de (mail.cs.uni-sb.de [134.96.254.200]) by cs.uni-sb.de (8.13.3/2005011400) with ESMTP id j2LMIcp6017877; Mon, 21 Mar 2005 23:18:38 +0100 (CET) Received: from xantippe (xantippe.cs.uni-sb.de [134.96.240.13]) by mail.cs.uni-sb.de (8.13.3/2005020900) with ESMTP id j2LMIbpi028858; Mon, 21 Mar 2005 23:18:38 +0100 (CET) X-Authentication-Warning: mail.cs.uni-sb.de: Host xantippe.cs.uni-sb.de [134.96.240.13] claimed to be xantippe Received: from eugene.cs.uni-sb.de ([127.0.0.1]) [134.96.240.6] by xantippe with esmtp (Exim 3.35 #1 (Debian))id 1DDVEL-000800-00; Mon, 21 Mar 2005 23:18:37 +0100 Message-ID: <423F482C.2070400@web.de> Date: Mon, 21 Mar 2005 23:18:20 +0100 From: Robert Gogolok User-Agent: Mozilla Thunderbird 1.0 (X11/20050313) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Charles Swiger References: <423EFE41.6040805@web.de> <56b90b3668acea792519e1e70a7b837a@mac.com> <423F05F2.3010101@web.de> <7c82a2d1780970b84810aefc59bdb295@mac.com> <423F17D9.70802@web.de> In-Reply-To: X-Enigmail-Version: 0.89.6.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org Subject: Re: FIN_WAIT_2 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2005 22:18:42 -0000 Charles Swiger wrote: > If the TCP connection is in FIN_WAIT_2, FreeBSD may send out ACKs > periodicly, trying to nudge the other side to send a FIN to finish > closing the connection. This is indeed the case (when I interpret the tcpdump output correct): 21:19:20.139373 IP HTTP_SERVER.http > HTTP_CLIENT.63131: . ack 2918467318 win 0 21:19:20.139543 IP HTTP_SERVER.http > HTTP_CLIENT.63131: . ack 2918467318 win 65535 21:24:05.098980 IP HTTP_SERVER.http > HTTP_CLIENT.63131: . ack 2918467318 win 0 21:24:05.099151 IP HTTP_SERVER.http > HTTP_CLIENT.63131: . ack 2918467318 win 65535 . . AND SO ON :-) . 22:11:34.665056 IP HTTP_SERVER.http > HTTP_CLIENT.63131: . ack 2918467318 win 0 22:11:34.665225 IP HTTP_SERVER.http > HTTP_CLIENT.63131: . ack 2918467318 win 65535 22:16:19.621661 IP HTTP_SERVER.http > HTTP_CLIENT.63131: . ack 2918467318 win 0 22:16:19.621824 IP HTTP_SERVER.http > HTTP_CLIENT.63131: . ack 2918467318 win 65535 HTTP_SERVER.http > HTTP_CLIENT.63131 is in FIN_WAIT_2 state. After the last line it stopped and go away from FIN_WAIT_2 as expteced (timeout...). And the firewall rejects/drops exactly those packages. The client is not responding. Greetings, Robert!