From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrea Rossato Subject: Re: Modifying Source Ip on input/prerouting Date: Wed, 11 Dec 2002 17:34:41 +0100 Sender: netfilter-admin@lists.netfilter.org Message-ID: <3DF76921.4080108@istitutocolli.org> References: <20021211135812.GA8394@nath.rubis.org> <3DF7536F.9050002@istitutocolli.org> <20021211153854.GA9333@nath.rubis.org> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20021211153854.GA9333@nath.rubis.org> 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 Stephane Jourdois wrote: > The problem is that I wan't to change the incoming traffic... > What I would need is something similar to : > -A PREROUTING -j SNAT --from-source xxx what you need is probably iptables -A OUTPUT -t nat -j DNAT --to 1.2.3.4 iptables tutorial says that output chain in nat table is broken. but i don't know if it still is. andrea