From: Philip Craig <philipc@snapgear.com>
To: Tommy W <tommy@svearike.sytes.net>
Cc: netfilter@lists.netfilter.org
Subject: Re: How to make portforwarding work properly with two ISPs
Date: Wed, 01 Mar 2006 10:16:06 +1000 [thread overview]
Message-ID: <4404E7C6.301@snapgear.com> (raw)
In-Reply-To: <200602282233.59855.tommy@svearike.sytes.net>
On 03/01/2006 07:33 AM, Tommy W wrote:
> Hi
> I'm having some trouble with getting my portforwarding to work.
> Basically what I do is check for destination ip and port, if they match my
> server's, then to DNAT to the correct box.
> This works perfectly, unless the request is done on the "wrong" interface.
> Meaning if a request comes in on my secondary interface.
> I take it that ALL SENT to the GATEWAY will be redirected to the correct BOX
> BEHIND.. but it's when the BOX BEHIND starts talking back, it goes out on the
> standard interface instead of the secondary.
> I use --set-mark 0x2 in the mangle table for getting traffic out on the
> secondary interface.
The solution here is to remember that a connection was initiated on the
secondary, and set the mark on replies so that they go out the secondary.
I've had success doing this with something like this:
iptables -t mangle -A PREROUTING -i $BOSTREAMIF -m conntrack --ctstate NEW -j CONNMARK --set-mark 0x2
iptables -t mangle -A PREROUTING -i $INTIF -m conntrack --ctstate ESTABLISHED,RELATED -j CONNMARK --restore-mark
prev parent reply other threads:[~2006-03-01 0:16 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-02-28 21:33 How to make portforwarding work properly with two ISPs Tommy W
2006-03-01 0:16 ` Philip Craig [this message]
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=4404E7C6.301@snapgear.com \
--to=philipc@snapgear.com \
--cc=netfilter@lists.netfilter.org \
--cc=tommy@svearike.sytes.net \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox