Answer the question
In order to leave comments, you need to log in
How to forward port to vlan?
Good day to all
The bottom line is, there is a server (internal grid), made vlan (pfsense, Winbox), how to forward the port so that you can connect to the server via phone and watch cameras through the Xeoma program?
More details if possible)
Answer the question
In order to leave comments, you need to log in
Well, you do the forwarding as usual. From the external ip / interface to the internal ip ....
Further, how to get to the internal ip via LAN is a separate issue. The connection diagram is not clear.
If the router where the request comes in, pings the internal IP, where it needs to be forwarded, everything will go by itself ...
Alternatively, ssh tunnel to a public server.
On the local server, you forward the port to the external server ssh -N -R 5000:127.0.0.1:80 [email protected]
On the external server, you prescribe a proxy for port 5000.
server {
listen 80;
listen [::]:80;
server_name local.servername;
location / {
proxy_pass http://localhost:5000;
access_log off;
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question