Forward port and forward ip

Mikrotik CCR1036-12 Forward Port

interface ethernet1
Wan1 fix ip = 10.10.10.1 ,10.10.10.2 ,10.10.10.3
lan ethernet10 = 192.168.0.1/24


ip firewall nat add chain=dstnat protocol=tcp dst-port=3389 action=dst-nat to-addresses=192.168.0.10 to-ports=3389 dst-address-type=local

forward port default fix ip = 10.10.10.1 OK but i change fix ip

ip firewall nat add chain=dstnat protocol=tcp dst-add = 10.10.10.1 dst-port=3389 action=dst-nat to-addresses=192.168.0.10 to-ports=3389 dst-address-type=local

ip firewall nat add chain=dstnat protocol=tcp dst-add 10.10.10.2 dst-port=3389 action=dst-nat to-addresses=192.168.0.20 to-ports=3389 dst-address-type=local

forward port not working

i change firewall nat ?

Your matching more then you need to with (dst-address-type=local) and not matching the original destination address…

Try:

/ip firewall nat
add chain=dstnat protocol=tcp dst-port=3389 dst-address=10.10.10.1 action=dst-nat to-addresses=192.168.0.10 comment=“Forward RDP from 10.10.10.1 to 192.168.0.10”
add chain=dstnat protocol=tcp dst-port=3389 dst-address=10.10.10.2 action=dst-nat to-addresses=192.168.0.10 comment=“Forward RDP from 10.10.10.2 to 192.168.0.20”

Note: I am assuming that the 10.x.x.x addresses are for example only. If these are actually your WAN addresses then the device that is doing NAT to get that address to you will also have to be port forwarding the RDP connections accordingly.