* allowing certain IP addresses.
@ 2003-05-17 6:26 Drew Weaver
2003-05-17 7:17 ` Andreas Jellinghaus
2003-05-17 7:27 ` Cedric Blancher
0 siblings, 2 replies; 3+ messages in thread
From: Drew Weaver @ 2003-05-17 6:26 UTC (permalink / raw)
To: netfilter
I would like to disclude a /25 from accessing a server except for 1 ip
address on that /25 this is what I have in my rules.
/sbin/iptables -A INPUT -i eth0 -s 10.1.0.0/25 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 10.1.0.52/32 -j ACCEPT
the blocking works, the 10.1.0.0/25 network cannot reach this server,
however the 10.1.0.52/32 cant either.
I have one other question, this skeleton script I downloaded has these:
/sbin/iptables -A INPUT -i eth0 -s 5.0.0.0/8 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 10.0.0.0/8 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 23.0.0.0/8 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 27.0.0.0/8 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 31.0.0.0/8 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 68.0.0.0/6 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 72.0.0.0/5 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 80.0.0.0/4 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 96.0.0.0/3 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 127.0.0.0/8 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 128.0.0.0/16 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 128.66.0.0/16 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 169.254.0.0/16 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 172.16.0.0/12 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 191.255.0.0/16 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 192.0.0.0/16 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 192.168.0.0/16 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 197.0.0.0/8 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 201.0.0.0/8 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 204.152.64.0/23 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 224.0.0.0/3 -j DUMP
/sbin/iptables -A INPUT -i eth0 -s 240.0.0.0/8 -j DUMP
listed as unroutable, or private ip addresses but I know some of these are
actually being used on the net, NOW months after the skeleton was written,
anyone know or know how to find out which ones I should remove?
Thanks for any advice.
-Drew
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: allowing certain IP addresses.
2003-05-17 6:26 allowing certain IP addresses Drew Weaver
@ 2003-05-17 7:17 ` Andreas Jellinghaus
2003-05-17 7:27 ` Cedric Blancher
1 sibling, 0 replies; 3+ messages in thread
From: Andreas Jellinghaus @ 2003-05-17 7:17 UTC (permalink / raw)
To: Drew Weaver; +Cc: netfilter
On Sat, 2003-05-17 at 08:26, Drew Weaver wrote:
> I would like to disclude a /25 from accessing a server except for 1 ip
> address on that /25 this is what I have in my rules.
>
> /sbin/iptables -A INPUT -i eth0 -s 10.1.0.0/25 -j DUMP
> /sbin/iptables -A INPUT -i eth0 -s 10.1.0.52/32 -j ACCEPT
>
> the blocking works, the 10.1.0.0/25 network cannot reach this server,
> however the 10.1.0.52/32 cant either.
use
/sbin/iptables -A INPUT -i eth0 -s 10.1.0.52/32 -j ACCEPT
/sbin/iptables -A INPUT -i eth0 -s 10.1.0.0/25 -j DUMP
instead.
filter lists:
private ip addresses: rfc 1918
> /sbin/iptables -A INPUT -i eth0 -s 10.0.0.0/8 -j DUMP
> /sbin/iptables -A INPUT -i eth0 -s 172.16.0.0/12 -j DUMP
> /sbin/iptables -A INPUT -i eth0 -s 192.168.0.0/16 -j DUMP
loopback
> /sbin/iptables -A INPUT -i eth0 -s 127.0.0.0/8 -j DUMP
multicast, reserved
> /sbin/iptables -A INPUT -i eth0 -s 224.0.0.0/3 -j DUMP
Andreas
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: allowing certain IP addresses.
2003-05-17 6:26 allowing certain IP addresses Drew Weaver
2003-05-17 7:17 ` Andreas Jellinghaus
@ 2003-05-17 7:27 ` Cedric Blancher
1 sibling, 0 replies; 3+ messages in thread
From: Cedric Blancher @ 2003-05-17 7:27 UTC (permalink / raw)
To: Drew Weaver; +Cc: netfilter
Le sam 17/05/2003 à 08:26, Drew Weaver a écrit :
> I would like to disclude a /25 from accessing a server except for 1 ip
> address on that /25 this is what I have in my rules.
> /sbin/iptables -A INPUT -i eth0 -s 10.1.0.0/25 -j DUMP
> /sbin/iptables -A INPUT -i eth0 -s 10.1.0.52/32 -j ACCEPT
> the blocking works, the 10.1.0.0/25 network cannot reach this server,
> however the 10.1.0.52/32 cant either.
You just have to place second rule before the first one :
iptables -A INPUT -i eth0 -s 10.1.0.52/32 -j ACCEPT
iptables -A INPUT -i eth0 -s 10.1.0.0/25 -j DUMP
Than, 10.1.0.52 is accepted and the reste of 10.1.0.0/25 is denied. In a
general way, when you have group exclusion issues, you have to place
most specific rules first.
> I have one other question, this skeleton script I downloaded has these:
[...]
> listed as unroutable, or private ip addresses but I know some of these are
> actually being used on the net, NOW months after the skeleton was written,
> anyone know or know how to find out which ones I should remove?
Blockin IANA reserved blocks can be a good idea, but it requires
frequent checking. You'll have to whois all theses blocks and remove
each that does not appears as RESERVED, such as 201.0.0.0.
--
Cédric Blancher <blancher@cartel-securite.fr>
IT systems and networks security - Cartel Sécurité
Phone : +33 (0)1 44 06 97 87 - Fax: +33 (0)1 44 06 97 99
PGP KeyID:157E98EE FingerPrint:FA62226DA9E72FA8AECAA240008B480E157E98EE
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2003-05-17 7:27 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-05-17 6:26 allowing certain IP addresses Drew Weaver
2003-05-17 7:17 ` Andreas Jellinghaus
2003-05-17 7:27 ` Cedric Blancher
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.