Linux Netfilter discussions
 help / color / mirror / Atom feed
From: Antony Stone <Antony@Soft-Solutions.co.uk>
To: Netfilter <netfilter@lists.netfilter.org>
Subject: Re: script firewall
Date: Wed, 14 Apr 2004 09:30:32 +0100	[thread overview]
Message-ID: <200404140930.32110.Antony@Soft-Solutions.co.uk> (raw)
In-Reply-To: <20040414025241.57105.qmail@web40509.mail.yahoo.com>

On Wednesday 14 April 2004 3:52 am, Luis GUSTAVO wrote:

> i want Turn off all conections and ports in my machine

iptables -F
iptables -P INPUT DROP
iptables -P FORWARD DROP

will do that for you.

> and after i want turn on only what i need, do you understand me?

iptables -A INPUT -p tcp --dport xyz -j ACCEPT

will enable a service which is running on the machine with the rules, and

iptables -A FORWARD -d a.b.c.d -p tcp --dport xyz -j ACCEPT

will enable forwarding packets to some other machine

Obviously you will need to add the standard ESTABLISHED,RELATED rules for 
connection tracking replies etc, however the above is a start.

> thank you

I also recommend that you read some of the documentation at 
http://www.netfilter.org/documentation, and Oskar Andreasson's tutorial at 
http://iptables-tutorial.frozentux.net

Hope this helps,

Antony.

PS: Please don't top-post, and please reply to the list.

> Antony Stone <Antony@Soft-Solutions.co.uk> wrote:
>
> On Tuesday 13 April 2004 10:28 pm, Luis GUSTAVO wrote:
> > Hi,
> >
> > i´m looking for a script for my adsl conection.
>
> Er, that's not a very helpful description, but anyway...
>
> > i found this
> >
> > iptables -F
> > iptables -P INPUT DROP
> > iptables -P OUTPUT DROP
> > iptables -P FORWARD DROP
> > iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT
> > iptables -A OUTPUT -p tcp --dport 22 -j ACCEPT
> > iptables -A OUTPUT -p udp --dport 53 -j ACCEPT
> > iptables -A OUTPUT -p tcp --dport 53 -j ACCEPT
>
> Hmmm. Looks like one of mine :)
>
> > when i apllyed this rules, my machines clients, don´t know acces my
> > machine.
>
> I tell you what - you let us know what you'd like your firewall to do, and
> we might be able to help you.
>
> If you don't tell us what your network setup is, and what you want your
> firewall to do for you, we might not be able to suggest the perfect ruleset
> for your needs.
>
> I *did* say when I posted the above ruleset that it allowed me to access
> *from* the machine the rules were running on *to* other systems by SSH, and
> blocked *all access in to my machine* (which is what I consider to be
> secure).
>
> Therefore that fact that after you've applied these rules to your machine,
> your clients can't access the system, suggests that the ruleset is working
> correctly.
>
> Tell us what you'd like to be different (and preferably tell us what you've
> tried yourself and had problems with) and we'll see what we can do to help.
>
> Regards,
>
> Antony

-- 
"Linux is going to be part of the future. It's going to be like Unix was."

 - Peter Moore, Asia-Pacific general manager, Microsoft



       reply	other threads:[~2004-04-14  8:30 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20040414025241.57105.qmail@web40509.mail.yahoo.com>
2004-04-14  8:30 ` Antony Stone [this message]
2004-04-20 19:53 script firewall Luis GUSTAVO
2004-04-20 20:10 ` Antony Stone
2004-04-20 20:21   ` Luis GUSTAVO
2004-04-20 20:32     ` Antony Stone
  -- strict thread matches above, loose matches on Subject: below --
2004-04-13 21:28 Luis GUSTAVO
2004-04-13 22:02 ` Antony Stone

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=200404140930.32110.Antony@Soft-Solutions.co.uk \
    --to=antony@soft-solutions.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