I would like iptables to disallow the sending of a "port closed" (RST ACK) in the OUTPUT chain.

I am not sure if this is correct:

--append OUTPUT --protocol tcp --tcp-flags RST,ACK RST,ACK --jump REJECT --reject-with icmp-host-prohibited
link|improve this question
feedback

2 Answers

up vote 0 down vote accepted

That looks correct. It would be more normal just to block the SYN packets from reaching the service in the first place though, rather than blocking the response like that.

link|improve this answer
Reason: If the daemon is listening, then I'm good. But if the daemon is unavailable, I do not want outgoing "port closed" packets. – Jacob Rickens Jun 21 '11 at 9:55
feedback

Not sure what effect your rule (if any) actually would have; do a DROP instead of REJECT.

See iptables: REJECT vs DROP.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.