From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pablo Neira Subject: bug in icmp tracking? Date: Tue, 09 Mar 2004 20:44:16 +0100 Sender: netfilter-devel-admin@lists.netfilter.org Message-ID: <404E1E90.3060509@eurodev.net> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: To: netfilter-devel@lists.netfilter.org Errors-To: netfilter-devel-admin@lists.netfilter.org List-Help: List-Post: List-Subscribe: , List-Unsubscribe: , List-Archive: List-Id: netfilter-devel.vger.kernel.org Hi list, I sent some ICMP echo's request and I received the echo's reply with no problems but the conntrack doesn't track them. This is because the value returned by icmp_error_track called from ip_conntrack_in. snipped from icmp_error_track(...): 514 if (inside.icmp.type != ICMP_DEST_UNREACH 515 && inside.icmp.type != ICMP_SOURCE_QUENCH 516 && inside.icmp.type != ICMP_TIME_EXCEEDED 517 && inside.icmp.type != ICMP_PARAMETERPROB 518 && inside.icmp.type != ICMP_REDIRECT) 519 return NULL; I also had a look at the docs and I didn't find anything like "icmp are not tracked because of something...". So, is this a bug or a feature? regards, Pablo