Hi,
In his latest post he said:
How do I open the port 8150 in the router? Sorry for the many questions. Unfortunately, it still doesn't work. I can see packets.
I am a beginner into mikrotik routers myself so that please forgive me but I still think that proper chain commands here would be ( it is just a basic port forwarding, after all):
1. accepting conections from WAN (
in-interface=ether1-gateway ), on proto tcp (
protocol=tcp), for destination port 8150 (
dst-port=8150), in the first place
/ip firewall filter
add action=accept chain=input comment="Accept connections from outside to inside port 8150" dst-port=8150 in-interface=ether1-gateway log=yes log-prefix=mycam protocol=tcp
2. forwarding conections on WAN (
in-interface=ether1-gateway ), on proto tcp (
protocol=tcp), for destination port 8150 (
dst-port=8150) to LAN destination adress 192.168.88.241 (
to-addresses=192.168.88.241 ), for destination port 80 (
to-ports=80)
/ip firewall nat
add action=dst-nat chain=dstnat comment="Access my camera on web" dst-port=8150 in-interface=ether1-gateway protocol=tcp to-addresses=192.168.88.241 to-ports=80
kind regards