iptables -t nat -A PREROUTING -p tcp --sport 6666 --dport 2222 -j
REDIRECT --to-ports 22
I would expect this to redirect only the packets with the source port
being 6666 but instead any packet with 2222 as destination port is
redirected. Does it ignore --sport?