if this command works for ipchains to block a range from a specific port, then log any attempted connections to that port from that range.. (port # and ip hidden for security and privacy
ipchains -A input -i eth0 -p tcp --source ***.***.***.**/9 --destination-port ## --syn -j DENY -l
I *think* I have the the DENY versus DROP part down as well as everything left of -j..
Problem I have is, if I change everything to as I understand it. I'm having a problem getting logging of the connect attempt to work... ie: -l does not work and any other variation of same that I've tried from man iptables has me stumped..
Anyone care to translate the above rule into iptables for me? I can then translate all my other rules using that example..
TIA
Shortzz