Hi guys, I’m catching ACK traffic just fine but I have 0 packets catched so far for the fin, syn, rst traffic. Below is my rules, am I doing it wrong? How to make it work?
add action=mark-packet chain=prerouting in-interface=ether1 new-packet-mark=ACK_D passthrough=no protocol=tcp tcp-flags=ack packet-size=0-123 comment="ACK"
add action=mark-packet chain=postrouting new-packet-mark=ACK_U out-interface=ether1 passthrough=no protocol=tcp tcp-flags=ack packet-size=0-123
add action=mark-packet chain=prerouting in-interface=ether1 new-packet-mark=ACK_D passthrough=no protocol=tcp tcp-flags=fin,syn,rst
add action=mark-packet chain=postrouting new-packet-mark=ACK_U out-interface=ether1 passthrough=no protocol=tcp tcp-flags=fin,syn,rst
Thanks.