I have a port forward NAT rule to forward outside traffic to my camera.
I have an app on my phone that points to myexternalip:port and that works fine from the internet.
When i use the app to view my camera when i'm connected with my phone on the wireless lan
it doesnt work.
Can I make this work somehow by changing some settings on the router?
Below is my NAT config:
Code: Select all
/ip firewall nat
add action=masquerade chain=srcnat comment="Lets masquerade all local IP's so they can go on the internet" out-interface=ether1-wan src-address=\
192.168.2.0/24
add action=dst-nat chain=dstnat comment="Forward Incoming traffic on port 50002 to my Ip camera on 192.168.2.103:88" dst-port=50002 in-interface=\
ether1-wan log=yes protocol=tcp to-addresses=192.168.2.103 to-ports=88
add action=dst-nat chain=dstnat comment="Forward Incoming traffic on port 50443 to my Ip camera on 192.168.2.103:443 https" dst-port=50443 in-interface=\
ether1-wan log=yes protocol=tcp to-addresses=192.168.2.103 to-ports=443