I have tried several different tutorials but I am having a hard time getting port 80 and 5445 forwarded to my camera dvr. I have a dynamic WAN ip and the dvr has a dhcp reservation of 192.168.0.142 however nothing I do seems to actually open the ports.
Maybe this will help:
I have an ip camera with a port forwarded. These are the rules needed to make it work:
firewall rule
32 ;;; P1304 CCTV
chain=forward action=accept protocol=tcp dst-address=192.168.32.5
in-interface=ether9 dst-port=80
firewall rule: dst-port is the internal port of cam. in interface is your isp interface. dst-address is the ipcam.
nat rule
6 ;;; P1304 CCTV
chain=dstnat action=dst-nat to-addresses=192.168.32.5 to-ports=80
protocol=tcp dst-address=77.101.114.162 dst-port=80
nat rule: to-port is the internal port of ipcam and dst-port is the external port. to-address is the ipcam, dst-address is the external IP of router.
Hope this helps.
As per post: viewtopic.php?f=2&t=82313#p412501