How to Redirect Specify Connection to a Specify IP

Hello Friends

My target WebServer IP is Example (56.60.40.40)
my Clients Connect Via Port 80 to This Server IP .

i Want Redirect That Clients to IP Address 56.60.40.42 .

how can Redirect The Connections To This IP with Firewall ?

Thanks :wink:

/ip firew nat add action=dst-nat chain=dstnat comment="WEB (HTTP)" disabled=no \
    dst-address=56.60.40.40 dst-port=80 protocol=tcp to-addresses=\
    56.60.40.42 to-ports=80

i’ts simple..

/ip firewall nat
add action=dst-nat chain=dstnat comment=web disabled=no dst-address=56.60.40.40
dst-port=80 protocol=tcp to-addresses=56.60.40.42 to-ports=80

Bye