All of lore.kernel.org
 help / color / mirror / Atom feed
* Blocking in NAT
@ 2011-05-07 13:20 James Lay
  2011-05-07 14:54 ` Jan Engelhardt
  0 siblings, 1 reply; 5+ messages in thread
From: James Lay @ 2011-05-07 13:20 UTC (permalink / raw)
  To: Netfilter

Hey All,

Soäonce upon a time one could block using NAT, which was nice since I run
a spamfilter that grabs everything coming in to port 25 with:

iptables -t nat -A PREROUTING -m physdev --physdev-in eth0 ! -s 10.0.0.0/8
-p tcp --dport 25 -j DNAT --to-destination 10.0.0.1:25

For some reason, filtering in the nat table was deemed bad, so now I can
no longer drop things there.  So my question is, how do I block say...a
spammer from sending to port 25 now?  I can't use:

iptables -t nat -i PREROUTING -m physdev --physdev-in eth0 -s naughty.ip
-j DROP
or
iptables -t nat -i PREROUTING -m physdev --physdev-in eth0 -s naughty.ip
-j REJECT

Am I going to have to do something silly like send to an ip that's not on
my network:

iptables -t nat -i PREROUTING -m physdev --physdev-in eth0 -s naughty.ip
-j DNAT --to-destiation 172.16.1.1

I have to admit...loosing the DROP functionality in nat was a real
bummer....I had a great script that would block ANYTHING from an IP
address with the INPUT, FORWARD, and PREROUTING tables..not so much now
though ;)  Thanks for any input you can provide.

James 



^ permalink raw reply	[flat|nested] 5+ messages in thread
* Blocking in NAT
@ 2011-05-08 16:09 James Lay
  0 siblings, 0 replies; 5+ messages in thread
From: James Lay @ 2011-05-08 16:09 UTC (permalink / raw)
  To: Netfilter

Bleh...nuked the email before I could respond....thanks Jan...the input
chain did the trick.

James



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

end of thread, other threads:[~2011-05-09  9:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-07 13:20 Blocking in NAT James Lay
2011-05-07 14:54 ` Jan Engelhardt
2011-05-09  8:54   ` Nikolay Kichukov
2011-05-09  9:39     ` Jan Engelhardt
  -- strict thread matches above, loose matches on Subject: below --
2011-05-08 16:09 James Lay

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.