From: Simion Onea <simionea@gmail.com>
To: Andrew Kolt <andrew_kolt@darkarts.no-ip.org>
Cc: netfilter@vger.kernel.org
Subject: Re: state ESTABLISHED, RELATED
Date: Thu, 16 Jul 2009 09:42:40 +0300 [thread overview]
Message-ID: <1247726560.15457.77.camel@TestField.intranet.bem.md> (raw)
In-Reply-To: <4A5E3B43.4050408@darkarts.no-ip.org>
On Wed, 2009-07-15 at 23:25 +0300, Andrew Kolt wrote:
> As a temp solution i added the following to the INPUT chain, in order to
> let those replies in:
>
> -A INPUT -i eth0 -p tcp -s 0/0 -d zzz.zzz.zzz.zzz -m state --state
> ESTABLISHED,RELATED -j ACCEPT
>
> Everything works well now, but i'd like to know if there's any other way
> to go about this and if the line above is "good" practice as far
> as security goes.
Hi Andrew!
In my opinion it is good practice. We have been using such a rule for
some time. In our set of iptables rules we have these in the beginning:
#------------------------------------------------------------------
# Drop invalid packets, unrelated to any connection
iptables -t filter -A INPUT -m state --state INVALID -j DROP
# Block and log several types of network scans that use malformed packets
# FIN / URG / PSH
iptables -t filter -A INPUT -p tcp --tcp-flags ALL FIN,URG,PSH -m limit --limit 5/minute \
-j LOG --log-level notice --log-prefix "NMAP-XMAS:"
iptables -t filter -A INPUT -p tcp --tcp-flags ALL FIN,URG,PSH -j DROP
# SYN / RST
iptables -t filter -A INPUT -p tcp --tcp-flags SYN,RST SYN,RST -m limit --limit 5/minute \
-j LOG --log-level notice --log-prefix "SYN/RST:"
iptables -t filter -A INPUT -p tcp --tcp-flags SYN,RST SYN,RST -j DROP
# SYN / FIN -- scan (probably)
iptables -t filter -A INPUT -p tcp --tcp-flags SYN,FIN SYN,FIN -m limit --limit 5/minute \
-j LOG --log-level notice --log-prefix "SYN/FIN:"
iptables -t filter -A INPUT -p tcp --tcp-flags SYN,FIN SYN,FIN -j DROP
# Accept packets related to previously established connections
iptables -t filter -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
# Accept locally generated packets unconditionally
iptables -t filter -A INPUT -i lo -j ACCEPT
#------------------------------------------------------------------
The same rules can also be applied to FORWARD chain.
Regards,
Simion.
next prev parent reply other threads:[~2009-07-16 6:42 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-15 20:25 state ESTABLISHED, RELATED Andrew Kolt
2009-07-16 6:42 ` Simion Onea [this message]
2009-07-16 8:21 ` Richard Horton
2009-07-16 8:54 ` Simion Onea
2009-07-16 8:32 ` Andrew Kolt
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=1247726560.15457.77.camel@TestField.intranet.bem.md \
--to=simionea@gmail.com \
--cc=andrew_kolt@darkarts.no-ip.org \
--cc=netfilter@vger.kernel.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