How do I setup an iptable setting to drop all IP packets that don't have my IP address on it? (do I even need to do this?)
This is the closest I can think of, but I think it doesn't quite work because I somehow need to be able to specify NOT destination AND source.
* filter
-A INPUT -i eth0 -d ! 1.2.3.4 -j DROP
COMMIT