Why Bruteforce for RDP not working when I have port forwarding from standard 3389 to 3391:
add action=add-src-to-address-list address-list=RDP_Stage1 address-list-timeout=1d chain=forward connection-state=new dst-port=3391 protocol=tcp
add action=dst-nat chain=dstnat dst-port=3391 protocol=tcp to-addresses=192.168.16.10 to-ports=3389
but still working when I have:
add action=add-src-to-address-list address-list=RDP_Stage1 address-list-timeout=1d chain=forward connection-state=new dst-port=3389 protocol=tcp
add action=dst-nat chain=dstnat dst-port=3389 protocol=tcp to-addresses=192.168.16.10 to-ports=3389
Forward chain is after dstnat which changes destination port => you need to be looking for new destination port (= 3389), even if the original was different.