I created iptablesiptables rule:
iptables -I INPUT -p tcp --tcp-flags SYN,RST,ACK,FIN SYN --dport 10000 -j REJECT --reject-with tcp-reset
But actually, what itthis does is a rejecting all packets with RST,ACKRST and ACK flags.
It is possible to reject only with RSTRST flag set ?
I know that in a normal envenvironment this have nodoes not give any sense, but I just have a lab and I need of doingto do exactly something like thatas described.