Linux Netfilter discussions
 help / color / mirror / Atom feed
* Extended IPTables options
@ 2012-01-30  7:40 Arnoud Tijssen
  2012-01-31 17:23 ` Andrew Beverley
  0 siblings, 1 reply; 5+ messages in thread
From: Arnoud Tijssen @ 2012-01-30  7:40 UTC (permalink / raw)
  To: netfilter@vger.kernel.org

I`ve been using iptables for quite some time now and it has worked more than perfect.
I`m looking for the more sophisticated options of iptables/netfilter like:
connmark, quota, qos, recent, netmap, tos, ulog, clustering and failover etc etc.

Is there a website/resource with howto`s, tutorials and examples regarding these extended options of iptables/netfilter.
Is it possible to create a modular setup with iptables that offers the possibility to reload a specific part of the iptables rulebase instead of the entire rulebase.


Thanks in advance,
Arnoud


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Extended IPTables options
  2012-01-30  7:40 Extended IPTables options Arnoud Tijssen
@ 2012-01-31 17:23 ` Andrew Beverley
  2012-02-06 10:41   ` Arnoud Tijssen
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Beverley @ 2012-01-31 17:23 UTC (permalink / raw)
  To: Arnoud Tijssen; +Cc: netfilter@vger.kernel.org

On Mon, 2012-01-30 at 08:40 +0100, Arnoud Tijssen wrote:
> I`m looking for the more sophisticated options of iptables/netfilter
> like: connmark, quota, qos, recent, netmap, tos, ulog, clustering and
> failover etc etc.

Have you tried the iptables man page? Personally I think that's pretty
well written and a good place to start. If you've got any specific
questions then feel free to post to this list.

> Is it possible to create a modular setup with iptables that offers the
> possibility to reload a specific part of the iptables rulebase instead
> of the entire rulebase.

You can add and remove rules "on the fly". There's no need to reload the
whole ruleset. Use "iptables -L  --line-numbers" to see all your rules
with associated rule number, and then use the "-D" command with that
number to delete as required.

Andy



^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: Extended IPTables options
  2012-01-31 17:23 ` Andrew Beverley
@ 2012-02-06 10:41   ` Arnoud Tijssen
  2012-02-06 10:53     ` Rob Sterenborg (lists)
  0 siblings, 1 reply; 5+ messages in thread
From: Arnoud Tijssen @ 2012-02-06 10:41 UTC (permalink / raw)
  To: 'Andrew Beverley'; +Cc: netfilter@vger.kernel.org

Thanks, and I know that nearly all of the options are listed in the manpage, but I`m also looking for an article of some sort that explains what options best to use for what kind of situations. A bit more background info on specific optios. I would like to extend the scripts I`m using for specific situations.

Cheers,
Arnoud


 
-----Original Message-----
From: netfilter-owner@vger.kernel.org [mailto:netfilter-owner@vger.kernel.org] On Behalf Of Andrew Beverley
Sent: dinsdag 31 januari 2012 18:23
To: Arnoud Tijssen
Cc: netfilter@vger.kernel.org
Subject: Re: Extended IPTables options

On Mon, 2012-01-30 at 08:40 +0100, Arnoud Tijssen wrote:
> I`m looking for the more sophisticated options of iptables/netfilter
> like: connmark, quota, qos, recent, netmap, tos, ulog, clustering and
> failover etc etc.

Have you tried the iptables man page? Personally I think that's pretty
well written and a good place to start. If you've got any specific
questions then feel free to post to this list.

> Is it possible to create a modular setup with iptables that offers the
> possibility to reload a specific part of the iptables rulebase instead
> of the entire rulebase.

You can add and remove rules "on the fly". There's no need to reload the
whole ruleset. Use "iptables -L  --line-numbers" to see all your rules
with associated rule number, and then use the "-D" command with that
number to delete as required.

Andy


--
To unsubscribe from this list: send the line "unsubscribe netfilter" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: Extended IPTables options
  2012-02-06 10:41   ` Arnoud Tijssen
@ 2012-02-06 10:53     ` Rob Sterenborg (lists)
  2012-02-06 12:45       ` Arnoud Tijssen
  0 siblings, 1 reply; 5+ messages in thread
From: Rob Sterenborg (lists) @ 2012-02-06 10:53 UTC (permalink / raw)
  To: netfilter@vger.kernel.org

On Mon, 2012-02-06 at 11:41 +0100, Arnoud Tijssen wrote:
> Thanks, and I know that nearly all of the options are listed in the
> manpage, but I`m also looking for an article of some sort that explains
> what options best to use for what kind of situations. A bit more
> background info on specific optios. I would like to extend the scripts
> I`m using for specific situations.

It's a bit aging these days (2006) and probably does not hold all the
information you're looking for, but did you check this tutorial:

http://www.frozentux.net/iptables-tutorial/iptables-tutorial.html


--
Rob


 
> -----Original Message-----
> From: netfilter-owner@vger.kernel.org [mailto:netfilter-owner@vger.kernel.org] On Behalf Of Andrew Beverley
> Sent: dinsdag 31 januari 2012 18:23
> To: Arnoud Tijssen
> Cc: netfilter@vger.kernel.org
> Subject: Re: Extended IPTables options
> 
> On Mon, 2012-01-30 at 08:40 +0100, Arnoud Tijssen wrote:
> > I`m looking for the more sophisticated options of iptables/netfilter
> > like: connmark, quota, qos, recent, netmap, tos, ulog, clustering and
> > failover etc etc.
> 
> Have you tried the iptables man page? Personally I think that's pretty
> well written and a good place to start. If you've got any specific
> questions then feel free to post to this list.
> 
> > Is it possible to create a modular setup with iptables that offers the
> > possibility to reload a specific part of the iptables rulebase instead
> > of the entire rulebase.
> 
> You can add and remove rules "on the fly". There's no need to reload the
> whole ruleset. Use "iptables -L  --line-numbers" to see all your rules
> with associated rule number, and then use the "-D" command with that
> number to delete as required.
> 
> Andy



^ permalink raw reply	[flat|nested] 5+ messages in thread

* RE: Extended IPTables options
  2012-02-06 10:53     ` Rob Sterenborg (lists)
@ 2012-02-06 12:45       ` Arnoud Tijssen
  0 siblings, 0 replies; 5+ messages in thread
From: Arnoud Tijssen @ 2012-02-06 12:45 UTC (permalink / raw)
  To: Rob Sterenborg (lists), netfilter@vger.kernel.org

I didn`t, and these are the kinds of readings/tutorials I am looking for.
I will give a good headstart and startingpoint for any further investigations.

Thanks.
___________________________________

Arnoud Tijssen
Security Officer

RAM Mobile Data
Planetenbaan 26
3606 AK Maarssen
T 030-2390 390
F 030-2390 300
E atijssen@ram.nl

RAM Mobile Data (Netherlands) B.V.
Statutair gevestigd te Utrecht
Handelsregisternr. 30115741

P please don't print this e-mail unless you really need to


________________________________________
From: netfilter-owner@vger.kernel.org [netfilter-owner@vger.kernel.org] On Behalf Of Rob Sterenborg (lists) [lists@sterenborg.info]
Sent: Monday, February 06, 2012 11:53 AM
To: netfilter@vger.kernel.org
Subject: RE: Extended IPTables options

On Mon, 2012-02-06 at 11:41 +0100, Arnoud Tijssen wrote:
> Thanks, and I know that nearly all of the options are listed in the
> manpage, but I`m also looking for an article of some sort that explains
> what options best to use for what kind of situations. A bit more
> background info on specific optios. I would like to extend the scripts
> I`m using for specific situations.

It's a bit aging these days (2006) and probably does not hold all the
information you're looking for, but did you check this tutorial:

http://www.frozentux.net/iptables-tutorial/iptables-tutorial.html


--
Rob



> -----Original Message-----
> From: netfilter-owner@vger.kernel.org [mailto:netfilter-owner@vger.kernel.org] On Behalf Of Andrew Beverley
> Sent: dinsdag 31 januari 2012 18:23
> To: Arnoud Tijssen
> Cc: netfilter@vger.kernel.org
> Subject: Re: Extended IPTables options
>
> On Mon, 2012-01-30 at 08:40 +0100, Arnoud Tijssen wrote:
> > I`m looking for the more sophisticated options of iptables/netfilter
> > like: connmark, quota, qos, recent, netmap, tos, ulog, clustering and
> > failover etc etc.
>
> Have you tried the iptables man page? Personally I think that's pretty
> well written and a good place to start. If you've got any specific
> questions then feel free to post to this list.
>
> > Is it possible to create a modular setup with iptables that offers the
> > possibility to reload a specific part of the iptables rulebase instead
> > of the entire rulebase.
>
> You can add and remove rules "on the fly". There's no need to reload the
> whole ruleset. Use "iptables -L  --line-numbers" to see all your rules
> with associated rule number, and then use the "-D" command with that
> number to delete as required.
>
> Andy


--
To unsubscribe from this list: send the line "unsubscribe netfilter" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-02-06 12:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-30  7:40 Extended IPTables options Arnoud Tijssen
2012-01-31 17:23 ` Andrew Beverley
2012-02-06 10:41   ` Arnoud Tijssen
2012-02-06 10:53     ` Rob Sterenborg (lists)
2012-02-06 12:45       ` Arnoud Tijssen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox