All of lore.kernel.org
 help / color / mirror / Atom feed
* Unicast packets to multiple destinations  -only-
@ 2004-11-18  9:48 Luigi Corsello
  2004-11-18 13:32 ` Jason Opperisano
  2004-11-18 16:22 ` Samuel Jean
  0 siblings, 2 replies; 3+ messages in thread
From: Luigi Corsello @ 2004-11-18  9:48 UTC (permalink / raw)
  To: Netfilter ML

Hi all,

I got 3 IPs in one interface (ip addr add, not aliasing), and wanted to 
only allow unicast packets to any of them (and/or their subnet in one 
case, to allow broadcasts for the local net).
Aim: no broadcasts, no multicast, spoofing prevention?.

You can't have multiple -d in rules. My quick solution was 3 tables
(this is a sample):

iptables -N ta
iptables -N tb
iptables -N tc

iptables -A tc -d ! $ip3 -j DROP
iptables -A tb -d ! $ip2 -j tc
iptables -A ta -d ! $ip1 -j tb

iptables -A INPUT -j ta

It works, much junk stays out.  All services work.
 From the list point of view, is this insane(a) stupid(b) or clever(c)? 
and why?

Cheers,
/lc


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

end of thread, other threads:[~2004-11-18 16:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-11-18  9:48 Unicast packets to multiple destinations -only- Luigi Corsello
2004-11-18 13:32 ` Jason Opperisano
2004-11-18 16:22 ` Samuel Jean

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.