* Groups in iptables
@ 2003-11-29 17:28 Paul Fontenot
2003-11-29 19:06 ` Leonardo Rodrigues Magalhães
0 siblings, 1 reply; 4+ messages in thread
From: Paul Fontenot @ 2003-11-29 17:28 UTC (permalink / raw)
To: Net Filter (E-mail)
I would imagine the answer to this is yes, but I haven't found anything on
the subject. If you wanted to limit outbound traffic for a certain port to
certain group of servers is that possible?
For example, can I create a group:
MAILSERVERS = 192.168.0.25, 192.168.0.26, 192.168.0.27
and use that in a ruleset:
-A INSIDE_ACCESS_OUT -s $MAILSERVERS -p tcp -m tcp --dport 25 --tcp-flags
SYN,RST,ACK SYN -j ACCEPT
and then drop the rest:
-A INSIDE_ACCESS_OUT -p tcp -m tcp --dport 25 -j DROP
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: Groups in iptables
2003-11-29 17:28 Groups in iptables Paul Fontenot
@ 2003-11-29 19:06 ` Leonardo Rodrigues Magalhães
2003-11-29 22:24 ` Chris Brenton
0 siblings, 1 reply; 4+ messages in thread
From: Leonardo Rodrigues Magalhães @ 2003-11-29 19:06 UTC (permalink / raw)
To: paul, Net Filter (E-mail)
Source and destination addresses cannot be given as a 'group of IPs'.
It's true that source and destination addresses CAN be always written as
net.work.address/mask, thus allowing you to specify a whole C
(your.net.work.0/24 ) network of even networks with different masks.
In your case, 192.168.0.25, 192.168.0.26 and 192.168.0.27 cannot be
written as network/mask. So you CANNOT write one SINGLE rule to do what you
want. You'll probably need to write a single rule for each address.
But if you're one of those who are not afraid of source code and
recompiling things, you may wanna try iprange iptables module that can be
found on patch-o-matic. This module makes possible to specify any given
range of IPs as source and/or destination.
[root@firewall root]# iptables -m iprange --help
iptables v1.2.9
[ ..... looooooots of information ...... ]
iprange match v1.2.9 options:
[!] --src-range ip-ip Match source IP in the specified range
[!] --dst-range ip-ip Match destination IP in the specified range
Anyway, neither iprange can be used if your IP addresses are completly
different from each other (192.168.0.20, 10.10.2.1, 172.16.3.1,
200.201.202.203) .... in this case you'll for sure have to give several
rules, one for each address.
Hope this helps you :)
Sincerily,
Leonardo Rodrigues
----- Original Message -----
From: "Paul Fontenot" <paul@pitbull-racing.com>
To: "Net Filter (E-mail)" <netfilter@lists.netfilter.org>
Sent: Saturday, November 29, 2003 2:28 PM
Subject: Groups in iptables
> I would imagine the answer to this is yes, but I haven't found anything on
> the subject. If you wanted to limit outbound traffic for a certain port to
> certain group of servers is that possible?
>
> For example, can I create a group:
>
> MAILSERVERS = 192.168.0.25, 192.168.0.26, 192.168.0.27
>
> and use that in a ruleset:
> -A INSIDE_ACCESS_OUT -s $MAILSERVERS -p tcp -m tcp --dport 25 --tcp-flags
> SYN,RST,ACK SYN -j ACCEPT
>
> and then drop the rest:
> -A INSIDE_ACCESS_OUT -p tcp -m tcp --dport 25 -j DROP
>
>
>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: Groups in iptables
2003-11-29 19:06 ` Leonardo Rodrigues Magalhães
@ 2003-11-29 22:24 ` Chris Brenton
0 siblings, 0 replies; 4+ messages in thread
From: Chris Brenton @ 2003-11-29 22:24 UTC (permalink / raw)
To: Leonardo Rodrigues Magalhães; +Cc: paul, Net Filter (E-mail)
On Sat, 2003-11-29 at 14:06, Leonardo Rodrigues Magalhães wrote:
>
> In your case, 192.168.0.25, 192.168.0.26 and 192.168.0.27 cannot be
> written as network/mask. So you CANNOT write one SINGLE rule to do what you
> want. You'll probably need to write a single rule for each address.
You could use 192.168.1.24/30, but that would include the address
192.168.1.24 as well. Not sure what's more important in this case, fewer
rules or limiting the access from 192.168.1.24.
C
^ permalink raw reply [flat|nested] 4+ messages in thread
* Groups in iptables
@ 2003-11-29 17:18 Paul Fontenot
0 siblings, 0 replies; 4+ messages in thread
From: Paul Fontenot @ 2003-11-29 17:18 UTC (permalink / raw)
To: netfilter
I would imagine the answer to this is yes, but I haven't found anything on
the subject. If you wanted to limit outbound traffic for a certain port to
certain group of servers is that possible?
For example, can I create a group:
MAILSERVERS = 192.168.0.25, 192.168.0.26, 192.168.0.27
and use that in a ruleset:
-A INSIDE_ACCESS_OUT -s $MAILSERVERS -p tcp -m tcp --dport 25 --tcp-flags
SYN,RST,ACK SYN -j ACCEPT
and then drop the rest:
-A INSIDE_ACCESS_OUT -p tcp -m tcp --dport 25 -j DROP
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2003-11-29 22:24 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-11-29 17:28 Groups in iptables Paul Fontenot
2003-11-29 19:06 ` Leonardo Rodrigues Magalhães
2003-11-29 22:24 ` Chris Brenton
-- strict thread matches above, loose matches on Subject: below --
2003-11-29 17:18 Paul Fontenot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox