Hello,
You might want to check this out for you to add in iptables anti-spoofing rule:
http://www.fwbuilder.org/4.0/docs/us...ing-rules.html
Just changed the IP accordingly to your LAN.
This one I'm using on my FW:
### anti-spoofing rules
$IPTABLES -A FORWARD -i eth1 -s ! $INT_NET -j LOG --log-prefix "SPOOFED PKT "
$IPTABLES -A FORWARD -i eth1 -s ! $INT_NET -j DROP
Thanks!