From: "Taylor, Grant" <gtaylor@riverviewtech.net>
To: Kirk <whereisgui@gmail.com>
Cc: netfilter@lists.netfilter.org
Subject: Re: Temporary redirection with DNAT and SNAT
Date: Wed, 27 Apr 2005 00:00:17 -0500 [thread overview]
Message-ID: <426F1C61.3050401@riverviewtech.net> (raw)
In-Reply-To: <48be50bb0504261013137f3cd2@mail.gmail.com>
Kirk wrote:
> Hello,
>
> I have to shutdown a proxy server for a few days and I need to
> redirect its traffic to a server behind an iptables firewall. Here's
> what I want to do:
>
> Original request to $PUBLIC_IP:80 is redirected to $PRIVATE_IP:2050
> (machine behind firewall)
>
> Packets from $PRIVATE_IP:2050 come out of the firewall as coming from
> $PUBLIC_IP:80
>
> I binded the proxy's public IP to the firewall's external interface
> (eth0) and added the following rules:
>
> I think I got the first part right.
> #test for ezproxy
> -A FORWARD -i eth0 -o eth1 -p tcp --syn -d 192.168.0.3 --dport 2050 -j ACCEPT
Do you have any other rules in your FORWARD chain that will allow the rest of the traffic flow through to the Proxy, i.e. --state ESTABLISHED? Correspondingly do you have any rules that will prevent the traffic that is flowing from the proxy in eth1 and back out eth0? This could get you down the road.
> But I'm having problems with the second part. The SNAT rule:
> -I POSTROUTING -s 192.168.0.3 --sport 2050 -o eth0 -j SNAT --to 130.17.174.108
You will have to specify a protocol "-p tcp" to use any port definitions.
> #This one seems OK too.
> -A PREROUTING -i eth0 -p tcp -d $PUBLIC_IP --dport 80 -j DNAT --to
> $PRIVATE_IP:2050
>
> The SNAT rule generates the error:
> Applying iptables firewall rules: iptables-restore v1.2.11: Unknown
> arg `--sport'
*nod* see above.
> One of the restrictions I have is that *only* the packets from
> $PRIVATE_IP:2050 can go out as coming from $PUBLIC_IP:80.
If you are really paranoid that this will happen you could write a rule that would drop any traffic that was not from the internal proxy.
-A FORWARD -s ! 192.168.0.3 -p tcp --sport 80 -j DROP
Grant. . . .
next prev parent reply other threads:[~2005-04-27 5:00 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-04-26 17:13 Temporary redirection with DNAT and SNAT Kirk
2005-04-27 2:36 ` Temporary redirection with DNAT and SNAT (nfcan: addressed to exclusive sender for this address) Jim Laurino
2005-04-27 5:00 ` Taylor, Grant [this message]
-- strict thread matches above, loose matches on Subject: below --
2005-04-28 23:25 Temporary redirection with DNAT and SNAT Kirk
2005-04-29 0:23 ` Taylor, Grant
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=426F1C61.3050401@riverviewtech.net \
--to=gtaylor@riverviewtech.net \
--cc=netfilter@lists.netfilter.org \
--cc=whereisgui@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.