I've noticed my server is being used to relay UDP traffic as part of a DDOS.
Various source IPs send UDP datagrams with TARGET_IP set as the destination. My server's IP is not TARGET_IP so I'm just forwarding the attack.
So far, I'm DROPing all UDP traffic to the TARGET_IP thanks to iptables but I wonder if this is a normal behavior, i.e. that someone can send UDP traffic to TARGET_IP through my server, using it as a proxy.
Is there any way to prevent that at the kernel level (before it goes through iptables)?
EDIT: I can't disable IP forwarding.
sysctl net.ipv4.conf.all.accept_source_route– Mike Pennington Sep 30 '12 at 11:28net.ipv4.conf.all.accept_source_route = 0– Dee50 Sep 30 '12 at 11:57