Hello!
I’m trying to do simple port forwarding to port 80 (local webserver) on local NAT network. Something is wrong though - i see packets increase for this rule on Winbox when i try to access port 80 on outside interface (IP 5.5.5.5), but still httpd is unreachable. I tried to change some settings on SMTP port forward also, but had no luck either. I can access local web server from local network fine.
Outside interface has ISP assigned IP : 5.5.5.5
Inside interface has 10.10.10.0/24 network attached to it
Webserver is located on IP: 10.10.10.11
/ip address print detail
0 address=10.10.10.1/24 network=10.10.10.0 interface=Inside actual-interface=Inside
1 D address=5.5.5.5/19 network=5.5.5.0 interface=Outside actual-interface=Outside
/ip firewall nat
add action=masquerade chain=srcnat disabled=no out-interface=Outside
add action=dst-nat chain=dstnat comment="http port forward to freebsd box" disabled=no dst-address=5.5.5.5 dst-port=80 in-interface=Outside protocol=tcp to-addresses=\
10.10.10.11 to-ports=80
add action=dst-nat chain=dstnat comment="SMTP forward to Postfix server" disabled=no dst-port=25 in-interface=Outside protocol=tcp to-addresses=10.10.10.11 to-ports=25
/ip route print detail
0 ADS dst-address=0.0.0.0/0 gateway=5.5.5.1 gateway-status=5.5.5.5.1 reachable via Outside distance=0 scope=30 target-scope=10 vrf-interface=Outside
1 ADC dst-address=10.10.10.0/24 pref-src=10.10.10.1 gateway=Inside gateway-status=Inside reachable distance=0 scope=10
2 ADC dst-address=5.5.5.0/19 pref-src=5.5.5.5 gateway=Outside gateway-status=Outside reachable distance=0 scope=10
I have disabled all firewall filter rules.
This is on RouterOS 5.15
Any ideas what the issue could be? Thanks.