I want to access ip cameras behind LTE modem which can’t have a static IP. So I made a VPDN client connection from it to my home router which has a static IP in hope I could port forward from my home to this LTE router.
Source IP and Destination IP can ping each other, but the forwarding process ends up with this error at my home router:
dstnat: in:WAN out:(unknown 0), src-mac , proto TCP (SYN), 198.199.98.246:54060->:9998, len 60
LTE network is 192.168.10.10
HOME network is 192.168.20.10
I have not connected any ip cameras at 192.168.10.10 yet, but anyway, can I reach LTE service port like 8080 from the Home WAN?
This is most likely correct, or, more precisely, the destination host (the camera) knows well that it has to send the response to the LTE router, but the LTE router sends it using the direct route via the LTE’s gateway, which confuses the client because the response comes from a different public address than the one to which it has sent the request. So what you need is to use “policy routing”, which takes other information than just the destination address into account when choosing a route. That other information may be the source address of the packet (whatever the camera sends will be routed via the VPN tunnel rather than directly via WAN), or a connection mark (responses to whatever came in via the tunnel will be sent via the tunnel). See this for the detailed description of the latter.
The above doesn’t depend on whether you use Wireguard or some other VPN type to create the tunnel.
do I have to mark routing for incoming traffic to ip camera and then point it to vpn tunnel, or mark/intercept outgoing traffic of the camera and then point it to right direction?
strange is that I can ping the camera but can’t port forward to it
I have configured wireguard, both endpoints can ping each other
I have added routing to the router which has a static WAN ip address to point to camera and it’s perfectly pinging it, but I the forwarding does not work
LTE - 192.168.50.1
WAN - 192.168.50.2
IP Camera on LTE side - 192.168.1.101
Routing is set at WAN to access 192.168.1.101 through 192.168.50.1
why port forwarding does not work if I can ping the camera from another router?
You only have to use exceptional routing for the outgoing traffic of the camera. You can use routing rules for that (using routing table main for the three private destination ranges and the other table for the rest), or you can use mangle rules for the same purpose, or you can use the connection-marks to only route cameras’ responses to requests that came through the VPN using the other table.
Added static route in WAN router to use VPN gateway to access ip camera, and then in LTE router I was able to choose only traffic designated for this camera, sending back traffic to right source, using firewall mangle, adding connection and route marks!