Hi,
I have the following situation:
I need to port forward VPN from one Mikrotik to another.
I have the following set up on the mikrotik with the static IP that is connected to the internet:
/ip firewall nat
chain=dstnat action=accept protocol=gre
chain=dstnat action=dst-nat to-addresses=10.5.50.58 to-ports=1723 protocol=tcp dst-port=1723
this works perfectly, but all VPN is forwarded and its not what i want.
Then I tried this:
/ip firewall nat
chain=dstnat action=accept protocol=gre
chain=dstnat action=dst-nat to-addresses=10.5.50.58 to-ports=1723 protocol=tcp dst-port=50058
But it does not work
Can anyone give me some advice?