Steven M Campbell wrote:
James Strickland wrote:Hi. Is there a way so that when a packet reaches the filter table input chain with the Syn flag set, that i send out a response with RST?ie: connections to my wan interface with Syn set (trying to establish) onport 80 get a RST response to the sender?Use -p tcp --syn -j REJECT --with tcp-reset
heh, both of us got it wrong, sven missed the syn bit, I missed the port 80 -p tcp --syn --dport 80 -j REJECT --with tcp-reset