routing specific port as diff port through specific interface

hellou

i m trying to route the specific port 6672 as rabbit port 5672 which is working
edit: as outgoing port , so from PC it will gonna enter mikrotik there it will be changed from 6672 to 5672
/ip firewall nat add chain=dstnat protocol=tcp dst-port=6672 action=dst-nat to-ports=5672

now i want this specific port (6672) to be going out through different interface.
edit: primary interface is wlan2 but i want this one going out of wlan1 (yes wlan , wifi interfaces)
/routing table add name=6672 fib
/ip firewall mangle add chain=prerouting protocol=tcp dst-port=6672 action=mark-routing new-routing-mark=6672 passthrough=yes
/routing rule add routing-mark=6672 interface=wlan1 action=lookup table=6672

so it should work like:
marking routes for the port 6672 , than looking through which interface i m going than changing it to 5672

Is that all ? or do i need to add something else ?