From: /dev/rob0 <rob0@gmx.co.uk>
To: netfilter@lists.netfilter.org
Subject: Re: What's the best way to block these IP's?
Date: Sat, 18 Jun 2005 12:46:09 -0500 [thread overview]
Message-ID: <200506181246.09879.rob0@gmx.co.uk> (raw)
In-Reply-To: <003001c57425$4bb210a0$45d4a8c0@martin>
On Saturday 18 June 2005 11:46, Netfilter wrote:
> What's the best way to block these IP's?
I'm not sure what your question is. I see a few main possibilities
about which you might be asking. I'll address those.
> -A INPUT -p tcp -s 213.0.0.0/32 -i eth1 -j DROP
>
> or
>
> -A INPUT -p tcp -s 218.0.0.0 -i eth1 -j DROP
Maybe you don't understand CIDR notation, and thus don't know what
these do. A /32 netmask means "this IP only" in English. 32 bits of
netmask is 255.255.255.255. Both forms are the same!
If you want to block all IP's starting with 213 or 218, those won't do
it. You would need to use /8 or smaller. 218.0.0.0/8 is 218.0.0.0
through 218.255.255.255; 218.0.0.0/7 is 218.0.0.0 through
219.255.255.255. Rusty's Networking Concepts HOWTO might help.
Generally the best strategy for firewalling is to choose what to allow
and let everything else hit a DROP or REJECT policy or rule. Here the
Packet Filtering HOWTO has examples which might help. Note as well that
all your examples are only limiting TCP traffic, and only if coming in
your eth1 interface.
Furthermore there are common misunderstandings concerning the role of
INPUT as opposed to FORWARD. If you're wanting to block traffic from or
to NAT users, your INPUT rules will not do it. Again this is explained
in the Packet Filtering HOWTO.
When I have common rules I want called from both INPUT and FORWARD, I
use a new chain ...
# iptables -N Common
# iptables -vA Common -s 218.0.0.0/7 -j DROP
[ ... other rules as wanted ... ]
# iptables -vA INPUT -j Common
# iptables -vA FORWARD -j Common
You can of course limit the type of traffic sent to the chain with
matches on the calling rule.
HTH, and if not you, HTH someone else.
--
mail to this address is discarded unless "/dev/rob0"
or "not-spam" is in Subject: header
next prev parent reply other threads:[~2005-06-18 17:46 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-06-18 16:46 What's the best way to block these IP's? Netfilter
2005-06-18 17:46 ` /dev/rob0 [this message]
2005-06-18 18:02 ` Netfilter
2005-06-19 14:07 ` Jason Opperisano
2005-06-18 20:56 ` Cedric Blancher
-- strict thread matches above, loose matches on Subject: below --
2005-06-18 16:29 Netfilter
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=200506181246.09879.rob0@gmx.co.uk \
--to=rob0@gmx.co.uk \
--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