From mboxrd@z Thu Jan 1 00:00:00 1970 From: Radu Oprisan Date: Sat, 06 Jan 2007 18:30:55 +0000 Subject: Re: [LARTC] Disable netfilter for bridged traffic Message-Id: <459FEADF.5060609@securesystems.ro> List-Id: References: <4588D088.3050702@multitech.co.in> In-Reply-To: <4588D088.3050702@multitech.co.in> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: lartc@vger.kernel.org senthil wrote: > Hi All, > Can anybody suggests how can I disable netfilter for bridged traffic in > linux-2.4.27 kernel ? If i understand the question, then you just need to ignore the interfaces for the bridge. iptables -I FORWARD -i eth_bridge_1 -j RETURN iptables -I FORWARD -i eth_bridge_2 -j RETURN iptables -I FORWARD -i bridge -j RETURN same for input and output if you don't need a firewall for the ip address assigned on the bridge interface or you don't have an ip address assigned. _______________________________________________ LARTC mailing list LARTC@mailman.ds9a.nl http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc