From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Brad Morgan" Subject: RE: problem with forward/nat Date: Sun, 7 Mar 2004 08:57:04 -0700 Sender: netfilter-admin@lists.netfilter.org Message-ID: <007d01c4045c$d9130060$0400a8c0@bradmorgan> References: <200403071503.56728.Antony@Soft-Solutions.co.uk> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: In-reply-to: <200403071503.56728.Antony@Soft-Solutions.co.uk> 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" To: 'Antony Stone' , netfilter@lists.netfilter.org > > Once you hit that rule, the only thing going past > > are INVALID packets so the rest of the INPUT and OUTPUT chains aren't > doing > > anything useful. > > No, the other rules are dealing with packets to interfaces other than lo. Opps, I missed the lo! That means there is no ESTABLISHED,RELATED rule for the Ethernet traffic. My suggestions remove the lo interface which fixes that. So for local traffic add the rule: iptables -A INPUT -i lo -j ACCEPT just after the drop of INVALID state packets. Since I leave the OUTPUT default policy as ACCEPT, I don't have an OUTPUT rule for lo but it would probably be: iptables -A OUTOUT -o lo -j ACCEPT again placed just after the drop of INVALID state packets.