Hi all,
My aim is to forward traffic from one public ip to other public ip. In one of my linux server i did this with the help of iptables that working well.
IP Tables Rules:
echo 1 > /proc/sys/net/ipv4/ip_forward
iptables -t nat -A PREROUTING -p tcp -dport 25 -j DNAT --to-destination X.X.X.X:25
iptables -t nat -A POSTROUTING -j MASQUERADE
This is working well. This is works in one of my global linux server.
Now i need to do the same setting/process using Mikrotik Router.
Kindly anyone help me on this.