You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been able to discover and connect to the ONVIF cameras in my local network.
how can I access the camera which is placed in the remote location/another network/ global network/ public ONVIF camera
The text was updated successfully, but these errors were encountered:
Accessing the ONVIF service is 100% isn't different from accessing any other public TCP/IP-protocol service. Hence, if the IP address of the service is already public, you just use it to access the camera feed. You just create the config.js file like this:
If the camera is in private network without public IP, you have these options:
you need to either buy a public/white/global IP (or server) inside of your provider network and make a local redirection of port 5000 from your public IP/server to internal camera's IP; OR
if your IP is global but it changes with each re-connect to provider -> you can use so-called "nodns" services like https://freedns.afraid.org or payed onces like DynDNS etc.
if first two options aren't possible; you need to set-up something like a tunnel to some globally accessible IP, to which camera will be connected all the time (different options in here: proxies/VPNs/hamachi/you-name-it) and then access the camera publicly with this service IP. Still you need to make redirects.
So, as the ONVIF protocol works over IPv4 or IPv6 (I'm not sure about the latter); you need a publicly reachable IPv4/IPv6; there are no other options without modifying the protocol as I see it. Other way, you will need to make your own camera with your own protocol.
Last but not least; along with port redirects; if your camera is behind a firewall; you will also have to open the port 5000.
Hi,
I have been able to discover and connect to the ONVIF cameras in my local network.
how can I access the camera which is placed in the remote location/another network/ global network/ public ONVIF camera
The text was updated successfully, but these errors were encountered: