From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Ed Street" Subject: RE: How to ACCEPT or DENY or DROP and also LOG in the same rule ? Date: Thu, 4 Jul 2002 10:54:35 -0400 Sender: netfilter-admin@lists.samba.org Message-ID: <005701c2236a$b69ddde0$0a01a8c0@ed> References: <20020704075047.EBOJ16050.mta01-svc.ntlworld.com@there> Reply-To: Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20020704075047.EBOJ16050.mta01-svc.ntlworld.com@there> Errors-To: netfilter-admin@lists.samba.org List-Help: List-Post: List-Subscribe: , List-Id: List-Unsubscribe: , List-Archive: Content-Type: text/plain; charset="us-ascii" To: 'Antony Stone' , netfilter@lists.samba.org Hello, Actually you can: Rule #1 is to log Rule #2 is to deny Works In any chain. Ed -----Original Message----- From: netfilter-admin@lists.samba.org [mailto:netfilter-admin@lists.samba.org] On Behalf Of Antony Stone Sent: Thursday, July 04, 2002 3:51 AM To: netfilter@lists.samba.org Subject: Re: How to ACCEPT or DENY or DROP and also LOG in the same rule ? On Thursday 04 July 2002 5:31 am, Orca J. wrote: > Hi > I want to both DENY and LOG in the same rule ? or ACCEPT and LOG , or > DENY and LOG You can't put them both in the same rule, butyou can create a user-defined chain and jump to that: iptables -N LOGDROP iptables -A LOGDROP -j LOG --log-options........ iptables -A LOGDROP -j DROP Then use that single target in your rules: iptables -A INPUT -i eth0 -j LOGDROP Antony/.