From: Grant Taylor <gtaylor@riverviewtech.net>
To: Mail List - Netfilter <netfilter@lists.netfilter.org>
Subject: Re: iptables: hide the real web server from users
Date: Wed, 14 Feb 2007 11:59:29 -0600 [thread overview]
Message-ID: <45D34E01.8050900@riverviewtech.net> (raw)
In-Reply-To: <533163.22377.qm@web33303.mail.mud.yahoo.com>
Tim Perton wrote:
> Dear Grant,
> thank you very much for your quick reply.
You are welcome.
> I agree to the 3 conditions/caveats in your previous
> email. I have already tried an example on this.
> Let's say I want to connect to www.google.com
> (216.239.59.103) so System B is www.google.com
Ok.
> According to your example I issue the following
> commands (after stop/start iptables to be fresh):
>
> iptables -A INPUT -p tcp -m tcp --dport 1099 -j ACCEPT
What filtering do you have in place? If you do not have default
policies of ACCEPT, you will also need to add rules to your
filter:FORWARD chain to allow this traffic to pass through. I.e.
iptables -A FORWARD -i eth0 -o eth0 -d 216.239.59.103 -p tcp --dport 80
-j ACCEPT
iptables -A FORWARD -i eth0 -o eth0 -s 216.239.59.103 -p tcp --sport 80
-j ACCEPT
> iptables -t nat -A PREROUTING -i eth0 -d a.b.c.d -p
> tcp --dport 1099 -j DNAT --to-destination
> 216.239.59.103:80
>
> iptables -t nat -A POSTROUTING -o eth0 -d
> 216.239.59.103 -p tcp --dport 1099 -j SNAT --to-source
> a.b.c.d
These commands look ok to me.
> I am trying http://a.b.c.d:1099 or with telnet
> a.b.c.d 1099 (Trying a.b.c.d... telnet: Unable to
> connect to remote host: Connection refused)
I think you will have better luck playing with telnet to start with.
Keep in mind that just because you enter "http://a.b.c.d..." in your web
browser, you are doing more than connecting to that address. You are
also asking for a page off of the domain a.b.c.d. So for testing, I'd
stick with telnet, or set up a temporary hosts entry for the test domain.
Grant. . . .
next prev parent reply other threads:[~2007-02-14 17:59 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-02-14 12:53 iptables: hide the real web server from users Tim Perton
2007-02-14 13:08 ` Rodrigo Montoro (Sp0oKeR)
2007-02-14 14:40 ` Rob Sterenborg
2007-02-14 14:43 ` Robert LeBlanc
2007-02-14 15:44 ` Tim Perton
2007-02-23 11:05 ` Martijn Lievaart
2007-02-14 15:42 ` Grant Taylor
2007-02-14 16:36 ` Tim Perton
2007-02-14 17:59 ` Grant Taylor [this message]
2007-02-15 14:28 ` Tim Perton
2007-02-15 15:08 ` Pascal Hambourg
2007-02-15 10:55 ` Pascal Hambourg
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=45D34E01.8050900@riverviewtech.net \
--to=gtaylor@riverviewtech.net \
--cc=gtaylor+reply@riverviewtech.net \
--cc=netfilter@lists.netfilter.org \
/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.