From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Taylor, Grant" Subject: Re: doubt on a rule ? Date: Thu, 05 May 2005 10:47:43 -0500 Message-ID: <427A401F.9090505@riverviewtech.net> References: <1115306460.1070.104.camel@maclinux.lotus> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1115306460.1070.104.camel@maclinux.lotus> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: netfilter-bounces@lists.netfilter.org Errors-To: netfilter-bounces@lists.netfilter.org Content-Type: text/plain; charset="us-ascii"; format="flowed" To: NetFilter > I have one doubts on a rule, in the case would be is syntax: iptables - > the FORWARD - m limit -- limit 60/minute limit-burst 60, what it is rule > makes, somebody can explain? The rule "-A FORWARD -m limit --limit 60/minute --limit-burst 60 -j ACCEPT" will only allow an average of 60 packets per minute to match this rule with an initial burst of 60 packets to spare. Seeing as how you do not have any matchs for which direction the packets are going you will have a combined limit of 60 packets per minute in and out with this rule. Grant. . . .