From mboxrd@z Thu Jan 1 00:00:00 1970 From: uniplex Subject: -m recent Date: Thu, 23 Jan 2003 13:11:56 +0000 Sender: netfilter-admin@lists.netfilter.org Message-ID: <3E2FEA1C.9030305@maximum-linux.net> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: Errors-To: netfilter-admin@lists.netfilter.org List-Help: List-Post: List-Subscribe: , List-Id: List-Unsubscribe: , List-Archive: Content-Type: text/plain; charset="us-ascii"; format="flowed" To: netfilter@lists.netfilter.org Has anyone here had any luck with this? It's logging the ip and ttl etc etc in the file it's supposed to, but the --update -j DROP rule I'm using doesn't seem to have any effect. Here's a snip of rules from my script that I've been using to test with. I've put them in the same order as they appear in the script. It's not the entire script(of coarse) and I'm matching to icmp packets just to test with. iptables -A INPUT -i eth0 -p all -m recent --name icmps --update -j DROP iptables -N icmps iptables -A INPUT -i eth0 -p icmp -j icmps iptables -A icmps -m recent --name icmps --set -j DROP iptables -A icmps -j DROP Thanks in advance.