All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bjorn Ruberg <bjorn@ruberg.no>
To: netfilter@lists.netfilter.org
Subject: Re: nat & ip accounting
Date: 27 Mar 2003 00:50:46 +0100	[thread overview]
Message-ID: <1048722647.18895.39.camel@mikke> (raw)
In-Reply-To: <004401c2f3ce$812d08e0$0200a8c0@lynx>

Oops, a little error in my last posting. Do NOT use the RETURN target on
the default chain.

The RETURN target (obviously) returns the packets to the chain that sent
it there. If used in the main chain, it is the same as falling back to
the default behaviour of the chain and will hopefully be denied.
Therefore, a direction to a chain must be done.

        iptables -N count_in
        iptables -A count_in -j RETURN

        iptables -N count_out
        iptables -A count_out -j RETURN

        iptables -A FORWARD -s 192.168.0.4 -j count_in
        iptables -A FORWARD -d 192.168.0.4 -j count_out

will do the trick.

Bjørn



  parent reply	other threads:[~2003-03-26 23:50 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-03-26 19:32 nat & ip accounting Alexandru Coseru
2003-03-26 21:01 ` Kim Jensen
2003-03-26 21:11   ` Rowan Reid
2003-03-26 21:51     ` Kim Jensen
2003-03-26 22:51       ` alexb
2003-03-26 23:17       ` Bjorn Ruberg
2003-03-26 21:38   ` Bjorn Ruberg
2003-03-26 22:47     ` Kim Jensen
2003-03-26 23:37 ` Bjorn Ruberg
2003-03-26 23:50 ` Bjorn Ruberg [this message]
     [not found] <000f01c2f3e6$8afbca60$0200a8c0@lynx>
2003-03-26 23:04 ` Rowan Reid
2003-03-27 15:04   ` Kelly Setzer

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=1048722647.18895.39.camel@mikke \
    --to=bjorn@ruberg.no \
    --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.