Linux Netfilter discussions
 help / color / mirror / Atom feed
From: Martijn Lievaart <m@rtij.nl>
To: Costi <costi@cdvultur.com>
Cc: netfilter@lists.netfilter.org
Subject: Re: One little problem I don't understand
Date: Thu, 10 Aug 2006 14:13:09 +0200	[thread overview]
Message-ID: <44DB22D5.8010004@rtij.nl> (raw)
In-Reply-To: <44DAE67F.3010702@cdvultur.com>

Costi wrote:

[ Please don't top post! ]

>>>
>>> Now my problem is like this:
>>> If I want to connect to ssh to one of the ip's from d A.B.C.D/X all 
>>> my packets are set-marked with 2. The rule with d A.B.C.D/X   is 
>>> above tho one with ssh.
>>> Shouldn't the ssh connection to A.B.C.D/X  be marked with 1 ? If not 
>>> what I am doing wrong.
>>
>>
>>
>> It IS marked with 1, subsequently overwritten by 2 by the second rule.
>>

 > But still isn't iptables  *first rule wins* policy ? From what I know 
iptables runs with this policy?

No, first rule gets executed first. If that is a rule with a terminal 
target, the processing stops there. Otherwise processing continues with 
the next rule.

To get what you want, do this:

$IPT -t mangle -A PREROUTING -i $INT_IF -d A.B.C.D/X  -j  T1
$IPT -N T1
$IPT -A T1 -j MARK --set-mark 1
$IPT -A T1 -j ACCEPT
$IPT -t mangle -A PREROUTING -i $INT_IF -p tcp --dport 22 -j MARK 
--set-mark 2

HTH,
M4



      parent reply	other threads:[~2006-08-10 12:13 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-08-09 20:14 One little problem I don't understand Vultur Constantin
2006-08-10  7:35 ` Martijn Lievaart
2006-08-10  7:55   ` Costi
2006-08-10  8:20     ` Rob Sterenborg
2006-08-10 12:13     ` Martijn Lievaart [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=44DB22D5.8010004@rtij.nl \
    --to=m@rtij.nl \
    --cc=costi@cdvultur.com \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox